Q
Question Boy
Below is an extra of a function I am using to update a task item in Outlook
With olTask
.Subject = sSubject 'Reminder's subject line
.Body = sBody 'Reminder's body text
.ReminderSet = True 'Set a reminder or not
.ReminderTime = Format(DueDt, "mm/dd/yyyy") & " 09:00 AM" 'Reminder
date and time
.DueDate = DueDt 'Remindeer's due date
.Save 'Actually save the new created
reminder
End With
My question is, although both the remindertime and duedate are based on the
same variable, why does it not set the remindertime properly? If let's say
the due date is 03/05/2009 it sets the remindertime to /03/07/2009 9:00AM. i
have done numerous test I cannot find a patern to the offset, sometimes
ahead, other time after...
Anyone have an explanation for this weird occurance?
Thank you
QB
With olTask
.Subject = sSubject 'Reminder's subject line
.Body = sBody 'Reminder's body text
.ReminderSet = True 'Set a reminder or not
.ReminderTime = Format(DueDt, "mm/dd/yyyy") & " 09:00 AM" 'Reminder
date and time
.DueDate = DueDt 'Remindeer's due date
.Save 'Actually save the new created
reminder
End With
My question is, although both the remindertime and duedate are based on the
same variable, why does it not set the remindertime properly? If let's say
the due date is 03/05/2009 it sets the remindertime to /03/07/2009 9:00AM. i
have done numerous test I cannot find a patern to the offset, sometimes
ahead, other time after...
Anyone have an explanation for this weird occurance?
Thank you
QB