.Net Control to ActiveX

  • Thread starter Thread starter Fistandantilus
  • Start date Start date
F

Fistandantilus

Hey

Can you take a control developed in .Net and make it an ActiveX control???
also how would you get a GUID for it???

Thanks
MacKenzie
 
It depends. If you mean embedded in a web page, I would say no. Not that it
is necessarily impossible, but unadvisable.

To make COM wrappers, you can use regasm.exe, which will create the wrapper
and GUID for the wrapper. The .NET assembly still exists, so anyone running
it needs .NET installed on their machine. In general, I would advise keeping
code on the server for web apps and be 100% .NET for windows apps.

--
Gregory A. Beamer
MVP; MCP: +I, SE, SD, DBA

**********************************************************************
Think Outside the Box!
**********************************************************************
 
Hi,

Not in .NET. You would have to port the code to Visual Studio 6 Z(choose
your language).

Dick

--
Richard Grier (Microsoft Visual Basic MVP)

See www.hardandsoftware.net for contact information.

Author of Visual Basic Programmer's Guide to Serial Communications, 3rd
Edition ISBN 1-890422-27-4 (391 pages) published February 2002.
 
Back
Top