![]() |
If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below. |
|
|
Thread Tools | Search this Thread | Display Modes |
#1
|
|||
|
|||
![]()
The following code fragment comes from he
http://www.microsoft.com/technet/scr.../tips0908.mspx Const olTaskItem = 3 Set objOutlook = CreateObject("Outlook.Application") Set objTask = objOutlook.CreateItem(olTaskItem) objTask.Subject = "Script Center Master Plan" objTask.Body = "Final report for Script Center master plan." objTask.ReminderSet = True objTask.ReminderTime = #12/12/2007 09:00 AM# objTask.DueDate = #12/12/2007 10:00 PM# objTask.Save It successfully creates an Outlook Task Item. Unfortunately it appears to have major flaw: The Due Time and the ReminderTime can be set for appointments that are in the past or on the current day but not for those that are in the future. For future dates it gets set to the Outlook "Working Day" default (e.g. to 08:00). Does anyone know how to get around this problem? Or how to create a "Reminder" instead of a "Task". I'm using Outlook 2003 |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Thread Starter | Forum | Replies | Last Post |
Creating a task in Outlook from Access | Blogd_Node | Outlook and VBA | 4 | February 3rd 07 04:38 AM |
Creating a script to backup pst? | Rob | Outlook - General Queries | 3 | January 26th 07 09:07 AM |
Outlook 2k3 Script: Creating Borders in Excel | news.microsoft.com | Outlook and VBA | 1 | November 14th 06 05:19 PM |
Outlook 2k3 Script: Exporting Task item to Excel | news.microsoft.com | Outlook and VBA | 5 | November 8th 06 04:01 PM |
Outlook 2003 Script: How to create an Id for task | news.microsoft.com | Outlook and VBA | 6 | October 20th 06 10:16 PM |