Georgkremer Posted October 2, 2013 Posted October 2, 2013 How do I declare a string in Autoit, I am new here, I've googled but found nothing. Do I want to declare a string as I can add something. But I do not understand the :/
water Posted October 2, 2013 Posted October 2, 2013 Welcome to AutoIt and the forum! I suggest you start reading the help file - at least the first chapters about the language and its concepts. The Wiki is helpful too with a lot of tutorials. 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
Developers Jos Posted October 2, 2013 Developers Posted October 2, 2013 Can you send me the link to it? Link to which? Wiki is at the top and the helpfile comes with the installer. Jos SciTE4AutoIt3 Full installer Download page - Beta files Read before posting How to post scriptsource Forum etiquette Forum Rules Live for the present, Dream of the future, Learn from the past.
Georgkremer Posted October 2, 2013 Author Posted October 2, 2013 I've read through this point 3.3.2 strings. But that tells me nothing. I work long hours with Viusal Basic. With (with Dim a as string = "") I made something. is not or is there something in autoit another possibility? :/
water Posted October 2, 2013 Posted October 2, 2013 Dim a as string = "" in VB is Global $a = "" in AutoIt. In AutoIt you do not need to specify a datatype. But this is described in the help file as well. 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
Georgkremer Posted October 2, 2013 Author Posted October 2, 2013 last question for you how do I add a string to the already provided with an expectant expectant a farther?
funkey Posted October 2, 2013 Posted October 2, 2013 Global $sTest = "Hello" $sTest = $sTest & " World" $sTest &= "!" MsgBox(0, "Test", $sTest) Programming today is a race between software engineers striving tobuild bigger and better idiot-proof programs, and the Universetrying to produce bigger and better idiots.So far, the Universe is winning.
Moderators JLogan3o13 Posted October 2, 2013 Moderators Posted October 2, 2013 I work long hours with Viusal Basic. If this is true, you really should be accustomed to looking through help docs, rather than expecting people to spoon-feed code to you. A trip through the Help file will do wonders for your understanding of AutoIt as a language. "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!
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