Exemplo n.º 1
0
 void ShowRestoreForm()
 {
     frmrestore main = new frmrestore();
     main.WindowState = FormWindowState.Maximized;
     main.ShowDialog();
 }
Exemplo n.º 2
0
        private void btiTXRestore_Click(object sender, EventArgs e)
        {
            if (activeFrom[14] == 14)
            {
                activeFrom[14] = 0;
                frmrestore frm = new frmrestore();
                frm.MdiParent = this; //==> form này không dùng chức năng này
                frm.WindowState = FormWindowState.Maximized;
                frm.Show();

            }
            ////frmShow(new frmrestore(),14); ===> DO BỊ LỖI KHI HỘP THOẠI SAVE FILE HIỆN LÊN
            //Thread t = new Thread(new ThreadStart(ShowRestoreForm));
            //ShowRestoreForm();
            //t.Start();
            //this.Dispose();
        }