P propagandhi Member Joined Feb 20, 2005 Messages 18 Programming Experience Beginner Apr 17, 2005 #1 how to a use an array without knowing the number of elements?
mzim Well-known member Joined Jun 3, 2004 Messages 187 Location Other side of the rock Programming Experience 1-3 Apr 17, 2005 #2 loop through it? Upvote 0 Downvote
JuggaloBrotha VB.NET Forum Moderator Staff member Joined Jun 3, 2004 Messages 4,524 Location Lansing, MI; USA Programming Experience 10+ Apr 18, 2005 #3 VB.NET: Dim strArray() as String Dim lngArrayLength as Long 'Can also use integer here as well lngArrayLength = strArray.LongLength() Upvote 0 Downvote
VB.NET: Dim strArray() as String Dim lngArrayLength as Long 'Can also use integer here as well lngArrayLength = strArray.LongLength()