> So back to my original question: can anyone tell me about writting
> MSOffice
> resident ActiveX controls in C#/VS2008. Is it supported?
> Thanks,
> Siegfried
This has nothing to do with the Version of VS, you simply can't author
ActiveX controls using any of the managed languages, if you need to author
AX controls ,your only option is to use an unmanaged tool like VB6, C++,
Delphi etc...
You can author *user controls* in C# (and any of the other managed
languages), but these are no ActiveX controls. The only "supported" host for
these type of controls is IE.
Willy.
Alvin Bruney [ASP.NET MVP] - 28 Feb 2008 03:02 GMT
As Willy says, the only way forward is managed user controls. Interestingly,
the browser will render it as an 'ActiveX' control but it will run in a
managed sandbox which brings other implications such as security yada yada.
See this link for more info
http://msmvps.com/blogs/alvin/archive/2006/08/03/106622.aspx

Signature
Regards,
Alvin Bruney [MVP ASP.NET]
[Shameless Author plug]
The O.W.C. Black Book, 2nd Edition
Exclusively on www.lulu.com/owc $19.99
-------------------------------------------------------
>> So back to my original question: can anyone tell me about writting
>> MSOffice
[quoted text clipped - 11 lines]
>
> Willy.