Hi all!
I need an easy-step-by-step explanation about how I can use an ActiveX DLL (done with VB6) into my C# app.
Let's say I got:
- mydll.dll with myclass in it.
- test.cs
- into test.cs I want to do:
myclass mc = new myclass();
Console.WriteLine(mc.myproperty);
How to do it?
Thanx!
