I am trying to run an existing MS Access database (Access 2010) from Silverlight 4 OOB with elevated privileges. I keep getting the error. I can create a new Access application using the CreateObject keyword, but when I try to start an existing one, I get an error: "The object was not found registered for the specified ProgID."
Any help is appreciated. Here is the code I'm using:
string sMSAccess = "C:\\Users\\storltx\\Documents\\SL4Demo.accdb";
dynamic MSAccess = ComAutomationFactory.GetObject(sMSAccess);
MSAccess.Visible = true;
source
share