D danny May 22, 2004 #1 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
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 May 22, 2004 #2 Use the AfterUpdate event of the combo and then just assign the null value to the appropriate fields: me.text1=null me.text2=null
Use the AfterUpdate event of the combo and then just assign the null value to the appropriate fields: me.text1=null me.text2=null