writing activex controls in c#

  • Thread starter Thread starter adam
  • Start date Start date
A

adam

hi

is it possible to write activeX controls in C# and if so
any suggestions of links to sample code would be
appreciated?

thanks

Adam
 
Hi,

As far as I know, .NET does not officially support ActiveX *controls*.
 
Hi Adam,

.Net does not provide the feature of creating ActiveX control, but the .NET
Framework comes with something similar to ActiveX.
I think Girish's link article gives you a start of handling this things in
.Net.
You also can get more information from the article below:
http://www.codeproject.com/cs/miscctrl/exposingdotnetcontrols.asp

Actually, Activex is based on COM and is a component, so you can refer to
the .Net and COM interop, it talks much about how .Net consume COM
component and how COM component consume .Net control. For details, you can
search COM interop in MSDN.

Hope this helps,

Best regards,
Jeffrey Tan
Microsoft Online Partner Support
Get Secure! - www.microsoft.com/security
This posting is provided "as is" with no warranties and confers no rights.

--------------------
| Content-Class: urn:content-classes:message
| From: "adam" <[email protected]>
| Sender: "adam" <[email protected]>
| Subject: writing activex controls in c#
| Date: Wed, 22 Oct 2003 13:34:44 -0700
| Lines: 9
| Message-ID: <[email protected]>
| MIME-Version: 1.0
| Content-Type: text/plain;
| charset="iso-8859-1"
| Content-Transfer-Encoding: 7bit
| X-Newsreader: Microsoft CDO for Windows 2000
| X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4910.0300
| Thread-Index: AcOY2+2qmPl4lEuHQdqnhcGlXe/SzA==
| Newsgroups: microsoft.public.dotnet.languages.csharp
| Path: cpmsftngxa06.phx.gbl
| Xref: cpmsftngxa06.phx.gbl microsoft.public.dotnet.languages.csharp:193334
| NNTP-Posting-Host: TK2MSFTNGXA13 10.40.1.165
| X-Tomcat-NG: microsoft.public.dotnet.languages.csharp
|
| hi
|
| is it possible to write activeX controls in C# and if so
| any suggestions of links to sample code would be
| appreciated?
|
| thanks
|
| Adam
|
 
Back
Top