Пример #1
0
 public frmPos(frmSecurity frm)
 {
     InitializeComponent();
     lblDate.Text    = DateTime.Now.ToLongDateString();
     con             = new MySqlConnection(dbCon.getConnection());
     this.KeyPreview = true;
     f = frm;
     NotifyCriticalItems();
 }
Пример #2
0
 private void button9_Click(object sender, EventArgs e)
 {
     if (MessageBox.Show("LOGOUT APPLICATION?", "CONFIRM", MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.Yes)
     {
         this.Hide();
         frmSecurity frm = new frmSecurity();
         frm.ShowDialog();
     }
 }
Пример #3
0
 private void btnClose_Click(object sender, EventArgs e)
 {
     if (dataGridView1.Rows.Count > 0)
     {
         MessageBox.Show("UNABLE TO LOGOUT. PLEASE CANCEL THE TRANSACTION", "WARNING", MessageBoxButtons.OK, MessageBoxIcon.Warning);
         return;
     }
     if (MessageBox.Show("LOGOUT APPLICATION?", "LOGOUT", MessageBoxButtons.YesNo, MessageBoxIcon.Information) == DialogResult.Yes)
     {
         this.Hide();
         frmSecurity frm = new frmSecurity();
         frm.ShowDialog();
     }
 }