Clearing text box

  • Thread starter Thread starter mju
  • Start date Start date
M

mju

E.g

1) A user select company name from CompanyNamecbo.-->I have this working

2) CompanyNamecbo returns contact names in Contact_names_Cboà I have this
working

3) User selects name from Contact_names_Cbo and contact information will
appear in different text boxes. -à I have this working

4) table is updated with any new changesà I have this working



The problem that I am having is that the values in the text boxes does not
clear up if there are no contact names when a company is selected.
 
In the after update or the after insert event of the form, set the textbox
values to an empty string:

Me.txtWhatever = ""
Me.txtAnotherOne = ""
 
Back
Top