Reputation: 743
Suppose I have meeting 31/1/2011 9.30 and when current time becomes 31/1/2011 9.30 it displays a message: "You have a meeting". How can I do this with VB.NET?
Upvotes: 0
Views: 1130
Reputation: 2796
If you are doing this with the windows based project then add the timer in you form.
And set the fix time for the timer tick say 5 minutes or 10 minutes.
Then in tick event check is there any event has to occur and display the message for that event.
If you are doing this in Web based application.
Then code for application_start in global.asax and create a new thred which check the event to occur at regular interval of time.
Upvotes: 1