I really have not worked too much with form timers and so I'd like to run my idea by the experts, and if you guys don't mind giving me some feedback I'd really appreciate it.
I currently have a form with lots of clients and when a user calls a client or emails, etc, an 'action' is recorded in the actions table. Now the user can create a 'future action' where he will write the 'action' and specify the date and time as a date some time in the future. At that time I need a form to pop up to remind them that the 'future action' is to be done.
Now, this is my thinking. I record the 'future action' in the actions table as if it were a regular action (it has all the same information except that the date is a later date). I create another column in the table called reminders, which is a boolean.
Now, I have a form timer running. Every 30 seconds it checks the action table. It goes through the column of reminders. Any reminders that are set to true, it checks the date and time. If the date and time is now then it runs the reminder form. The user can either dismiss or snooze. If the user dissmisses then I set the boolean to false. If the user snoozes then I just change the time of the future action.
By the way, in case you are wondering I tried using the Outlook reminders. My boss did not approve, he wants the reminder in your face. He insists that it must be within the program.
I think this whole procedure is pretty simple. The only thing I'm not sure how to do in terms of syntax is the timer.
I currently have a form with lots of clients and when a user calls a client or emails, etc, an 'action' is recorded in the actions table. Now the user can create a 'future action' where he will write the 'action' and specify the date and time as a date some time in the future. At that time I need a form to pop up to remind them that the 'future action' is to be done.
Now, this is my thinking. I record the 'future action' in the actions table as if it were a regular action (it has all the same information except that the date is a later date). I create another column in the table called reminders, which is a boolean.
Now, I have a form timer running. Every 30 seconds it checks the action table. It goes through the column of reminders. Any reminders that are set to true, it checks the date and time. If the date and time is now then it runs the reminder form. The user can either dismiss or snooze. If the user dissmisses then I set the boolean to false. If the user snoozes then I just change the time of the future action.
By the way, in case you are wondering I tried using the Outlook reminders. My boss did not approve, he wants the reminder in your face. He insists that it must be within the program.
I think this whole procedure is pretty simple. The only thing I'm not sure how to do in terms of syntax is the timer.