Fill text box based on combo box selection

S

Scott

Hello-

I have a form called frmInquiries. There is a combo box called
cboInqStatus and a text box called txtResolveDate. The two values in
the combo box are "Active" and "Completed". >What I want to do is to
have txtResolveDate filled with the current date once the user changes
the combo box from "Active" to "Completed". Any ideas on this? Thanks
in advance for the help.
 
D

Damon Heron

Actually, if you are using a combobox for only two items, that seems like
overkill. How about option buttons or a checkbox? You could used
essentially the same code but you form might be a little cleaner looking and
the user would not have to dropdown the combobox to make a selection.
 
Top