Drifter Posted August 20, 2010 Posted August 20, 2010 (edited) I have a line that goes like this:$edit = GUICtrlCreateEdit("",20,40,560,460,BitOr($ES_MULTILINE,$ES_WANTRETURN,$ES_AUTOVSCROLL))The help file says that $WS_VSCROLL, $ES_AUTOVSCROLL are part of the default configuration. However, when I add $WS_VSCROLL to my BitOr, SCiTE complains that the variable doesn't exist! Why?$ES_AUTOVSCROLL is all i really need but having a vscroll would be really helpful and honestly something anyone should expect in my application. Any help is well appreciated. PS: i did #include <EditConstants.au3> Edited August 20, 2010 by Drifter
PsaltyDS Posted August 21, 2010 Posted August 21, 2010 Add this: #include <WindowsConstants.au3> Valuater's AutoIt 1-2-3, Class... Is now in Session!For those who want somebody to write the script for them: RentACoder"Any technology distinguishable from magic is insufficiently advanced." -- Geek's corollary to Clarke's law
Drifter Posted August 21, 2010 Author Posted August 21, 2010 ahhh my fail. I totally see where you got that information too. At least I know now more places to look for certain control properties! Thank you very much!
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