I have created a workflow which will write some data into the ms word doc.Perhaps I am getting the following error at the object declaration
Application actionWord = new Application(); ----->throwing error here...
Document actionWordDoc =new Document ();
Object oTemplatePath = "D:\\Templates\\Skills Action Plan.doc";
actionWordDoc = actionWord.Documents.Add(ref oTemplatePath, ref oMissing, ref oMissing, ref oMissing);
actionWord.Visible = true;
actionWordDoc.Activate();
System.Runtime.InteropServices.COMException (0x8001010A):
Creating an instance of the COM component with CLSID {00020906-0000-0000-C000-000000000046} f
rom the IClassFactory failed due to the following error: 8001010a.
I am using interop dlls to complete this requirement.
Thanks, chandra