Previous Values appearing in Combo and Text Boxes - Need them blan

  • Thread starter Thread starter DeAnna
  • Start date Start date
D

DeAnna

Hello,
I need all of my combo and text boxes to be blank when a form loads. They
then populate when the user makes a selection from the combo box. However,
the values which were entered the previous time the form was opened are
automatically populating the boxes (but only in some cases....) I tried
using the following code on Form Load, but it would not allow me to change
the values.

me.cmbAppNo.defaultvalue=""
me.cmbAppNo.defaultvalue=Null
cmbAppNo.defaultvalue=""
cmbAppNo.defaultvalue=Null

I know I tried a few other combinations as well, but nothing seems to be
working.


Any suggestions?
 
It is not the default value you want to change, it is the value in the
combos, right?
me.cmbAppNo=Null
 
Back
Top