Need some help with a reminder

daybraker

Member
Joined
Jun 30, 2011
Messages
8
Programming Experience
1-3
I am trying to make a reminder, but i can't figure out one thing. Anybody out there knows how?
I would like my reminder to have a function when you select one date it automaticaly adds 2 reminders up to the day of the event. For example if you select the event at date 24 it would automatically add two events at the calendar at the dates 17 and 10.
Thanks for your suggestions
 
myDate.AddDays(-7) will give you the data seven days before myDate. Is that what you're asking for? If you're actually asking how to do the adding then we'd have to know what a reminder actually is, in the specific terms of your app, and what you're adding it to.
 
I am making a windows application, it is basically a calendar with appointment reminder option, all i want to know is how to make two automatic records before the selected date. For example when the date is selected and you put a message, the reminder automatically generates two identical messages, one message one week before the event and the other one two weeks before the event. Thank's for your help.
 
It may be automatic from the user's perspective but, from the code's point of view, there's nothing automatic about it. You have to do it. However you created the first record, you do the same to create the other two records. It's that simple.
 
Back
Top