Example #1
0
 private void cboUser_KeyPress(object sender, KeyPressEventArgs e)
 {
     GeneralMethods.AutoComplete(this.cboUser, e, true);
 }
Example #2
0
 private void cboParty_KeyPress(object sender, KeyPressEventArgs e)
 {
     GeneralMethods.AutoComplete(this.cboParty, e, false);
 }
Example #3
0
 private void cboAppointmentNo_KeyPress(object sender, KeyPressEventArgs e)
 {
     GeneralMethods.AutoComplete(cboAppointmentNo, e, true);
 }
Example #4
0
 private void cboName_KeyPress(object sender, KeyPressEventArgs e)
 {
     GeneralMethods.AutoComplete(cboName, e, true);
 }
Example #5
0
 private void cboCompany_KeyPress(object sender, KeyPressEventArgs e)
 {
     GeneralMethods.AutoComplete(cboCompany, e, false);
 }