What am I doing wrong?
The code below using a simple list.add command returns a compilation error saying "java 474: not a statement"
The checkbox for the core library is checked. Why doesn't this work?
Sub Button2_Click
Dim List1, x as Long
List1.Initialize
For x=0 to 9
List1.Add(x)
Next x
End Sub
The code below using a simple list.add command returns a compilation error saying "java 474: not a statement"
The checkbox for the core library is checked. Why doesn't this work?
Sub Button2_Click
Dim List1, x as Long
List1.Initialize
For x=0 to 9
List1.Add(x)
Next x
End Sub