Dampe Posted February 22, 2008 Posted February 22, 2008 Can someone help me out making my Edit control so whenever I use GuiCtrlSetData to it, it will automatically scroll down if the text is larger then its size? Thanks.
GaryFrost Posted February 22, 2008 Posted February 22, 2008 You'll just have to figure out where to put the following in your code. _GUICtrlEdit_LineScroll ($edit, 0, _GUICtrlEdit_GetLineCount ($edit)) SciTE for AutoItDirections for Submitting Standard UDFs Don't argue with an idiot; people watching may not be able to tell the difference.
duckling78 Posted February 25, 2008 Posted February 25, 2008 Can someone help me out making my Edit control so whenever I use GuiCtrlSetData to it, it will automatically scroll down if the text is larger then its size?Thanks.I know this is late, buuut...maybe it'll help people looking for a similar answer? $edit = GUICtrlCreateEdit(@ScriptName & " initialized.", 4, 211, 371, 146, BitOR($WS_VSCROLL, $ES_AUTOVSCROLL))The $ES_AUTOVSCROLL is the important part.
Dampe Posted February 26, 2008 Author Posted February 26, 2008 Thanks for the help guys, appreciated.
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