ActiveX control

  • Thread starter Thread starter noodles
  • Start date Start date
N

noodles

I have a activeX control written in managed code. Anyone could tell me how
do i can make use of it in C#.net ?
beside using any expensive 3rd party control ?
 
Hi noodles,

The .NET Compact Framework does not support interoperating with COM
objects, but you can use platform invoke (PInvoke) to access native DLL
functions that can then call COM objects. ActiveX controls, the Windows
Scripting Host, and callback functions using COM interop are not supported.


This posting is provided "AS IS" with no warranties, and confers no rights.
Use of included script samples are subject to the terms specified at
http://www.microsoft.com/info/cpyright.htm.
--------------------
| From: "noodles" <[email protected]>
| Subject: ActiveX control
| Date: Thu, 24 Jul 2003 09:58:41 +0800
| Lines: 5
| X-Priority: 3
| X-MSMail-Priority: Normal
| X-Newsreader: Microsoft Outlook Express 6.00.2800.1158
| X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1165
| Message-ID: <#[email protected]>
| Newsgroups: microsoft.public.dotnet.framework.compactframework
| NNTP-Posting-Host: 202.172.48.146
| Path: cpmsftngxa06.phx.gbl!TK2MSFTNGP08.phx.gbl!TK2MSFTNGP09.phx.gbl
| Xref: cpmsftngxa06.phx.gbl
microsoft.public.dotnet.framework.compactframework:29046
| X-Tomcat-NG: microsoft.public.dotnet.framework.compactframework
|
| I have a activeX control written in managed code. Anyone could tell me how
| do i can make use of it in C#.net ?
| beside using any expensive 3rd party control ?
|
|
|
 
Back
Top