About ActiveX control

  • Thread starter Thread starter sekar.rangasamy
  • Start date Start date
S

sekar.rangasamy

iam triying to create one ActiveX control in c#.net 2005(ie,c# 2.0) ,,,
in this one iam facing problem adding dll files to that
ActiveXcontrol,,,,

wat is the solution for this problem,,,
any one facing this problem plz help me 2 fix this bug,,

thanks and regrads
sekar
 
1. On .NET platform, you do not create ActiveX control, which is old COM
technology. It is Win Form User Control.
2. You do not add dll to c User Control. Rather, you start a Class Library
project (dll) or Windows App project (exe) and then add one or more User
Controls into the project. In other work, your User Controls are contained
in either a DLL or EXE prohect.
 
Back
Top