unknown12 Posted December 30, 2005 Posted December 30, 2005 Hello,I created a GUI with GUIBuilder. When I saved it as a .au3 and tried to run it I get this error:I need to get this fixed. How?Thanks.
Developers Jos Posted December 30, 2005 Developers Posted December 30, 2005 Hello,I created a GUI with GUIBuilder. When I saved it as a .au3 and tried to run it I get this error:I need to get this fixed. How?Thanks.Does you code contain : #Include<GUIConstants.au3> Do you have a resent version of this file in the Includes subdirectory ? 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.
Danny35d Posted December 30, 2005 Posted December 30, 2005 (edited) Be sure you have this line at the begining of your script:#include <GUIConstants.au3>Edit: JdeB type faster than me.... Edited December 30, 2005 by Danny35d AutoIt Scripts:NetPrinter - Network Printer UtilityRobocopyGUI - GUI interface for M$ robocopy command line
unknown12 Posted December 30, 2005 Author Posted December 30, 2005 Yes, i have that. I just installed the latest beta release, and that fixed it.
unknown12 Posted December 30, 2005 Author Posted December 30, 2005 Whats the way to detect weather a checkbox is checked or not? cheers.
Developers Jos Posted December 30, 2005 Developers Posted December 30, 2005 $h_test = GUICtrlCreateCheckbox("test", 15, 175) ...... If GUICtrlRead($h_test) = $GUI_CHECKED Then ; EndIf 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.
unknown12 Posted December 30, 2005 Author Posted December 30, 2005 (edited) Thanks. only 1 more question How would I read a txt file into a var?EDIT: how do I add another string onto a var?Thanks again. Edited December 30, 2005 by unknown12
Moderators SmOke_N Posted December 30, 2005 Moderators Posted December 30, 2005 $Var = $Var & $NewStrings Common sense plays a role in the basics of understanding AutoIt... If you're lacking in that, do us all a favor, and step away from the computer.
livewire Posted December 30, 2005 Posted December 30, 2005 Man you guys are quick...the groupbox error is because the $BS_GROUPBOX wasn't included until somewhere around beta 79. Latest beta would fix it. -Livewire
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