Csharp/C Sharp/Office/Office Application

Материал из .Net Framework эксперт
Версия от 11:47, 26 мая 2010; Admin (обсуждение | вклад) (1 версия)
(разн.) ← Предыдущая | Текущая версия (разн.) | Следующая → (разн.)
Перейти к: навигация, поиск

Creating Office Applications

/*
 * C# Programmers Pocket Consultant
 * Author: Gregory S. MacBeth
 * Email: gmacbeth@comporium.net
 * Create Date: June 27, 2003
 * Last Modified Date:
 * Version: 1
 */
using System;
using System.Windows.Forms;
using System.Runtime.InteropServices;
using Word;

namespace Client.Chapter_19___Office_Integration
{
  public class CreatingOfficeApplications
  {
    [STAThread]
    static void Main(string[] args)
    {
      Word.ApplicationClass MyWord = new Word.ApplicationClass();
      MyWord.Visible = true;
      System.Windows.Forms.Application.Run();
    }
  }
}