I am having problems with creating a reminder date in Outlook from Access. The time is working ok but the date goes from 11-29-2010 to 12-29-2010 when it gets to Outlook.
I found this answer in a thread from Ian:
When I used it, the time comes through ok but the date does not. Can anybody explain what I did wrong? Here is my code:
Note I did a debug.print on Forms!frmShowAddOutlookTask!txtReminderDate and it showed me the date I enetered on the form as 11-29-2010. But Outlook shows it as 12-29-2010. The code is in a module.
Thanks for the help,
Richard
I found this answer in a thread from Ian:
Code:
.ReminderTime = me!ApptDate & " " & me!ApptTime
When I used it, the time comes through ok but the date does not. Can anybody explain what I did wrong? Here is my code:
Code:
.ReminderTime = Forms!frmShowAddOutlookTask!txtReminderDate & " " & Forms!frmShowAddOutlookTask!txtReminderTime
Note I did a debug.print on Forms!frmShowAddOutlookTask!txtReminderDate and it showed me the date I enetered on the form as 11-29-2010. But Outlook shows it as 12-29-2010. The code is in a module.
Thanks for the help,
Richard