private void simpleButton2_Click(object sender, EventArgs e) { this.Hide(); string Caption = "BTS by Month"; switch (Lang) { case "Vn": Caption = "BTS theo tháng"; break; default: Caption = "BTS by Month"; break; } Form fc = Application.OpenForms["FRM_SMT_BTS"]; if (fc != null) { //fc.Close(); fc.Show(); ////f.TopMost = true; } else { FRM_SMT_BTS f = new FRM_SMT_BTS(Caption, 1, line, mline, Lang); f.Show(); //f.TopMost = true; } }
private void simpleButton6_Click(object sender, EventArgs e) { _frmBTS.Show(); this.Hide(); }
private void simpleButton5_Click_1(object sender, EventArgs e) { Cursor.Current = Cursors.WaitCursor; _frmBTS.Show(); Cursor.Current = Cursors.Default; }