S
Secret Squirrel
I have a splash screen that shows for 5 seconds when the DB is open. What I'm
trying to do is have it show a message when it's a certain time of day. I
have this set up in the open event of the form but it doesn't seem to be
working. Is this the correct syntax to have it look at the time in my control
called "Time1"?
If Me.Time1 > "11:59" And Me.Time1 < "16:00" Then
Me.GoodAfternoonMessage.Visible = True
Else
End If
trying to do is have it show a message when it's a certain time of day. I
have this set up in the open event of the form but it doesn't seem to be
working. Is this the correct syntax to have it look at the time in my control
called "Time1"?
If Me.Time1 > "11:59" And Me.Time1 < "16:00" Then
Me.GoodAfternoonMessage.Visible = True
Else
End If