I have a form with 4 boxes:
Box 1 has one of 3 values in it.
Box 2 is a textbox.
Box 3 is a combobox.
Box 4 is a listbox.
The value in Box 1 determines which of Box 2-4 becomes visible.
I have the code written/tested already:
However, I'm not sure which event to put the code into so that the form resets as the user goes from one record to the next.
Can I get help with this.
Also, does anyone know of a good website to go to where the event types are described in simple terms for mongos like myself?
Box 1 has one of 3 values in it.
Box 2 is a textbox.
Box 3 is a combobox.
Box 4 is a listbox.
The value in Box 1 determines which of Box 2-4 becomes visible.
I have the code written/tested already:
Code:
If Me.Box1.Value = "A" Then Me.Box2.Visible = True
However, I'm not sure which event to put the code into so that the form resets as the user goes from one record to the next.
Can I get help with this.
Also, does anyone know of a good website to go to where the event types are described in simple terms for mongos like myself?