Hi,
Look at this
define window xWin
....
....
NOSYSMEMU;
MODAL;
xWin.Show
// do long processing here
// if you try to move the window and you succeeded
xWin.Hide // will not work
Is there a function to know whether a window is visible?
TIA
How to know if a window is visible?
Moderator: Rathinagiri
Re: How to know if a window is visible?
try:
Code: Select all
i := GetFormIndex ( cWindowName )
IsWindowVisible( _HMG_SYSDATA [ 67 ] [i] )
- jerryfinuliar
- Posts: 6
- Joined: Tue Jan 19, 2010 6:03 am
Re: How to know if a window is visible?
Thanks a lot Marek