Hi Alexander, in this examples, compile and use all keys to navigate in
GET´s
Page Up, PageDown, UP, Down, and mouse
#include "hwgui.ch"
function main
Private oGet1, oGet2, oGet3, oVar1:="", oVar2:=0, oVar3:=""
Private oTab, oDlg , oVar4:=0, oGet4, oGet5, oVar5:=0
INIT DIALOG oDlg AT 0, 0 SIZE 300, 250 ;
STYLE
WS_POPUP+WS_VISIBLE+WS_CAPTION+WS_SYSMENU+WS_MINIMIZEBOX+WS_MAXIMIZEBOX
@ 10, 10 TAB oTab ITEMS {} SIZE 280, 180 STYLE WS_TABSTOP
@ 5, 60 Get oGet1 VAR oVar1 VALID {||oGet2:SetFocus(),.T.} maxlength 5
of oTab SIZE 100, 24
@ 5, 90 Get oGet2 VAR oVar2 picture "@E 999,999,999.99" of oTab SIZE 200,
24
@ 5,120 Get oGet4 VAR oVar4 picture "999,999,999.99" of oTab SIZE 200, 24
@ 5,150 Get oGet5 VAR oVar5 picture "@E 999,999,999" PASSWORD of oTab SIZE
200, 24
END PAGE of oTab
BEGIN PAGE "Page 02" of oTab
@ 30, 60 Get oGet3 VAR oVar3 PICTURE "@R 999.999-9" valid
{||Hwg_Valida(OVAR3)} of oTab SIZE 100, 24
END PAGE of oTab
ACTIVATE DIALOG oDlg
Function Hwg_Valida(VAR)
mSGINFO(VAR)
return .T.
Regards
Sandro Freire
http://www.lumainformatica.com.br
----- Original Message -----
From: "Alexander S.Kresin" <al...@be...>
To: <hwg...@li...>
Sent: Tuesday, October 26, 2004 6:34 AM
Subject: [Hwgui-developers] Re: Problem in key tab
> On 25.10.2004 21:37, Sandro R. R. Freire <san...@ya...>
wrote:
>
> SRRF> Hi Alexander
> SRRF> its correction of the keyboard key tab, affected the keyboard keys
of arrows
> SRRF> and mouse. Focus in get.
>
> Sorry, I don't understand. What is the problem ?
>
> Regards,
> Alexander
> http://kresin.belgorod.su
>
>
>
>
> -------------------------------------------------------
> This SF.net email is sponsored by: IT Product Guide on ITManagersJournal
> Use IT products in your business? Tell us what you think of them. Give us
> Your Opinions, Get Free ThinkGeek Gift Certificates! Click to find out
more
> http://productguide.itmanagersjournal.com/guidepromo.tmpl
> _______________________________________________
> Hwgui-developers mailing list
> Hwg...@li...
> https://lists.sourceforge.net/lists/listinfo/hwgui-developers
|