qwertylol Posted April 19, 2007 Posted April 19, 2007 FileWrite ( filehandle or "filename", "line" ) Actually, what I meant was how I can creat a string mixing both "lines" and $lines. Something like this: $can = 5 "today I ate $can s of fish"
gamerman2360 Posted April 19, 2007 Posted April 19, 2007 Opt("ExpandVarStrings", 1) $can = 5 "today I ate $can$ cans of fish"
Paulie Posted April 19, 2007 Posted April 19, 2007 (edited) FileWrite ( filehandle or "filename", "line" ) Actually, what I meant was how I can creat a string mixing both "lines" and $lines. Something like this: $can = 5 "today I ate $can s of fish" Use "&" to connect. $can = 5 "MsgBox(0,"Test", "Today, I ate "&$can&" cans of fish.") Edited April 19, 2007 by Paulie
Paulie Posted April 19, 2007 Posted April 19, 2007 I can't find Opt in the help file.AutoitSetOption()
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