onestcoder Posted January 31, 2006 Posted January 31, 2006 (edited) Can anyone lead me in the right direction? I want my GUI when it opens to Always Stay On Top of all other applications??? is it the $WS_EX_TOPMOST so would it be GUICreate("My program", 274, 200, $WS_EX_TOPMOST) Edited January 31, 2006 by onestcoder Need a website: http://www.iconixmarketing.com
seandisanti Posted January 31, 2006 Posted January 31, 2006 Can anyone lead me in the right direction?I want my GUI when it opens to Always Stay On Top of all other applications???2 ways, you can use WinSetOnTop("Window",1) OR use the $WS_EX_TOPMOST extended style when creating your gui.
jaenster Posted January 31, 2006 Posted January 31, 2006 For a newbi as you i shall use the win @ Cameronsdad... -jaenster
seandisanti Posted January 31, 2006 Posted January 31, 2006 Can anyone lead me in the right direction? I want my GUI when it opens to Always Stay On Top of all other applications??? is it the $WS_EX_TOPMOST so whould it be GUICreate("My program", 274, 200, $WS_EX_TOPMOST)actually the topmost is an extended style, so you have to have a value for all of the optional parameters before it, to set an extended style. -1 uses the default style so it would be: $gui = GUICreate("My program", 274, 200,0,0, -1,$WS_EX_TOPMOST)
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now