Exemplo n.º 1
0
        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;
            }
        }
Exemplo n.º 2
0
 private void simpleButton6_Click(object sender, EventArgs e)
 {
     _frmBTS.Show();
     this.Hide();
 }
Exemplo n.º 3
0
 private void simpleButton5_Click_1(object sender, EventArgs e)
 {
     Cursor.Current = Cursors.WaitCursor;
     _frmBTS.Show();
     Cursor.Current = Cursors.Default;
 }