I have a reminders table in my apps database
FieldName = 'id'
FieldName = 'title'
FieldName = 'description'
FieldName = 'start_date'
FieldName = 'start_time'
FieldName = 'end_date'
FieldName = 'end_time'
FieldName = 'repeat' (true/false)
FieldName = 'occurs' (Integer = 1-Daily, 2-Weekly, 3-Monthy, 4-Annually)
FieldName = 'completed" (true/False)
Is there a way to use a TTimer to display the title and description of the reminder whenever the event occurs? If so, please explain in code/seudo code, or text.
a reminder is either a onetime – or – re-occurring event
if one time (occurs = 1 daily) , the date and time is stored in the Start_Date & Start Time
The reminder should display at that time. After displayed, table field “Completed” is set to true.
if re-occurring, the date and time is stored in the Start_Date & Start Time
and the End Date and End Time is stored. The reminder should display at that day and time, each day (1), week (2), month(3), or year(4)
If daily, reminder should display at that time every day, until end date is reached
If weekly, reminder should display at that time, on that particular day (of each week), until end date is reached
If monthly, reminder should display at that time, on that particular day (of each month), until end date is reached
If Annually, reminder should display at that time, on that particular day (of each year), until end date is reached
when end date is reached, Completed is updated with True
thanks, i hope this is easily do-able with out any additional components or libraries
So, i couldn’t figure out how to post all the code, but here is the main TTimer Event