|
From: Alex <al...@be...> - 2013-03-16 07:17:12
|
I can't confirm this. The following simple snippet works normaly:
#include "hwgui.ch"
Function Main
Local oDlg, oObjGet, cVarGet := "1"
INIT DIALOG oDlg SIZE 120, 120 STYLE WS_SYSMENU+DS_CENTER
@ 10,10 get oObjGet var cVarGet Size 55,20 // VALID {||FuncXYZ(...)}
@ 10,50 BUTTON "Ok" ON CLICK {||close()}
oDlg:Activate()
Return Nil
Function close
hwg_EndDialog()
return .t.
________________________________________________
|