Sit window on bottom
Posted: Mon Oct 04, 2004 11:42 pm
I want the window to be under everything so it is never on top .
How would I do that with code ?
How would I do that with code ?
http://www.purebasic.com
https://www.purebasic.fr/english/
Code: Select all
SetParent_(WindowID(),FindWindow_(0,"Program Manager"))
Code: Select all
SetWindowPos_(WindowID(),#HWND_TOPMOST,0,0,0,0,#SWP_NOMOVE|#SWP_NOSIZE)