2005 COM visible

  • Thread starter Thread starter Chubbly Geezer
  • Start date Start date
C

Chubbly Geezer

I previously used REGASM with .Net to make my classes COM visible.

Is this still required in 2005. There are various options that imply not.
You can amend the assembly to mark it as COM visible and also mark the
classes as COM classes.

However, through trial and error I cannot get this to work.

Thanks
 
Chubbly Geezer said:
I previously used REGASM with .Net to make my classes COM visible.
Yes.

Is this still required in 2005. There are various options that imply not.
You can amend the assembly to mark it as COM visible and also mark the
classes as COM classes.

You could mark classes as COM classes in .NET 1.* too, and you could enable
automatic registration of the library for COM in VS.NET 2003 too on the
development machine. However, this doesn't imply that no registration is
required on the target machine.
 
So is there any benefit of marking anything as COM in 2005.? Am I missing
the point here.?
 
Chubbly Geezer said:
So is there any benefit of marking anything as COM in 2005.? Am I missing
the point here.?

It simplifies development because you do not need to register the assembly
every time you recompile it by hand.
 
Thanks

Herfried K. Wagner said:
It simplifies development because you do not need to register the assembly
every time you recompile it by hand.
 

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

Back
Top