Trojan,
I guess a key decision here is to identify an appropriate event to get
your "alarm" triggered. Maybe it would be the Open event of a form
which always opens whenever you start the database. Anyway, whatever
the event, you can write a VBA procedure which tests the date against
the current date. Is the date field in question in a table where it is
the only record? If not, how do you know which record to refer to?
Anyway, something like this may be applicable...
If DLookup("[YourDate]","YourTable") < Date Then
MsgBox "Ding Dong", vbExclamation, "Date exceeded"
End If
Please post back with more details if this kind of idea doesn't fit the
bill.
--
Steve Schapel, Microsoft Access MVP
Hi, just started Access and need to find out how to make a date field alarm
when it has gone past it's date. Can anyone help please. I'm pretty basic
so go easy please.