From: Alexander S.K. <al...@be...> - 2015-12-09 07:20:05
|
Alain Aupeix пишет: > Le 08/12/2015 12:26, Alexander S.Kresin a écrit : >> Try to do this while the ACTIVATE event: >> >> ACTIVATE WINDOW oMainWindow ON ACTIVATE {||oValid:hide(),oCancel:hide()} > Sorry, but doesn't work ... > Yes, really. Then try the following trick: SET TIMER oTm1 VALUE 100 ACTION {||oValid:hide(),oCancel:hide()} ONCE ACTIVATE WINDOW oMainWindow This will force hiding buttons after 100ms after activating the window. ONCE - this clause set the timer to run only once. Regards, Alexander. |