iloveautoitv3 Posted March 30, 2009 Posted March 30, 2009 Hello, i cant find a way to create new variables with "for" & "next": like: for $number = 1 to 5 $variable & $number = "the number is"& $number next i dont get this variables: $variable1 = "the number is 1" $variable2 = "the number is 2" $variable3 = "the number is 3" $variable4 = "the number is 4" $variable5 = "the number is 5"
Moderators Melba23 Posted March 30, 2009 Moderators Posted March 30, 2009 iloveautoitv3, My brain is now fully engaged: :-0For $number = 1 to 5 Assign( "variable" & $number, "the number is " & $number) Next For $i = 1 To 5 ConsoleWrite(Eval("variable" & $i) & @CRLF) Next M23 Any of my own code posted anywhere on the forum is available for use by others without any restriction of any kind Open spoiler to see my UDFs: Spoiler ArrayMultiColSort ---- Sort arrays on multiple columnsChooseFileFolder ---- Single and multiple selections from specified path treeview listingDate_Time_Convert -- Easily convert date/time formats, including the language usedExtMsgBox --------- A highly customisable replacement for MsgBoxGUIExtender -------- Extend and retract multiple sections within a GUIGUIFrame ---------- Subdivide GUIs into many adjustable framesGUIListViewEx ------- Insert, delete, move, drag, sort, edit and colour ListView itemsGUITreeViewEx ------ Check/clear parent and child checkboxes in a TreeViewMarquee ----------- Scrolling tickertape GUIsNoFocusLines ------- Remove the dotted focus lines from buttons, sliders, radios and checkboxesNotify ------------- Small notifications on the edge of the displayScrollbars ----------Automatically sized scrollbars with a single commandStringSize ---------- Automatically size controls to fit textToast -------------- Small GUIs which pop out of the notification area
SpookMeister Posted March 30, 2009 Posted March 30, 2009 Not sure if this is what you are looking for... For $x = 1 To 5 Assign("var" & $x, $x + 10) Next For $y = 1 To 5 ConsoleWrite("var" & $y & "=" & Eval("var" & $y) & @CRLF) Next [u]Helpful tips:[/u]If you want better answers to your questions, take the time to reproduce your issue in a small "stand alone" example script whenever possible. Also, make sure you tell us 1) what you tried, 2) what you expected to happen, and 3) what happened instead.[u]Useful links:[/u]BrettF's update to LxP's "How to AutoIt" pdfValuater's Autoit 1-2-3 Download page for the latest versions of Autoit and SciTE[quote]<glyph> For example - if you came in here asking "how do I use a jackhammer" we might ask "why do you need to use a jackhammer"<glyph> If the answer to the latter question is "to knock my grandmother's head off to let out the evil spirits that gave her cancer", then maybe the problem is actually unrelated to jackhammers[/quote]
Valuater Posted March 30, 2009 Posted March 30, 2009 (edited) Maybe... $List = StringSplit("this,that,who,how,when,where,why", ",") $display = "" For $x = 1 To UBound($List) -1 $display &= $List[$x] & @CRLF Next MsgBox(0x0, "Results", $display) 8) ...... too slow, but another angle... 8) Edited March 30, 2009 by Valuater
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