Hi all,
is it possible to change the standard behavior of the minimize and close button of a window ?
A click on minimize should hide the windows
kind regards
Stefan
Stefan
Hi all,
is it possible to change the standard behavior of the minimize and close button of a window ?
A click on minimize should hide the windows
#define SIZE_MINIMIZED 1
ACTIVATE WINDOW oWnd ;
ON RESIZE If( nSizeType == SIZE_MINIMIZED, oWnd:Hide(), oWnd:Show() )Antonio,
many thanks, it´s working.
But when i try to show the window again (oWnd:Show() ), it´s only shown in the taskbar. Do i miss something to restore it completely ?
Stefan,
Try:
oWnd:Restore(), oWnd:Show()
Antonio,
works perfectly ![]()
many thanks