It would be helpful if you could be specific about what problems you are having.
Are you familiar with making ActiveX dlls in VB6? As you are probably aware, VB6 makes this very simple. Let us know if this is where you need guidance, and what exactly you are having trouble with.
The basics of creating a dll are as follows:
- Start up a new project, and select the ActiveX dll icon to create a project.
- Put your code into the class provided - but give the class a name that has meaning to your project.
- Yoo have to have public properties and methods (functions or subs) for the class to be useful (or to even compile if I remember correctly).
To test this new dll, you can add a standard exe project to the project group (using the main menu > add project dialog) and set it as the start-up project. You will then need to add a reference to the dll in project > references, and write some code to use the dll.
Once everything is done, you will need to provide an installer that your users will use to install the dll on their computer.
That is pretty much the basics - I left out all the details.
If this is your first project devloping COM dlls, you are in for a lot of fun. And I am using the word fun to mean "headaches". Of course, for most of us the issues with COM dlls are slowly fading into history since a new mechanism for RPC is used in the .NET world. We still have dlls, but now the are "managed" and do not use the registry for locating them (as well as a lot of other changes).
Woody Z
http://www.learntoprogramnow.com
How to use a forum to help solve problems
By blog... please visit