TokeySmurf Posted September 9, 2006 Posted September 9, 2006 Rather than using msgbox.. example Else MsgBox(0, "ERROR", "Program Not Running", 3) $Show = 0 How would I get it to display text within the actual GUI rather than making a new box?
Developers Jos Posted September 9, 2006 Developers Posted September 9, 2006 Rather than using msgbox.. example Else MsgBox(0, "ERROR", "Program Not Running", 3) $Show = 0 How would I get it to display text within the actual GUI rather than making a new box?Just put a Label Control in your GUI and update it with GUISetData() ... SciTE4AutoIt3 Full installer Download page - Beta files Read before posting How to post scriptsource Forum etiquette Forum Rules Live for the present, Dream of the future, Learn from the past.
TokeySmurf Posted September 9, 2006 Author Posted September 9, 2006 Just put a Label Control in your GUI and update it with GUISetData() ...Thanks, I'll read through the help file and try to figure it out
TokeySmurf Posted September 9, 2006 Author Posted September 9, 2006 Thanks, I'll read through the help file and try to figure it out I couldn't find a "Label Control" or the Command Guisetdata
Developers Jos Posted September 9, 2006 Developers Posted September 9, 2006 I couldn't find a "Label Control" or the Command GuisetdataYou said you created you own GUI in AutoIt3 ...right ? $hStatus = GUICtrlCreateLabel("",1,1) ; ; GUICtrlSetData($hStatus," new status") SciTE4AutoIt3 Full installer Download page - Beta files Read before posting How to post scriptsource Forum etiquette Forum Rules Live for the present, Dream of the future, Learn from the past.
TokeySmurf Posted September 9, 2006 Author Posted September 9, 2006 You said you created you own GUI in AutoIt3 ...right ? $hStatus = GUICtrlCreateLabel("",1,1) ; ; GUICtrlSetData($hStatus," new status") Thanks once again .. and Aye.. Lots of reading of the help file. Its a big learning thing for me I basically created it all through the help file etc.. Tried things to see if it worked and didn't heh. This is my first GUI I'm working on
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