up vote 3 down vote favorite
share [g+] share [fb]

using Microsoft.Office.Interop.Word;

ApplicationClass _application = new ApplicationClass();

Can I get the PID from the Winword.exe process that was lunched by the _application?

I need the PID because with corrupted files, I just cant quit the ApplicationClass, even using this code:

_application.Quit(ref saveFile, ref missing, ref missing);          
System.Runtime.InteropServices.Marshal.ReleaseComObject(_application);
GC.Collect();
GC.WaitForPendingFinalizers();

I cant search for the winword.exe process and kill it, because I will have several and I don't know which one to kill. If I can get a PID for each ApplicationClass, I could just kill the correct winword.exe process that is giving me troubles to quit.

Thanks.

link|improve this question

57% accept rate
feedback

5 Answers

up vote 1 down vote accepted

Here is how to do it.

//Set the AppId
string AppId = ""+DateTime.Now.Ticks(); //A random title

//Create an identity for the app

this.oWordApp = new Microsoft.Office.Interop.Word.ApplicationClass();
this.oWordApp.Application.Caption = AppId;
this.oWordApp.Application.Visible = true;

///Get the pid by for word application
this.WordPid = StaticMethods.GetProcessIdByWindowTitle(AppId);

while ( StaticMethods.GetProcessIdByWindowTitle(AppId) == Int32.MaxValue) //Loop till u get
{
    Thread.Sleep(5);
}

this.WordPid = StaticMethods.GetProcessIdByWindowTitle(AppId);


///You canh hide the application afterward            
this.oWordApp.Application.Visible = false;

string this.oWordApp = new Microsoft.Office.Interop.Word.ApplicationClass();
this.oWordApp.Application.Caption = AppId;
this.oWordApp.Application.Visible = true;
///Get the pid by 
this.WordPid = StaticMethods.GetProcessIdByWindowTitle(AppId);

while ( StaticMethods.GetProcessIdByWindowTitle(AppId) == Int32.MaxValue)
{
    Thread.Sleep(5);
}

this.WordPid = StaticMethods.GetProcessIdByWindowTitle(AppId);

this.oWordApp.Application.Visible = false; //You Can hide the application now

/// <summary>
/// Returns the name of that process given by that title
/// </summary>
/// <param name="AppId">Int32MaxValue returned if it cant be found.</param>
/// <returns></returns>
public static int GetProcessIdByWindowTitle(string AppId)
{
   Process[] P_CESSES = Process.GetProcesses();
   for (int p_count = 0; p_count < P_CESSES.Length; p_count++)
   {
        if (P_CESSES[p_count].MainWindowTitle.Equals(AppId))
        {
                    return P_CESSES[p_count].Id;
        }
   }

    return Int32.MaxValue;
}
link|improve this answer
@Mmyikka can you post StaticMethods class? – BrunoLM Nov 25 '11 at 18:27
feedback

The usual way to get it is to change Word's title to something unique and hop through the top-level window list until you find it (EnumWindows).

link|improve this answer
feedback

No, unfortunately there is no way to associate an instance of ApplicationClass with a running process of word.

Why do you need to kill the instance of word? Couldn't you just ask it to close all of it's documents and then simply stop using that instance? If you remove all references to the class eventually the GC will kick in and take down the COM server.

link|improve this answer
I just can't close the document because it is not opened yet. The document is corrupted so a window dialog appears waiting for a human intervention. However, I use the code in a service, and I open thousands of word documents, and a human intervention is impossible. I investigate a little more, and Excel ApplicationClass have a Hwnd. With: [DllImport("user32.dll")] static extern int GetWindowThreadProcessId(int hWnd, out int lpdwProcessId); I can get the PID. But Word ApplicationClass doesn't have a Hwnd... What a shame... – Ricardo May 2 '09 at 15:40
feedback

http://www.codekeep.net/snippets/7835116d-b254-466e-ae66-666e4fa3ea5e.aspx

///Return Type: DWORD->unsigned int ///hWnd: HWND->HWND__* ///lpdwProcessId: LPDWORD->DWORD* [System.Runtime.InteropServices.DllImportAttribute( "user32.dll", EntryPoint = "GetWindowThreadProcessId" )] public static extern int GetWindowThreadProcessId ( [System.Runtime.InteropServices.InAttribute()] System.IntPtr hWnd, out int lpdwProcessId );

private int _ExcelPID = 0; Process _ExcelProcess;

private Application _ExcelApp = new ApplicationClass(); GetWindowThreadProcessId( new IntPtr(_ExcelApp.Hwnd), out _ExcelPID ); _ExcelProcess = System.Diagnostics.Process.GetProcessById( _ExcelPID );

...

_ExcelProcess.Kill();

link|improve this answer
feedback

hi
I met the problem which was the same to you.
There maybe something error in the word file,as a result, when you open the file with the method Word.ApplicationClass.Documents.Open(),there will be a dialog shown and the process will be hang.
Please use Word.ApplicationClass.Documents.OpenNoRepairDialog() instead, i found i fix the problem by it.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.