Project type

  • Thread starter Thread starter Guest
  • Start date Start date
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
 
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.
 
Back
Top