wip81 Posted August 21, 2006 Posted August 21, 2006 Hi community I'm completely new to AutoIt and I have, after coding some pretty easy scripts, now moved on to the GUI. I consulted the reference and I searched the forum for the following question, but I couldn't find an answer. Is it possible to hide the window title - not only the text, but the whole "bar" - so that the GUI actually looks like some sort of picture? Thanks for any help
GaryFrost Posted August 21, 2006 Posted August 21, 2006 1 example: #include <GUIConstants.au3> GUICreate("My GUI", 500, 500, -1, -1, BitOR($WS_POPUP,$WS_THICKFRAME)) $button = GUICtrlCreateButton("Exit", 10, 10) GUISetState (@SW_SHOW) ; will display an empty dialog box While 1 $msg = GUIGetMsg() Switch $msg Case $GUI_EVENT_CLOSE, $button Exit EndSwitch WEnd SciTE for AutoItDirections for Submitting Standard UDFs Don't argue with an idiot; people watching may not be able to tell the difference.
wip81 Posted August 21, 2006 Author Posted August 21, 2006 Hi gafrost Thanks a lot for the fast reply...i guess i can work something up now.
powaking Posted August 23, 2006 Posted August 23, 2006 Without the bar how does one make the entire gui grabbable so that you can move it around.
GaryFrost Posted August 23, 2006 Posted August 23, 2006 Without the bar how does one make the entire gui grabbable so that you can move it around.http://www.autoitscript.com/forum/index.ph...st&p=213007 SciTE for AutoItDirections for Submitting Standard UDFs Don't argue with an idiot; people watching may not be able to tell the difference.
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