Hi all!
Can anyone tell me why LastKey() function in VALID clause work properly when my GET is placed in WINDOW, and doesn't work when GET is in DIALOG?
Goran
Hi all!
Can anyone tell me why LastKey() function in VALID clause work properly when my GET is placed in WINDOW, and doesn't work when GET is in DIALOG?
Goran
Goran:
Don't use Lastkey(), use GetAsyncKey(), for example:
IF GetAsyncKey(VK_UP)
RETURN .T.
ENDIF
Regards
Thanks!