Glyph Posted January 25, 2007 Posted January 25, 2007 How do you get that white stripe across the top of a gui i seen it somewhere on the forums in am image, it looks kind of like an installer... tolle indicium
WeMartiansAreFriendly Posted January 25, 2007 Posted January 25, 2007 How do you get that white stripe across the top of a gui i seen it somewhere on the forums in am image, it looks kind of like an installer...hye, can you show an image of it? Don't bother, It's inside your monitor!------GUISetOnEvent should behave more like HotKeySet()
Zedna Posted January 25, 2007 Posted January 25, 2007 (edited) Answer is label with style: $SS_SUNKEN and height 2 pixels #include <GUIConstants.au3> $Form1 = GUICreate("Form1", 633, 454, 193, 115) $Label1 = GUICtrlCreateLabel("Label1", 72, 40, 347, 2, $SS_SUNKEN) GUISetState(@SW_SHOW) While 1 $nMsg = GUIGetMsg() Switch $nMsg Case $GUI_EVENT_CLOSE Exit EndSwitch WEnd Edited January 25, 2007 by Zedna Resources UDF ResourcesEx UDF AutoIt Forum Search
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