Chris G
Chris G

Reputation: 479

Click Once and ActiveX

I have my "clickonce" windows form app working except for the installation of a com "ActiveX" element. The users machines have almost no permissions ie they cannot install or even navigate to a website outside one. I am a little stumped as to how include the activex control without registering or installing it. Has anyone else ran into this issue?

Upvotes: 1

Views: 746

Answers (1)

user132710
user132710

Reputation: 83

You can do a registration-free load of your COM DLL using a manifest file. See http://msdn.microsoft.com/en-us/magazine/cc188708.aspx#S1 for more info.

Edit:
The link seems to be dead. Here is a registration-free activation of COM components MSDN walk-through. There is also registration-free activation of .NET-based components MSDN walk-through.

Upvotes: 1

Related Questions