Skip to content Skip to sidebar Skip to footer

Automation Server Can't Create Object

I am writing a C# object that I need to be able to access from a javascript application. var util = new ActiveXObject('Namespace.Class'); However, when I attempt to create the ob

Solution 1:

Ok I'm just new to COM. Turns out I did not set com visible to true. Hope this helps someone!

[ComVisible(true)]

Post a Comment for "Automation Server Can't Create Object"