howto launch my application like MS-Office applications do using automation.
- by Alan
I am writing a c# application which references a separate dll which contains all the automation features i am trying to implement such as Application Object Model, doing all this by using delegates and events.
What i want to be able todo is to reference my dll containing the application object model in a different process and for it to automatically launch my application, like MS-Word does when you call its application.
Example:
Microsoft.Office.Interop.Word.Application wordApp = new Microsoft.Office.Interop.Word.Application();
Word object model loads in the WinWord.exe running its own process how can i achieve this as well.
Thanks in advance