How To Sign ActiveX Control

  • Thread starter Thread starter Guest
  • Start date Start date
I build ActiveX Control using C# ,i wondering how to signed the generated
How do you build an ActiveX in C#?
I didn't think that was possible.

Greetings,
Wessel
 
How do you build an ActiveX in C#?
But that's just a COM object; not an ActiveX control? An ActiveX control
has a user interface and implements IOleObject, IOleControl, and more
interfaces like that.

Anyway control signing is done using Authenticode:
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnauth/html/msdn_codewp.asp

I really don't know if you can sign a C# assembly that way.

Greetings,
Wessel
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top