Kivin Posted March 13, 2007 Posted March 13, 2007 Hi everyone! Is anyone know, how can I use a text for a label or other data with specific symbols. For example: text - Autoit Ver 1.00 "Beta"; @by visitor $1="Autoit Ver 1.00 "Beta"; @by visitor" guicreate ($1,300,200) ... Thanks
Xenobiologist Posted March 13, 2007 Posted March 13, 2007 Hi, where is you problem? Look at the GUiCreate helpfile. You need to use & to add strings together like $1 = "Autoit Ver 1.00 " & "Beta" & "; @by visitor" So long, Mega Scripts & functions Organize Includes Let Scite organize the include files Yahtzee The game "Yahtzee" (Kniffel, DiceLion) LoginWrapper Secure scripts by adding a query (authentication) _RunOnlyOnThis UDF Make sure that a script can only be executed on ... (Windows / HD / ...) Internet-Café Server/Client Application Open CD, Start Browser, Lock remote client, etc. MultipleFuncsWithOneHotkey Start different funcs by hitting one hotkey different times
Kivin Posted March 13, 2007 Author Posted March 13, 2007 I need, that shown text was exactly like this: Autoit Ver 1.00 "Beta"; @by visitor. I have problem with "" symbols. I need to use this symbols in title. Thanks.
Josbe Posted March 13, 2007 Posted March 13, 2007 Use single-quotes.$1='Autoit Ver 1.00 "Beta"; @by visitor' guicreate ($1,300,200) ...Take a look to helpfile in "Strings" section. AUTOIT > AutoIt docs / Beta folder - AutoIt latest beta
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