This Routine works on my machine running XP but not on my machine running Windows 7. Both machines are running Access 2007. Any Ideas why it won't work on the Windows 7 machine ?
Private Sub EndDate_GotFocus()
If [StartDate] < "03/23/2012" Then
MsgBox " The Date Must Be Greater Than 03/22/2012"
StartDate.SetFocus
End If
End Sub