I get an error "Cant assign to array" with the following code, ive never used arrays before, and this is one of my first attempts to
VB Code:
Dim strArr(1 To 10) As Integer Public Sub Form_Load() strArr() = Array("404933", "165425", "907356", "992437", "665768", "541879", "509990", "203261", "255631", "108982") End Sub
But it get that one error as mentioned above, what is the problem?
