Hi
Fixed the identified problems, but still having issue with the FOR statement:
....
dim count as long = 15
dim MaxElements as long = 15
dim vList(15) AS STRING
dim i As Integer = 15
dim iTm (15) As String
dim sBuffer (15) as string
...
i = 0
FOR count = 1 TO 15
vList(Count) = iTm(Count)
i = i+1
NEXT
I get a "...Subscript out of range in array or matrix..." error. Even though the variables are set to 15. Thank You...
Bookmarks