Project type

G

Guest

Hello:

Does somebody know what type of project in VB.NET

allows to create code that corresponds to one created

by ActiveX DLL in VB.6 ?

thank you,

dave
 
C

Chris Dunaway

A class library is what you should use. It's still not exactly the
same as as an ActiveX .dll. You must apply the <ComVisible(True)>
attributes to any methods you want to be exposed to COM.

Then you must register the assembly using regasm.exe.

You should be able to find many posts on this group that tell how to do
that.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top