very strange error

Posted:
Wed Sep 29, 2004 6:00 pm
by L1011blonde
When I try to start up Ultimate Traffic,the compilier fails and shuts down,giving this message: "Run-time error 9:Subscript out of range". I have no clue what it means. Can somebody help me??
Later,L1011blonde
Re: very strange error

Posted:
Fri Oct 01, 2004 8:31 am
by Ivan
OK, you'll need some programming experience to understand it: someone tried to put something in an array, but after the last position...
Take the following array with 10 elements:
[0][1][2][3][4][5][6][7][8][9]
If you want to put something at positon 10, you'll get 'Subscript out of range'.
'Standard' error that usually pops up when either converting from VB6 to VB.NET, and by people wo used C++ before VB (or the other way around)