howto launch my application like MS-Office applications do using automation.
Posted
by Alan
on Stack Overflow
See other posts from Stack Overflow
or by Alan
Published on 2010-05-02T13:38:46Z
Indexed on
2010/05/02
13:48 UTC
Read the original article
Hit count: 171
c#
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
© Stack Overflow or respective owner