does c# allow to create Activex component?

  • Thread starter Thread starter DB
  • Start date Start date
D

DB

Hi Folks,

I want to create Activex component. Can we create it using c#.net or do I
need to create it using vc++?

Thanks in Advanced,
Deepak
 
as per my view Activex component is nothing but activex controls ...
coming to activex controls
here the terminalogy is changed to custom controls....
U can create custom controls using C# but not Activex controls....
but still U can use activex controls (developed in vb 6.0 or vc++) in C#.
and U can use Custom controls(developed in C#) in VB 6.0.
 
hi,
Actvex is not custom control,C# is managed language and has managed code
ActiveX is unmanaged code,C# does not create activeXcontrol all dll's of c#
are managed and has specific information about itself in mainfest, activex
control doesn't provides any info for user only y/n , whether to execute or
not,so they can be harmful.
 
No you can't create ActiveX with .net (c#, vb, managed vc++...). You can
however create class library which can be reused. You can also use any
ActiveX created with old-fashioned tools using a wrapper class.

Fabien
 
Back
Top