Drifter 0 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 Share this post Link to post Share on other sites
PsaltyDS 39 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 Share this post Link to post Share on other sites
Drifter 0 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! Share this post Link to post Share on other sites