Renderer Posted February 7, 2016 Posted February 7, 2016 Hello guys, how can i read an Edit control into an array.I've tried this with StringSplit and @crlf , but it doesn't work! Thanks in advance.
mikell Posted February 7, 2016 Posted February 7, 2016 (edited) You probably forgot the $STR_ENTIRESPLIT (1) flag in StringSplit #include <StringConstants.au3> StringSplit(GuiCtrlRead($idMyedit), @crlf, $STR_ENTIRESPLIT) Edited February 7, 2016 by mikell
Renderer Posted February 7, 2016 Author Posted February 7, 2016 On 07.02.2016 at 3:44 AM, mikell said: You probably forgot the $STR_ENTIRESPLIT (1) flag in StringSplit #include <StringConstants.au3> StringSplit(GuiCtrlRead($idMyedit), @crlf, $STR_ENTIRESPLIT) Thanks!
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