Search found 4470 matches

by Otto
Mon Dec 26, 2005 9:34 pm
Forum: FiveWin for CA-Clipper
Topic: Focus oWnd
Replies: 23
Views: 8366

Hello Antonio, thank you for your help. Now I can do what I want. Only a little problem still exists: I don't know how to use: WS_TABSTOP style so I tried to do it with the VALID case. This way I can't return from what I call panelBody to the panelHeader with the keyboard. Regards, Otto http://www.a...
by Otto
Mon Dec 26, 2005 3:01 pm
Forum: FiveWin for Harbour/xHarbour
Topic: FWH on Vista Beta 2
Replies: 7
Views: 2109

Which PC hardware are you using for VISTA?
Regards
Otto
by Otto
Mon Dec 26, 2005 8:44 am
Forum: FiveWin for Harbour/xHarbour
Topic: FWH on Vista Beta 2
Replies: 7
Views: 2109

Hello Antonio,

Reading this I realize what you did for the Clipper community with the source-compatible Harbour.
Otherwise I would have been out of business.

Thanks again
Otto
by Otto
Mon Dec 26, 2005 7:46 am
Forum: FiveWin for CA-Clipper
Topic: Focus oWnd
Replies: 23
Views: 8366

Hello Antonio, sorry for the wrong link. I hope thisone works: http://www.atzwanger.com/invoice/invoiceForAntonio.zip At the moment it is only a programm not a class - I don't know how to make one - and I tried with: oPanelBody:bkeyChar := {|nKey|Msginfo(str(nKey))} But I get no value for the arrowk...
by Otto
Sun Dec 25, 2005 8:22 pm
Forum: FiveWin for Harbour/xHarbour
Topic: FWH on Vista Beta 2
Replies: 7
Views: 2109

What's about FW on Vista?
Regards
Otto
by Otto
Sun Dec 25, 2005 7:32 pm
Forum: FiveWin for CA-Clipper
Topic: Focus oWnd
Replies: 23
Views: 8366

Hello Antonio, TPanel works. Where I have problems is with the up,down,left,right-keys. Do I have to change twindow? I don't know how to use: WS_TABSTOP style so I tried to do it with the VALID case. Is this a bad solution? You find my code on http://www.atzwanger.com/invoice/invoiceFor Antonio.zip ...
by Otto
Sun Dec 25, 2005 7:05 am
Forum: FiveWin for CA-Clipper
Topic: Focus oWnd
Replies: 23
Views: 8366

Thanks Antonio,
is it possible to group all the code for browsing in a own control, so that I have on one hand the get-fields and on the other the browse.
Regards
Otto
by Otto
Sat Dec 24, 2005 2:00 pm
Forum: FiveWin for CA-Clipper
Topic: Focus oWnd
Replies: 23
Views: 8366

Enrico, does the exe work on your side. If yes you can scroll down with the enter-key or with a mouse-click on the scrollbar. but if you have a getfield -for example to get the address - on the window too, focus is on the getfield and you can't navigate anymore with the keys. I had a look at the wbr...
by Otto
Sat Dec 24, 2005 9:47 am
Forum: FiveWin for Harbour/xHarbour
Topic: Merry Christmas
Replies: 13
Views: 3878

Merry Christmas from Tyrol/Austria Otto
by Otto
Fri Dec 23, 2005 10:44 pm
Forum: FiveWin for CA-Clipper
Topic: Focus oWnd
Replies: 23
Views: 8366

www.atzwanger.com/invoice/invoiceforemg.zip

Hallo Enrico,
I uploaded the file.
Regards
Otto
by Otto
Fri Dec 23, 2005 7:31 pm
Forum: FiveWin for CA-Clipper
Topic: Focus oWnd
Replies: 23
Views: 8366

Sorry Erico, oWnd:bkeyChar :={|nKey|iif( nKey == K_ENTER , msginfo("ENTER"), msginfo(str(nKey)) )} was only to show, that up/down/left/right don't return a value. Change to: oWnd:bkeyChar :={|nKey|iif( nKey == K_ENTER ,( oWnd:oVScroll():SetPos( nPos:=nPos+1),f_code()) ,)} Comment the oGetL...
by Otto
Fri Dec 23, 2005 5:58 pm
Forum: FiveWin for CA-Clipper
Topic: Focus oWnd
Replies: 23
Views: 8366

Antonio,

I put a small example on:

www.atzwanger.com/invoice/invoiceWithGet.zip

If you comment
// @ 1 , 1 GET oGet VAR cTest OF oWnd SIZE 75,17

keys work - up/down/left/right do not work.

With the getfield I only can use the mouse to navigate.
Regards
Otto
by Otto
Fri Dec 23, 2005 5:25 pm
Forum: FiveWin for CA-Clipper
Topic: Focus oWnd
Replies: 23
Views: 8366

Thanks Frank,
I tried but with no success. Cursor remains in the get-field.
Otto
by Otto
Fri Dec 23, 2005 4:48 pm
Forum: FiveWin for CA-Clipper
Topic: Focus oWnd
Replies: 23
Views: 8366

Enrico, thank you for your help. But I don’t need focus on the get-field. What I would like is to navigate the browser with the keys. At the moment I only can use the mouse. If you have time please see the screen capture. If I enter something into the address I can’t pass focus back to the window it...
by Otto
Fri Dec 23, 2005 3:27 pm
Forum: FiveWin for CA-Clipper
Topic: Focus oWnd
Replies: 23
Views: 8366

Focus oWnd

I have a window with oGets, oSays and other controls. I would like to control the input with: oWnd:bkeyChar :={|nKey|iif( nKey == K_LEFT, msginfo("TASTE") )} But after the first keystroke or if I insert some text in a get-field I am not able to bring back focus to oWnd. I tried oWnd:SetFoc...