voldor Posted January 11, 2007 Posted January 11, 2007 Everything is said. here is what i 'am using, but i do not see the end of my line if the text is too large. $style = $GUI_SS_DEFAULT_EDIT+$ES_READONLY+$WS_VSCROLL+$WS_HSCROLL+$ES_AUTOVSCROLL+$ES_AUTOHSCROLL+$ES_MULTILINE $GUI_logs = GUICtrlCreateEdit ( "", 10, 95 , 245 , 670, $style) Is ther a way to wrap text or to get scroll bar ? Thanks for your help
AU3Newbie Posted January 11, 2007 Posted January 11, 2007 $GUI_logs = GUICtrlCreateEdit ( "", 10, 95 , 245 , 670, $WS_HSCROLL) please test the code above.
voldor Posted January 11, 2007 Author Posted January 11, 2007 This is working but not the entire set of Flags. But it is ok for me right now $style = $WS_HSCROLL+$ES_MULTILINE++$WS_VSCROLL+$ES_READONLY $GUI_logs = GUICtrlCreateEdit ( "", 10, 95 , 245 , 670, $style)
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