Klark67 Posted February 27, 2012 Posted February 27, 2012 Local $sString = (" line1 line2 ") can I divide it like list(with lines) ?
water Posted February 27, 2012 Posted February 27, 2012 You have already asked a similar question Please open only one thread per question.And the answer is: No, you can't.You can either have a string and concatenate the content with operator "&" or an array.It depends on the program you want to automate and the way it expects data. My UDFs and Tutorials: Spoiler UDFs: Active Directory (NEW 2024-07-28 - Version 1.6.3.0) - Download - General Help & Support - Example Scripts - Wiki ExcelChart (2017-07-21 - Version 0.4.0.1) - Download - General Help & Support - Example Scripts OutlookEX (2021-11-16 - Version 1.7.0.0) - Download - General Help & Support - Example Scripts - Wiki OutlookEX_GUI (2021-04-13 - Version 1.4.0.0) - Download Outlook Tools (2019-07-22 - Version 0.6.0.0) - Download - General Help & Support - Wiki PowerPoint (2021-08-31 - Version 1.5.0.0) - Download - General Help & Support - Example Scripts - Wiki Task Scheduler (2022-07-28 - Version 1.6.0.1) - Download - General Help & Support - Wiki Standard UDFs: Excel - Example Scripts - Wiki Word - Wiki Tutorials: ADO - Wiki WebDriver - Wiki
Klark67 Posted February 27, 2012 Author Posted February 27, 2012 mmm. Im sorry about that , I understand . it is impossible
Moderators JLogan3o13 Posted February 27, 2012 Moderators Posted February 27, 2012 (edited) You'd have to use the & _ as Water mentioned, but you could do something like this I guess (not sure why you'd want to). Local $String = "line1 " & _ "line2 " & _ "line3 " MsgBox(0, "", $String) Edited February 27, 2012 by JLogan3o13 "Profanity is the last vestige of the feeble mind. For the man who cannot express himself forcibly through intellect must do so through shock and awe" - Spencer W. Kimball How to get your question answered on this forum!
water Posted February 27, 2012 Posted February 27, 2012 But that's not what the OP needs. He's looking for a way to have a NewLine character in his data. My UDFs and Tutorials: Spoiler UDFs: Active Directory (NEW 2024-07-28 - Version 1.6.3.0) - Download - General Help & Support - Example Scripts - Wiki ExcelChart (2017-07-21 - Version 0.4.0.1) - Download - General Help & Support - Example Scripts OutlookEX (2021-11-16 - Version 1.7.0.0) - Download - General Help & Support - Example Scripts - Wiki OutlookEX_GUI (2021-04-13 - Version 1.4.0.0) - Download Outlook Tools (2019-07-22 - Version 0.6.0.0) - Download - General Help & Support - Wiki PowerPoint (2021-08-31 - Version 1.5.0.0) - Download - General Help & Support - Example Scripts - Wiki Task Scheduler (2022-07-28 - Version 1.6.0.1) - Download - General Help & Support - Wiki Standard UDFs: Excel - Example Scripts - Wiki Word - Wiki Tutorials: ADO - Wiki WebDriver - Wiki
JohnQSmith Posted February 27, 2012 Posted February 27, 2012 (edited) Then, how about Local $sString = ( _ "line1" & @CRLF & _ "line2" & @CRLF _ ) Edited February 27, 2012 by JohnQSmith Whenever someone says "pls" because it's shorter than "please", I say "no" because it's shorter than "yes".
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