newbie question

B

bengalvfan

I have been put in charge of managing a database and have just started
teaching myself some of the basic and I have a question.

All I want to do is when someone enters a new date or changes the date on a
form to delete the date in another text box on the same form. How would i do
this?

Bengal
 
A

Albert D. Kallal

bengalvfan said:
I have been put in charge of managing a database and have just started
teaching myself some of the basic and I have a question.

All I want to do is when someone enters a new date or changes the date on
a
form to delete the date in another text box on the same form. How would i
do
this?

In the text box with the date, in the after update event, you would place
the follwoign line of code:

me.otherTextBoxName = null

You have to fire up the code editor for the above.....
 
Top