[Implemented] HideWindow() ~ A small addition
Posted: Mon Oct 20, 2008 8:53 am
Could the 'State' flag in HideWindow() be modified so that if the window that is being revealed is optionally not activated?
This could be achieved with a bit flag or another Flag value:
HideWindow(MyWindow,1) ; Hide
HideWindow(MyWindow,0); Reveal
HideWindow(MyWindow,2); Reveal but not activate.
The Windows equivalent is:
See:
http://www.purebasic.fr/english/viewtop ... 951#263951
RichardL
This could be achieved with a bit flag or another Flag value:
HideWindow(MyWindow,1) ; Hide
HideWindow(MyWindow,0); Reveal
HideWindow(MyWindow,2); Reveal but not activate.
The Windows equivalent is:
Code: Select all
ShowWindow_(WindowID(MyWindow),#SW_SHOWNOACTIVATE) ; Make window visible, but do NOT activate it
http://www.purebasic.fr/english/viewtop ... 951#263951
RichardL