tags:

views:

243

answers:

2

How to create instance of AxHost abstract class

+1  A: 

You cannot create an instance of an abstract class.

You typically do not use the AxHost class directly. You can use the Windows Forms ActiveX Control Importer (Aximp.exe) to generate the wrappers that extend AxHost.

See http://msdn.microsoft.com/en-us/library/system.windows.forms.axhost.aspx for an example.

Ed Guiness

related questions