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

ruby - When to use an ORM (Sequel, Datamapper, AR, etc.) vs. pure SQL for querying -

php - PHPDoc: @return void necessary? -

c++ - Convert big endian to little endian when reading from a binary file -