Erasing Specific Fields

  • Thread starter Thread starter danny
  • Start date Start date
D

danny

How do I create a code that will erase data in specific
fields when I select an option from a drop down menu
within a form
 
Use the AfterUpdate event of the combo and then just assign the null value
to the appropriate fields:

me.text1=null
me.text2=null
 
Back
Top