This is simple code that returns if something is an array
This is simple code that returns if something is an array
Rate This is simple code that returns if something is an array
(1(1 Vote))
Dim MyVariable
Dim MyArray(3)
MyArray(0) = Rnd * 5
MyArray(1) = Rnd * 5
MyArray(2) = Rnd * 5
MyVariable = IsArray(MyArray)
MsgBox "It is " & MyVariable & " that it is an array, " & " it's contence are " & MyArray(0) & ", " & MyArray(1) & ", and " & MyArray(2)
End Sub
This is simple code that returns if something is an array Comments
No comments yet — be the first to post one!
Post a Comment