Hi,
A POUP window opens in my program. If I click outside of this window, it will be hidden. I need to perform some actions while hiding this POPUP window. How can I help you do this ?
Hi,
A POUP window opens in my program. If I click outside of this window, it will be hidden. I need to perform some actions while hiding this POPUP window. How can I help you do this ?
oWindow:bLostFocus := { || ...... }
Does not work. This is NOWAIT window
This works via bNcActivate
very good!
Can you give an example in your window control? Thank you
DEFINE DIALOG oWin PIXEL STYLE nOR(WS_POPUP) BRUSH oBru TRANSPARENT
ACTIVATE DIALOG oWin ON INIT Win_Ini()
procedure Win_Ini
DEFINE DIALOG oDlg PIXEL STYLE nOR(WS_POPUP) OF oWin
ACTIVATE DIALOG oDlg NOWAIT
oDlg:bNcActivate = { | lOnOff | iif( lOnOff, , MyFunction())}
returnOk, but this not is a windows, is a dialog
Thanks