using System; using System.Windows.Forms; using System.Runtime.InteropServices; using Word; class MainClass { [STAThread] static void Main(string[] args) { Word.ApplicationClass MyWord = new Word.ApplicationClass(); MyWord.Visible = true; System.Windows.Forms.Application.Run(); } }