How can I call functions in C++ DLLs from VB ?
I'm a total beginner with VB, examples would be appreciated.
Thanks for your time,
Dave.
Printable View
How can I call functions in C++ DLLs from VB ?
I'm a total beginner with VB, examples would be appreciated.
Thanks for your time,
Dave.
You can use any dll as any API decloration
Declare Function MyFunction Lib "mydll.dll" (ByVal MyParam as Long) As Long