Re: Passing Arrays - Tkx Lothar
Thanks Lothar!
Its working. Actually it was an ActiveX Dll. Hey! Lothar, is there any difference between an Windows Dll and an ActiveX Dll ? IS so what are the differences ?
Hand in Hand we Walk towards SUCCESS.
Re: Passing Arrays - Tkx Lothar
>is there any difference between an Windows Dll and an ActiveX Dll ?
certainly. I'm not the expert to tell you all the technical details of those two beast, but:
- an ActiveX dll has a COM interface
you instantiate it via CreateObject or early binding (dim .. as new ...)
you call functions via objectInstanceName.Methodname
- a "normal" DLL is invoke via implicit or explicit linking (LoadLibrary(Ex))
you "call" the functions and "declare" it before you can use them.
There are a couple of other differences (e.g. ActiveXDLL can be easily made "remotable")