private void ServiceDepartment_atAfterEditClick(object source, EditClickEventArgs e)
 {
     try
     {
         txtCode.Focus();
     }
     catch (Exception ex)
     {
         ExceptionManager.Publish(ex);
         atMessageBox.Show(ex, ENOperation.AfterEdit);
     }
 }
Exemple #2
0
 private void FrmServiceInsuranceView_atAfterEditClick(object source, EditClickEventArgs e)
 {
     try
     {
         txtInsuranceCode.Focus();
     }
     catch (Exception ex)
     {
         ExceptionManager.Publish(ex);
         atMessageBox.Show(ex, ENOperation.AfterEdit);
     }
 }