I\'m running into the classic scenario where, when creating Word COM objects in .NET (via the Microsoft.Office.Interop.Word assembly), the WinWord process won\'t exit even t
I got the same problema when i was doing it:
object missing = System.Reflection.Missing.Value;
wordApplication.Quit(ref missing, ref missing, ref missing);
I solved this way:
object objFalse = false;
wordApplication.Quit(ref objFalse, ref objFalse, ref objFalse);
Don't ask me why, automating office is an adventure :)