I want to open a word file saved in my server using \"Microsoft.Office.Interop.Word\". This is my code:
object missing = System.Reflection.Missing.Value;
You need to make sure that the Word application window actually is made visible when automating Word like that:
var applicationWord = new Microsoft.Office.Interop.Word.Application(); applicationWord.Visible = true;