How can I use a VB library, in VC++
-
Hi, I have a VB library file which has many functions/constants. How can I use that in a VC++ program? Should I make a VB dll file, and include all of the functions in it? Ehsan Behboudi
-
ok i just checked,, the library is written according to COM. what should i do next? Ehsan Behboudi
use #import "myvbcode.dll" during c++ compilation it would generate myvbcode.tlh myvbcode.tli which are automatically included then just select the functionality you need. If you need more help, publish generated .tli file here and example of how you would use it in VB.
-
use #import "myvbcode.dll" during c++ compilation it would generate myvbcode.tlh myvbcode.tli which are automatically included then just select the functionality you need. If you need more help, publish generated .tli file here and example of how you would use it in VB.
-
use #import "myvbcode.dll" during c++ compilation it would generate myvbcode.tlh myvbcode.tli which are automatically included then just select the functionality you need. If you need more help, publish generated .tli file here and example of how you would use it in VB.
-