A family of Microsoft relational database management systems designed for ease of use.
First, youu need to understand you don't have fields on a form, you have controls that may or may not be bound to fields in a table. This is a subtle but important distinction.
- In both the On Current event of the form and the After Update event of the DOB control you would include a line of code like:
If Me.datecontrol < #1/1/91# Then
Me.othercontrol.Visible = True
Else
Me.othercontrol.Visible = False
End If
This could be shortened to:
Me.othercontrol.Visible = Me.datecontrol <#1/1/91#
- To allow a field to have data entered, they need to be bound to a field in a table.
3. same answer as 2