Getting ready for the initial push.
[Widgit.git] / Form1.cs
blob916648f4023491bede9864d2c3184c8b17dbdfde
1 using System;
2 using System.Collections.Generic;
3 using System.ComponentModel;
4 using System.Data;
5 using System.Drawing;
6 using System.Text;
7 using System.Windows.Forms;
8 using System.Diagnostics;
9 namespace Gitrdone
11 public partial class Form1 : Form
13 Process m_shell = new Process();
14 public Form1()
16 InitializeComponent();
17 ProcessStartInfo si = new ProcessStartInfo();
18 si.CreateNoWindow = true;
19 si.UseShellExecute = true;