chad.stout Posted October 18, 2006 Posted October 18, 2006 (edited) I'm trying to create a multi-line input box, but it seems I am missing something. I figured it would be as straightforward as: $inpDisplay = GUICtrlCreateInput ("", 5, 5, 490, 430, $ES_MULTILINE) but, I suppose it's not because the created input box does not show new lines - rather the character that represents a line feed. What am I missing? Thanks, -Chad Edited October 18, 2006 by chad.stout
Helge Posted October 18, 2006 Posted October 18, 2006 Use GUICtrlCreateEdit instead for multiple lines..
chad.stout Posted October 18, 2006 Author Posted October 18, 2006 Use GUICtrlCreateEdit instead for multiple lines..I tried that as well, but I get the same problem.
Helge Posted October 18, 2006 Posted October 18, 2006 Hmm...are you using @CRLF, as it seems to only support that. GUICreate("", 300, 300) GUICtrlCreateEdit("line1" & @CRLF & "line2" & @CR & "line3" & @LF & "line4", 10, 10, 280, 280) GUISetState () Do Until GUIGetMsg() = -3
chad.stout Posted October 18, 2006 Author Posted October 18, 2006 Hmm...are you using @CRLF, as it seems to only support that. GUICreate("", 300, 300) GUICtrlCreateEdit("line1" & @CRLF & "line2" & @CR & "line3" & @LF & "line4", 10, 10, 280, 280) GUISetState () Do Until GUIGetMsg() = -3 Ok, yes.. it was something dumb after all Although I swear that is how I had it coded to begin with :/
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