
Passing arrays from a VB dll into a VBScript
Hi,
This driving me crazy!!
I have a VB dll that contains
Public Function A() As Integer()
Dim myArray(0 to 1000)
....
A=myArray
End Function
Then an asp page which contains
Dim aspArray()
aspArray() = myArray()
I keep getting the error "Subscript out of range"
Can anyone help a beginner and show him the error of his ways.
Thanks
Paul Clements