hey all
i got this problem:
VB Code:
Dim A As Integer Dim RijNamen(40) As StringVB Code:
A = 0 Open File For Output As #1 For A = 1 to 80 Select Case A Case Is < 30 Write #1, RijTijden(A) Case Is > 30 And < 41 Write #1, RijHighScores(A - 30) Case Is > 40 Write #1, RijNamen(A - 40) '<--- here's the error Next Close #1
everything i put in the array RijNamen are dimmed as strings, but i guess the problem is there, i have no doubt where it could be




Reply With Quote