示例#1
0
        private void button5_Click_1(object sender, EventArgs e)
        {
            var pleaseWait = new frm_PleaseWait();

            pleaseWait.Show();
            Application.DoEvents();
            Cursor.Current = Cursors.WaitCursor;
            var myForm = new frm_Supplier();

            myForm.Show();
            pleaseWait.Hide();

            this.Hide();
        }
示例#2
0
        private void newSupplierToolStripMenuItem_Click(object sender, EventArgs e)
        {
            frm_Supplier frm = new frm_Supplier();

            frm.ShowDialog();
        }