How to make VB ActiveX DLL?
-
Hi I would like to use a certain VB functions in Vc++. It was recommended to me to make an ActiveX DLL in VB, and call VB ActiveX DLL in VC. How can I make a VB ActiveX DLL? Ehsan Behboudi
start a new project .. choose ActiveX DLL in the project add Class modules with functions , propertties you need.. then build the project. is this all waht you need ?
-
start a new project .. choose ActiveX DLL in the project add Class modules with functions , propertties you need.. then build the project. is this all waht you need ?
-
So, I should make an ActiveX Dll project and add all the functions/constants to it, then build it? how can I use the functions in my VC++ program. should I just type the functions down in the VB, how can I add them? Ehsan Behboudi
Hi,, using it in VC++ is a long story :) in brief look MSDN for
CoCreateInstance
you can add functions , properties to the VB6 project : choose Tools menu then Add Procedure