hlstriker Posted September 11, 2005 Posted September 11, 2005 Is there a way to have the GUI locked in place when it loads? This way you can't move the GUI around and it will just stay in the same spot until closed? Thanks in advance! The best Honda forums!RuneScape High Alching for Profit!
LxP Posted September 12, 2005 Posted September 12, 2005 You could try creating the GUI with the $WS_CAPTION style removed:#include <GUIConstants.au3> guiCreate("GUI", 100, 100, 100, 100, bitAND($GUI_SS_DEFAULT_GUI, bitNOT($WS_CAPTION)))Does that work as expected?
therks Posted September 12, 2005 Posted September 12, 2005 Or you can disable the window: GuiSetState(@SW_DISABLE) The problem with this is that you cannot interact with the controls. My AutoIt Stuff | My Github
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