Esempio n. 1
0
 private void BusTableForm_KeyDown(object sender, KeyEventArgs e)
 {
     if (e.KeyCode == Keys.Enter && GridViewBusTable.IsFilterRow(GridViewBusTable.FocusedRowHandle))
     {
         executeQuery();
     }
 }
Esempio n. 2
0
 private void gridView1_CellValueChanging(object sender, DevExpress.XtraGrid.Views.Base.CellValueChangedEventArgs e)
 {
     if (!GridViewBusTable.IsFilterRow(e.RowHandle))
     {
         modified = true;
     }
     labelControl1.Text = DateTime.Today.ToShortDateString();
     labelControl2.Text = username;
 }