Example #1
0
        public void Run(string filename, string current_folder)
        {
            Process proc = new Process();

            proc.StartInfo.FileName = current_folder.Replace("root:\\\\", root_path + "\\") + filename;
            proc.Start();
            parent.Stop();
            proc.WaitForExit();
            parent.Start();

            return;
        }
Example #2
0
 void ShowForm(object sender, EventArgs e)
 {
     gpd_form.Start();
 }