Lakes Posted May 5, 2006 Posted May 5, 2006 I want to add some of my own buttons to an existing App. So, I need to create a window that has no titlebar or anything else, so that the button(s) appear as if they have no window. Thanks! 2015 - Still no flying cars, instead blankets with sleeves.
blckbrd Posted May 5, 2006 Posted May 5, 2006 (edited) I want to add some of my own buttons to an existing App. So, I need to create a window that has no titlebar or anything else, so that the button(s) appear as if they have no window. Thanks! Belowe code will show you a window with no titlebar and no minimize, full window and close buttons #include <GuiConstants.au3> $MainGui = GUICreate("", 250, 99, @DesktopWidth/2-125, @DesktopHeight/2-50, $WS_POPUP,$WS_EX_DLGMODALFRAME) guisetstate() While 1 Wend Edited May 5, 2006 by blckbrd
Lakes Posted May 5, 2006 Author Posted May 5, 2006 Belowe code will show you a window with no titlebar and no minimize, full window and close buttons #include <GuiConstants.au3> $MainGui = GUICreate("", 250, 99, @DesktopWidth/2-125, @DesktopHeight/2-50, $WS_POPUP,$WS_EX_DLGMODALFRAME) guisetstate() While 1 Wend Thanks Dude I usually rely on Koda to do the GUI stuff. 2015 - Still no flying cars, instead blankets with sleeves.
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