show me a reminder?

CarlosP

New member
Joined
Oct 19, 2017
Messages
1
Programming Experience
Beginner
Buenas Tardes I would like to know how create an application where I can make this (reminder date according dates of DB of access) somebody could ltell me? I would like that when I programate a next date, when the data arrive a message show me a reminder. Please somebody could help me?
 
Get a DateTime value for the next reminder. Subtract the current DateTime from it to get a TimeSpan that represents the time until the reminder. Create a Timer and set its Interval based on that time. Note that the Interval can handle values that represent up to just over 24 days. In the Tick event handler for the Timer, display your message.
 
Back
Top