IT is my understanding that, when you need to pass a pointer to a DLL, al you have to do is pass the first element in the array. But this is not working for me, DLL only takes the first argument and finishes.

This is kinda' what I'm doing:
Code:
...
...
ReDim strA(1 To x) As Long

lon=mydll (a,b,c,strA(1))
...
I'm passing the strA(1) byRef. The array itself contains pointers to other files.


Please any inputs, links on the subject ?