i want to get Information when logoff from App and use VALID in ACTIVATE
- Code: Select all Expand view
- LOCAL oFont, aRect, lRet := .T.
ACTIVATE WINDOW oMain ON INIT ... ;
VALID ( lRet := DoEndProc(oMain,@aRect), lRet ) CENTER
cRow := VAR2CHAR(aRect[1])
cCol := VAR2CHAR(aRect[2])
cHeight := VAR2CHAR(aRect[3])
cWidth := VAR2CHAR(aRect[4])
// save to INI
LoadConfig( @cRow, @cCol, @cWidth, @cHeight, ... )
- Code: Select all Expand view
- STATIC FUNCTION DoEndProc(oMain,aRect)
aRect := oMain:GetRect()
FWLOG aRect
RETURN .T.
when not use @ Reference i got empty Array while FWLOG show Data ... hm ...
is this "normal" under Fivewin that i must pass Array per Reference