Jun 8, 2001 #1 Kib Programmer Joined May 17, 2001 Messages 58 Location US is there a way to tell if I am at the end of an array?
Jun 8, 2001 1 #2 balor Programmer Joined Jul 24, 2000 Messages 74 The UBound function returns the size of the array. Use it to check if you are at the end. UBound(sArray) Upvote 0 Downvote
The UBound function returns the size of the array. Use it to check if you are at the end. UBound(sArray)
Jun 8, 2001 Thread starter #3 Kib Programmer Joined May 17, 2001 Messages 58 Location US Thanks! Upvote 0 Downvote