arrDudes(1 to 20, 1 to 20, 1 to 20)
how do I assign to, ya?
Printable View
arrDudes(1 to 20, 1 to 20, 1 to 20)
how do I assign to, ya?
wot yous wanting to assign to, aye?
Expalin what you are trying to do AYE...
Nevermind. I just use UDT instead. Make for easier, ya.
Check this:VB Code:
Dim arrDudes(1 To 20, 1 To 20, 1 To 20) As Integer 'Assign a value arrDudes(1, 1, 1) = 12 Debug.Print arrDudes(1, 1, 1) 'Prints 12 arrDudes(12, 2, 9) = 14 Debug.Print arrDudes(12, 2, 9) 'Prints 14
Laterz