public static frmProgress Instance()
        {
            if (sForm == null)
            {
                sForm = new frmProgress();
            }

            return(sForm);
        }
Exemple #2
0
        private static void showProgressForm()
        {
            frmProgress sForm = new frmProgress();

            sForm.ShowDialog();
        }