How to open Microsoft Word with button click in C#

1 Answer

0 votes
using System;
using System.Diagnostics;
using System.Windows.Forms;

namespace WindowsFormsApplication1
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        private void button1_Click(object sender, EventArgs e)
        {
            Process.Start("WINWORD.EXE"); 
        }
    }
}



answered Feb 11, 2015 by avibootz

Related questions

1 answer 207 views
1 answer 178 views
178 views asked Aug 10, 2018 by avibootz
1 answer 189 views
189 views asked Aug 10, 2018 by avibootz
1 answer 212 views
212 views asked Aug 10, 2018 by avibootz
1 answer 196 views
...