error

windows

Guest
I get this error, does anyone know what is means?

runtime error Microsoft VBScript (0x800A009)
het subscribt valt buiten het bereik: '2'

which is translated something like this: the subscript is out of reach: '2'

Thanx!subscripts usually refer to some reference to an array call where you're asking for a value at a place above the upper bound of the array or below its lower bound.

E.G.
If I have the following....


dim myarray(2)

myarray(0) = "this"
myarray(1) = "that"
myarray(2) = "the other thing"

response.write(myarray(3))


I should get the following error...


Error Type:
Microsoft VBScript runtime (0x800A0009)
Subscript out of range: '[number: 3]'
/exp/testing.asp, line 16


Why? Because I asked for the fourth item from an array that only has three available - I've asked for something above it's upper bound.

Looked for the code on the line it's telling you is erroring and look for a call against an array to see if that is it.
 
Back
Top