address book programe with reminders

sameera

Member
Joined
Jun 16, 2005
Messages
20
Programming Experience
Beginner
Hi all, I'm developing an address book programe and i need to add a module that the user can bookmark their future activities.

i want to make a module that will notify user in advance about his future event which was recorded in the database. This programe will always run with OS.

Can anyone help me on how to implement this or can you plase tell me what are the useful links for this.

what are the controls that i have to use so that i can have a search on them

regards,

sameera
 
Last edited by a moderator:
well basically what you need to do is have a way to "remember" the locations in the DB of the events the user wants

all i can suggest is building a list of record id's (probably the primary key) in a collection or an array (i'd suggest using a collection) and when it came time to display the event all you need to do is grab the record (that you've saved in the collection) from the db and display it to the user

as for reminders there's several threads on here about how to make/use the msn-messenger-like popup windows down by the clock
 
Back
Top