Creating pop-up for next review date

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I need to programme my marketing database to create a pop-up to appear on
certain dates for records to be reviewed, can I do this in Access 2000? if
so, how???
 
I'm not sure what you mean. Do you want to open a popup when you start the
database on a particular date?

Put this code in you startup-form:
if date()="31-12-2006" then
docmd.openform "frm_Popup"
endif

Set the popup property of the popup form to yes.
 
Back
Top