PDA

View Full Version : add to a combo box



ProteanBeing
05-02-2008, 11:04 AM
Hi
In a form I have a combo box (cboOrderType) and a button (cmbAddOrderType). The button opens a small form to add another OrderType to the list. My question is how do I get the combo box to requery after a OrderType is added?

JimmyTheHand
05-06-2008, 03:30 AM
Try
cboOrderType.Requery
or maybe
Me.Repaint
where "Me" refers to the parent form.

Jimmy