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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top