Combo Box problem

  • Thread starter Thread starter TBird
  • Start date Start date
T

TBird

I have a combo box on a form with look up values assigned-"SHIP METH".
The field is for mode of shipment so the look up values are: UPS,
FEDEX, USPS, and Other. If "Other" is selected, I want a window to pop
up instructing the user to define "Other" in a text box below. How do I
do this?
 
Make a form (data entry type) to insert new methods to
your methods table.
Make a macro which opens this form conditionally (if the
combo box value is "Other"), and which runs on the On
Change event of the combo box in the original form.
-----Original Message-----
I have a combo box on a form with look up values assigned- "SHIP METH".
The field is for mode of shipment so the look up values are: UPS,
FEDEX, USPS, and Other. If "Other" is selected, I want a window to pop
up instructing the user to define "Other" in a text box below. How do I
do this?



------------------------------------------------
 
Make a form (data entry type) to insert new methods to
your methods table.
Make a macro which opens this form conditionally (if the
combo box value is "Other"), and which runs on the On
Change event of the combo box in the original form.
-----Original Message-----
I have a combo box on a form with look up values assigned- "SHIP METH".
The field is for mode of shipment so the look up values are: UPS,
FEDEX, USPS, and Other. If "Other" is selected, I want a window to pop
up instructing the user to define "Other" in a text box below. How do I
do this?



------------------------------------------------
 
Back
Top