VBcoders Guest



Don't have an account yet? Register
 


Forgot Password?



This is simple code that returns if something is an array

by Matt Johnson (5 Submissions)
Category: Miscellaneous
Compatability: VB 6.0
Difficulty: Unknown Difficulty
Originally Published: Fri 22nd December 2000
Date Added: Mon 8th February 2021
Rating: (1 Votes)

This is simple code that returns if something is an array

Rate This is simple code that returns if something is an array



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


Download this snippet    Add to My Saved Code

This is simple code that returns if something is an array Comments

No comments have been posted about This is simple code that returns if something is an array. Why not be the first to post a comment about This is simple code that returns if something is an array.

Post your comment

Subject:
Message:
0/1000 characters