I have an activex DLL project that I need to step through code with. What is the best way to do this?
Printable View
I have an activex DLL project that I need to step through code with. What is the best way to do this?
Add test project to your dll project, set references to that dll (compatability to project), set test project as StartUp.
In your test project add some functionality that you want to test and run it.
How do I set the references to that DLL and I need to set the compatability to project?
Did you ever explore menus available in VB IDE? If not then go to Project > References ... and follow very simple steps.
Create a Group project with a test program and add in the ActiveXDLL project. You can execute your project (that calls the dll) and place break points in the ActiveXDLL project. You can even step through it.