private void txtBANK_KeyUp(object sender, KeyEventArgs e)
 {
     if (!string.IsNullOrEmpty(txtBANK.Text)) return;
     if (e.KeyCode == Keys.Enter)
     {
         VIEW.FormVIEWBANK frm = new LOGISTICMANAGAMENTSYSTEM.VIEW.FormVIEWBANK(null, null, this, 3);
         frm.ShowDialog();
     }
 }
예제 #2
0
 private void txtBANK_KeyUp(object sender, KeyEventArgs e)
 {
     if (!string.IsNullOrEmpty(txtBANK.Text))
     {
         return;
     }
     if (e.KeyCode == Keys.Enter)
     {
         VIEW.FormVIEWBANK frm = new LOGISTICMANAGAMENTSYSTEM.VIEW.FormVIEWBANK(null, null, this, 3);
         frm.ShowDialog();
     }
 }