Auto Reminder

  • Thread starter Thread starter John
  • Start date Start date
J

John

Hi

I want to implement an auto reminder like outlook that pops up at the
specified time. I think there would be some sort of timer that will check
when an appointment is due and pop-up the reminder if needed. The question
is where should I implement the timer code so that it runs regardless of if
any specific form is open or not. If I implement it in a specific form then
it is possible that the user may not have the form open and the reminder may
not pop-up when needed.

Thanks

Regards
 
Hi,

I think you could do it via Form.OnTimer. Don't forget to set up a
TimerInterval. Also, try to combine with Form.Visible - set it to Visible in
OnTimer (Form_Timer).

HTH.

Vlado
 
Back
Top