J
Jurgen
Hello,
I have some VBA code in Excel, and I have a .Net DLL with some
functions I designed in it. I can call those functions from within VBA
- no
problems so far.
But I don't succeed in passing an array (Dim A() as Double) as a
parameter to a function in the DLL. How do I do this?
e.g.
VBA:
C = MySum(A())
VB.NET DLL:
public function MySum(byval A() as double) as double
Any help is welcome!
Regards,
Jurgen
I have some VBA code in Excel, and I have a .Net DLL with some
functions I designed in it. I can call those functions from within VBA
- no
problems so far.
But I don't succeed in passing an array (Dim A() as Double) as a
parameter to a function in the DLL. How do I do this?
e.g.
VBA:
C = MySum(A())
VB.NET DLL:
public function MySum(byval A() as double) as double
Any help is welcome!
Regards,
Jurgen