Пример #1
0
        private void bunifuThinButton21_Click(object sender, EventArgs e)
        {
            Form_Home f = new Form_Home();

            f.Show();
            this.Close();
        }
 private void bunifuThinButton21_Click(object sender, EventArgs e)
 {
     //if (P_Trait_Info.Visible)
     //{
     //    P_Patient.BringToFront();
     //}
     //else
     {
         P_Patient.SendToBack();
         Form_Home h = new Form_Home();
         h.Show();
         this.Close();
     }
 }
Пример #3
0
        private void bunifuThinButton29_Click(object sender, EventArgs e)
        {
            try
            {
                ClassUser d  = new ClassUser();
                DataTable dt = new DataTable();
                if (bunifuMaterialTextbox12.Text == "" || bunifuMaterialTextbox11.Text == "")
                {
                    MessageBox.Show("Please Entre your informations");
                }
                else
                {
                    dt = d.login(bunifuMaterialTextbox12.Text, bunifuMaterialTextbox11.Text);
                    if (dt.Rows.Count > 0)
                    {
                        d.updateLogin(bunifuMaterialTextbox12.Text, bunifuMaterialTextbox11.Text);
                        Form_Home m = new Form_Home();
                        m.bunifuCustomLabel3.Text = dt.Rows[0]["email"].ToString();
                        m.bunifuCustomLabel5.Text = dt.Rows[0]["roleUser"].ToString();
                        m.bunifuCustomLabel8.Text = "Dr." + dt.Rows[0]["name"].ToString();
                        m.Show();
                        this.Hide();

                        Properties.Settings.Default.Email = dt.Rows[0]["email"].ToString();
                        Properties.Settings.Default.Role  = dt.Rows[0]["roleUser"].ToString();
                        Properties.Settings.Default.Save();
                    }
                    else
                    {
                        MessageBox.Show("error for your informations");
                    }
                }
            }
            catch (Exception ex)
            {
                MessageBox.Show(ex.Message);
            }
        }
Пример #4
0
        private void timer1_Tick(object sender, EventArgs e)
        {
            try
            {
                ClassUser  d  = new ClassUser();
                DataTable  dt = new DataTable();
                Form_Login g  = new Form_Login();

                dt = d.startLoading();
                if (dt.Rows.Count > 0)
                {
                    d.updateLogin(g.bunifuMaterialTextbox12.Text, g.bunifuMaterialTextbox11.Text);
                    Form_Home m = new Form_Home();
                    m.bunifuCustomLabel3.Text = dt.Rows[0]["email"].ToString();
                    m.bunifuCustomLabel5.Text = dt.Rows[0]["roleUser"].ToString();
                    m.bunifuCustomLabel8.Text = "Dr." + dt.Rows[0]["name"].ToString();
                    m.Show();
                    this.Hide();
                    Properties.Settings.Default.Email = dt.Rows[0]["email"].ToString();
                    Properties.Settings.Default.Role  = dt.Rows[0]["roleUser"].ToString();
                    Properties.Settings.Default.Save();
                    timer1.Enabled = false;
                }
                else
                {
                    Form_Login l = new Form_Login();
                    l.Show();
                    timer1.Enabled = false;
                    this.Hide();
                }
            }
            catch (Exception ex)
            {
                MessageBox.Show(ex.Message);
            }
        }