It sounds like these text boxes are used to display values, and are not
bound (i.e., don't read/save values). If so, you'll need to tell the form
that the values in those text boxes are null when the combo box changes (you
handle this with the Change event (I'd use the AfterUpdate, but ?!), and/or
when the record changes (e.g., a new record).
One approach might be to add code to the form's OnCurrent event that sticks
a null in each of these.
Regards
Jeff Boyce
Microsoft Office/Access MVP
>I have a combobox on a form (cboComp_Num) and I have the following code
>that runs with the Change Event for the cbo_Comp_Num:
[quoted text clipped - 13 lines]
> Thanks in advance!
> Anthony
aviscomi - 30 Mar 2007 20:11 GMT
Thanks!
> It sounds like these text boxes are used to display values, and are not
> bound (i.e., don't read/save values). If so, you'll need to tell the form
[quoted text clipped - 27 lines]
>> Thanks in advance!
>> Anthony