コード例 #1
0
        private void btnPraysName_Click(object sender, EventArgs e)
        {
            HiloiNames hn = new HiloiNames();

            hn.Show();
            //AdminLogin al = new AdminLogin();
            //al.Show();
        }
コード例 #2
0
ファイル: AdminLogin.cs プロジェクト: shaylami/Synagogue
        private void CheckUserPass()
        {
            string Password = "******";

            if (tbPassword.Text != Password)
            {
                MessageBox.Show("!!!!! מצטערים אנא בדוק שם משתמש או סיסמא");
                this.Hide();
            }
            else
            {
                HiloiNames hn = new HiloiNames();
                hn.Show();
                this.Hide();
            }
        }