示例#1
0
        private void button1_Click_1(object sender, EventArgs e)
        {
            FrmAppConfig sa = new FrmAppConfig();

            sa.Show();
            this.Hide();
        }
示例#2
0
 private void Login_KeyDown(object sender, KeyEventArgs e)
 {
     if (e.KeyCode == Keys.F12)
     {
         FrmAppConfig nn = new FrmAppConfig();
         nn.Show();
         this.Hide();
     }
 }
示例#3
0
        private void linkLabel1_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
        {
            // change the value of the _verify for now reading the text file(.ini)
            FrmAppConfig._verify = "2";
            // back to the frmappconfig to modify connection
            this.Hide();
            FrmAppConfig f1 = new FrmAppConfig();

            f1.ShowDialog();
        }