Is it possible to stop the application from suspending when you use HideGadget(windowhandle:TGadget)?
Thanks,
Thanks,
CreateTimer(20) '20hz
SuperStrict Framework brl.win32maxgui Import brl.timer Import brl.eventqueue Global Wnd_Main:TGadget = CreateWindow("My Window", 40, 40, 320, 240, Desktop(), WINDOW_TITLEBAR) HideGadget Wnd_Main Global tm_timeout:TTimer = CreateTimer(20) Repeat WaitEvent() Print CurrentEvent.ToString() Select EventID() Case EVENT_TIMERTICK Select EventSource() Case tm_timeout Print "The timeout timer has ticked!" End Select Case EVENT_WINDOWCLOSE End End Select Forever