c# - Problem in ComAutomationFactory.CreateObject -


i tried create object using comautomationfactory.createobject . giving following exception

     "failed create object instance specified progid" 

my application running on oob , has elevated permission.

if (comautomationfactory.isavailable && app.current.haselevatedpermissions) {

                dynamic sample = comautomationfactory.createobject("samplecom.comclass");              } 

where samplecom com application created in c#

i use silverlight 4

only if dll signed can create object using comautomationfactory.createobject


Comments

Popular posts from this blog

List<T>().Add problem C# -

Javascript natural sort array/object and maintain index association -