Lancer une application office en C#

Author:

Lancer,une,application,office,en,C#
{filelink=15060}

using System;
using System.Windows.Forms;
using System.Runtime.InteropServices;
using Word;

namespace Client.Chapter_19___Office_Integration
{
  public class RunActiveObject
  {
    [STAThread]
    static void Main(string[] args)
    {
      Word._Application MyWord = (Word._Application)Marshal.GetActiveObject("Word.Application");

      MyWord.PrintPreview = true;
      System.Windows.Forms.Application.Run();
    }
}

Leave a Reply

Your email address will not be published. Required fields are marked *