There both in the same place but I don't really think that should matter. Here is the code I am using :
Code:
Microsoft.Office.Interop.Word.Application oWord = new Microsoft.Office.Interop.Word.Application();
Microsoft.Office.Interop.Word.Document oWordDoc = new Microsoft.Office.Interop.Word.Document();
//Make word visible
oWord.Visible = true;
//Add document object to the word objects document collection
oWordDoc = oWord.Documents.Open(ref oFilename,ref oMissing, ref oTrue, ref oFalse, ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing);