hi,
How can i access a vb dll from c++ and pass a string to it and then a string is returned ?
???????????????????
Printable View
hi,
How can i access a vb dll from c++ and pass a string to it and then a string is returned ?
???????????????????
you'd need all that COM stuff to access the VB DLL - if you know that you can probably do it.
the string passing wouldn't be that difficult - make sure you pass a BSTR to VB as VB uses them (theyre unicode i think).
In Visual C++ look at the #import directive.