hallo!
I've got the following problem and i couldn't find an answer yet. please, if anybody knows anything please help me!
I've programmed an ActiveX DLL with
VB.
There is a function witch requires an array as parameter. it looks a little bit like the following line.
Public Function myFunction(asActions()) As Variant
'DO HERE ANYTHING
End Function
I call this function with asp like this
Dim asActions(1)
asActions(0) = "ADD"
asActions(1) = "EDIT"
Response.Write myObject.myFunction(asActions)
But there allways is a runtime error: index out of range
WHY? WHAT CAN I DO?
please help me!
thx Bernhard Wurm
(austria)