SuddenGunfire Posted May 15, 2009 Posted May 15, 2009 Well I can't seem to get the special character " inputed on a message box. Here's the code: MsgBox(0, "clients.txt", "{"}clients.txt{"}" & @CRLF & "1" & @CRLF & "2") This line in the message box I need to say "clients.txt" WITH the quotations. "{"}clients.txt{"}"
zorphnog Posted May 15, 2009 Posted May 15, 2009 MsgBox(0, "clients.txt", '"clients.txt"' & @CRLF & "1" & @CRLF & "2")
Zedna Posted May 15, 2009 Posted May 15, 2009 MsgBox(0, "clients.txt", '"clients.txt"' & @CRLF & "1" & @CRLF & "2") Resources UDF ResourcesEx UDF AutoIt Forum Search
SuddenGunfire Posted May 15, 2009 Author Posted May 15, 2009 Also how do I add enters in. Like usually it's {enter} what's it for a message box?
Richard Robertson Posted May 15, 2009 Posted May 15, 2009 Enter is a key. Do you mean a new line? Just use the macro @CRLF like "first line" & @CRLF & "second line"
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