Rico.JohnnY Posted March 7, 2005 Posted March 7, 2005 It seems there is no introduction about that topic in the chm document.how to achieve that?
CyberSlug Posted March 7, 2005 Posted March 7, 2005 It's under "Dim" in the Keyword/Statement Referencehttp://www.autoitscript.com/autoit3/docs/keywords/Dim.htmSearch the forum if you need more information Use Mozilla | Take a look at My Disorganized AutoIt stuff | Very very old: AutoBuilder 11 Jan 2005 prototype I need to update my sig!
Rico.JohnnY Posted March 7, 2005 Author Posted March 7, 2005 thanks for your help. One more question,is it possible to use variable for array dimension? I want to dynamically change it.
CyberSlug Posted March 7, 2005 Posted March 7, 2005 Try it $petCount = 1 Dim $pets[$petCount] $pets[0] = "ants" $petCount = $petCount + 1 ReDim $pets[$petCount] $pets[1] = "bird" MsgBox(4096,"Pet List", listing($pets)) ReDim $pets[4] $pets[2] = "cat" $pets[3] = "dog" MsgBox(4096,"Pet List", listing($pets)) $petCount = 12 ReDim $pets[$petCount] $pets[4] = "elephant" $pets[5] = "fly" $pets[6] = "giraffe" $pets[7] = "hippo" MsgBox(4096,"Pet List", listing($pets)) Exit Func listing($array) Local $i, $temp = "" For $i = 0 to UBound($array)-1 $temp = $temp & " " & $array[$i] Next Return $temp EndFunc Use Mozilla | Take a look at My Disorganized AutoIt stuff | Very very old: AutoBuilder 11 Jan 2005 prototype I need to update my sig!
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