Search found 48 matches

by obelix
Sat Apr 26, 2014 7:10 am
Forum: eXpress++ Support
Topic: Using navigation keys in dcbrowse without first clicking in
Replies: 8
Views: 22933

Re: Using navigation keys in dcbrowse without first clicking

thank you, Roger
for your quick an fitting advice. I combine it with your earlier advice:
DCHOTKEY xbeK_UP ACTION .....
and so I can offer to the user the complete navigation system used by keys or mouse.
by obelix
Fri Apr 25, 2014 9:30 am
Forum: eXpress++ Support
Topic: Using navigation keys in dcbrowse without first clicking in
Replies: 8
Views: 22933

Using navigation keys in dcbrowse without first clicking in

Hi everybody, Before navigating in the DCBROWSE-window with UP DOWN LEFT RIGHT PGDN PGUP- Key , I have to click into the window. How can I do this without first setting the focus to the browse-window. extract of my code @ 3,2 DCBROWSE oVBrowse; //PARENT oTabPage1 ; DATA cAlias SIZE wcol,wrow FONT fe...
by obelix
Tue Jan 14, 2014 2:27 pm
Forum: eXpress++ Support
Topic: merging a DCSAY from a codeblock in a gui-Window
Replies: 8
Views: 11976

Re: merging a DCSAY from a codeblock in a gui-Window

Thank you, Tom for the explanation. It really works good (after having found out
that the #pp-commands are case sensitive !)
by obelix
Mon Jan 13, 2014 2:51 pm
Forum: eXpress++ Support
Topic: merging a DCSAY from a codeblock in a gui-Window
Replies: 8
Views: 11976

Re: merging a DCSAY from a codeblock in a gui-Window

Thank you Tom, that's what I looked for, a little bit compicated but really helpful.
Rogers suggestion (codeblock) didn't work.
by obelix
Mon Jan 13, 2014 8:49 am
Forum: eXpress++ Support
Topic: merging a DCSAY from a codeblock in a gui-Window
Replies: 8
Views: 11976

Re: merging a DCSAY from a codeblock in a gui-Window

hi Roger, I want to use the same headline in different windows. For being able to change the look or the behavior of the dcsay-Statements easily it would be helpful to put it into a function, but when I display the window, the elements of the function are not shown. //insted of: @ 0,0 DCSTATIC TYPE ...
by obelix
Sun Jan 12, 2014 8:42 am
Forum: eXpress++ Support
Topic: merging a DCSAY from a codeblock in a gui-Window
Replies: 8
Views: 11976

merging a DCSAY from a codeblock in a gui-Window

Hi everybody, maybe my question will cause a LoL, but i'll try it nevertheless: #include "dcdialog.ch" proc main() local cvar1,cvar2 cvar1="text function" cvar2="text udf" @ 1,1 DCSAY "text 1" get cvar1 x={||test2()} DCREAD GUI return function test2 @ 2,1 DCSAY cvar2 return .t. Is there any way to s...
by obelix
Sun Jan 05, 2014 8:36 am
Forum: eXpress++ Support
Topic: xebK_F4 doesn't work correctly
Replies: 7
Views: 9678

Re: xebK_F4 doesn't work correctly

thank you for your suggestions. :D
the addition of «.and. mp1 # xbeK_Fx» is necessary for all Fx-key, but it works.
by obelix
Fri Dec 27, 2013 1:37 pm
Forum: eXpress++ Support
Topic: xebK_F4 doesn't work correctly
Replies: 7
Views: 9678

Re: xebK_F4 doesn't work correctly

ok, it works.
thank you Roger
by obelix
Fri Dec 27, 2013 10:55 am
Forum: eXpress++ Support
Topic: xebK_F4 doesn't work correctly
Replies: 7
Views: 9678

Re: xebK_F4 doesn't work correctly

hi Roger, in this DCBROWSE-Window, I want to be able to use the PUSHBUTTON CAPTION "F4 Projekt "... that's ok but also the DCHOTKEY CAPTION "F4 Projekt". That's ok as long as I don't use the line case nEvent = xbeP_Keyboard .and. Upper(Chr(mp1)) = "S" in function myhandler4 if I could adress the F4-...
by obelix
Fri Dec 27, 2013 6:48 am
Forum: eXpress++ Support
Topic: xebK_F4 doesn't work correctly
Replies: 7
Views: 9678

xebK_F4 doesn't work correctly

Hi everybody,
In DCBROWSE I use the DCHOTKEY x_beK_F4 and it works
if I use in the same DCBROWSE the statement
case nEvent = xbeP_Keyboard .and. Upper(Chr(mp1)) = "S" in HANDLER Myhandler,
pushing the F4-key executes the xbeP_keyboard statement.
The other DCHOTKEYS F1, F2 and so on work correctly.