Gustavo Lago Posted August 28, 2006 Posted August 28, 2006 I need make a sigle text box, without Windows title. Can helpme? Thanks.... Gustavo
MHz Posted August 28, 2006 Posted August 28, 2006 Try this #include <GUIConstants.au3> GUICreate('Sample Gui', 200, 70, 100, 80, $WS_POPUP) GUISetBkColor(0xFF0000) GUICtrlCreateLabel('Single Box', 2, 2, 180) GUICtrlSetBkColor(Default, 0xFF0000) GUICtrlSetColor(Default, 0xFFFFFF) GUICtrlSetFont(Default, 14) GUISetState() Sleep(5000)
Gustavo Lago Posted August 28, 2006 Author Posted August 28, 2006 Try this #include <GUIConstants.au3> GUICreate('Sample Gui', 200, 70, 100, 80, $WS_POPUP) GUISetBkColor(0xFF0000) GUICtrlCreateLabel('Single Box', 2, 2, 180) GUICtrlSetBkColor(Default, 0xFF0000) GUICtrlSetColor(Default, 0xFFFFFF) GUICtrlSetFont(Default, 14) GUISetState() Sleep(5000) Perfecet!!! Thanks MHz
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