Erasing Specific Fields

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
 
S

Sandra Daigle

Use the AfterUpdate event of the combo and then just assign the null value
to the appropriate fields:

me.text1=null
me.text2=null
 
Top