I have a source dialog .. @ x,y
I want to control the order of the controls of this dialog
it is possible make it ?
#include "Fivewin.ch"
FUNCTION MAIN( )
LOCAL oDlg, oGet1, oGet2, oBtn
LOCAL cVar1 := SPACE( 30 )
LOCAL cVar2 := SPACE( 30 )
DEFINE DIALOG oDlg
@ 1, 1 GET oGet1 VAR cVar1
oGet1:bGotFocus = { || oGet1:oJump := oBtn }
@ 2, 1 GET oGet2 VAR cVar2
oGet2:bGotFocus = { || oGet2:oJump := oGet1 }
@ 3, 1 BUTTON oBtn PROMPT "&Close";
ACTION oDlg:End()
oBtn:bGotFocus = { || oBtn:oJump := oGet2 }
ACTIVATE DIALOG oDlg;
CENTER
RETURN NIL
Return to FiveWin for Harbour/xHarbour
Users browsing this forum: Marc Venken, Silvio.Falconi and 99 guests