![]() |
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
|
|||
|
|||
![]()
OutLook 2007.
I'm creating tasks and I want to check off the "send me a status report when this task is complete". So far, i found no property to do it. Any help welcome. |
#2
|
|||
|
|||
![]()
There is no true/false setting like that for code. You have to use the
StatusUpdateRecipients and StatusOnCompletionRecipients strings or set up the Recipients collection of the task item for that. StatusOnCompletionRecipients is the Bcc set of recipients, StatusUpdateRecipients are the Cc recipients. -- Ken Slovak [MVP - Outlook] http://www.slovaktech.com Author: Professional Programming Outlook 2007. Reminder Manager, Extended Reminders, Attachment Options. http://www.slovaktech.com/products.htm "Daniel.C" wrote in message ... OutLook 2007. I'm creating tasks and I want to check off the "send me a status report when this task is complete". So far, i found no property to do it. Any help welcome. |
#3
|
|||
|
|||
![]()
Thanks, but it didn't work. Here is my code :
Set MyOutlook = CreateObject("Outlook.Application") Set myTask = MyOutlook.CreateItem(3) myTask.assign With myTask .Recipients.Add ") .StatusOnCompletionRecipients = "" .StatusOnCompletionRecipients = "" .Display End With Set myTask = Nothing Set MyOutlook = Nothing Can you tell me what's wrong ? TIA There is no true/false setting like that for code. You have to use the StatusUpdateRecipients and StatusOnCompletionRecipients strings or set up the Recipients collection of the task item for that. StatusOnCompletionRecipients is the Bcc set of recipients, StatusUpdateRecipients are the Cc recipients. |
#4
|
|||
|
|||
![]()
Oops.
Set MyOutlook = CreateObject("Outlook.Application") Set myTask = MyOutlook.CreateItem(3) myTask.assign With myTask .Recipients.Add ") .StatusOnCompletionRecipients = "" .StatusUpdateRecipients = "" .Display End With Set myTask = Nothing Set MyOutlook = Nothing TIA Thanks, but it didn't work. Here is my code : Set MyOutlook = CreateObject("Outlook.Application") Set myTask = MyOutlook.CreateItem(3) myTask.assign With myTask .Recipients.Add ") .StatusOnCompletionRecipients = "" .StatusOnCompletionRecipients = "" .Display End With Set myTask = Nothing Set MyOutlook = Nothing Can you tell me what's wrong ? TIA There is no true/false setting like that for code. You have to use the StatusUpdateRecipients and StatusOnCompletionRecipients strings or set up the Recipients collection of the task item for that. StatusOnCompletionRecipients is the Bcc set of recipients, StatusUpdateRecipients are the Cc recipients. |
#5
|
|||
|
|||
![]()
Dim oRecipCC As Outlook.Recipient
Dim oRecipBCC As Outlook.Recipient With myTask ' StatusUpdateRecipients .Set oRecipCC = Recipients.Add ") oRecipCC.Type = olCC oRecipCC.Resolve ' StatusOnCompletionRecipients Set oRecipBCC = Recipients.Add ") oRecipBCC.Type = olBCC oRecipBCC.Resolve .Display End With -- Ken Slovak [MVP - Outlook] http://www.slovaktech.com Author: Professional Programming Outlook 2007. Reminder Manager, Extended Reminders, Attachment Options. http://www.slovaktech.com/products.htm "Daniel.C" wrote in message ... Oops. Set MyOutlook = CreateObject("Outlook.Application") Set myTask = MyOutlook.CreateItem(3) myTask.assign With myTask .Recipients.Add ") .StatusOnCompletionRecipients = "" .StatusUpdateRecipients = "" .Display End With Set myTask = Nothing Set MyOutlook = Nothing TIA Thanks, but it didn't work. Here is my code : Set MyOutlook = CreateObject("Outlook.Application") Set myTask = MyOutlook.CreateItem(3) myTask.assign With myTask .Recipients.Add ") .StatusOnCompletionRecipients = "" .StatusOnCompletionRecipients = "" .Display End With Set myTask = Nothing Set MyOutlook = Nothing Can you tell me what's wrong ? TIA There is no true/false setting like that for code. You have to use the StatusUpdateRecipients and StatusOnCompletionRecipients strings or set up the Recipients collection of the task item for that. StatusOnCompletionRecipients is the Bcc set of recipients, StatusUpdateRecipients are the Cc recipients. |
#6
|
|||
|
|||
![]()
Thanks for answering. I surely miss something. When I execute the code,
I display a task without main recipient and without send button. Can you help me further more ? Daniel Dim oRecipCC As Outlook.Recipient Dim oRecipBCC As Outlook.Recipient With myTask ' StatusUpdateRecipients .Set oRecipCC = Recipients.Add ") oRecipCC.Type = olCC oRecipCC.Resolve ' StatusOnCompletionRecipients Set oRecipBCC = Recipients.Add ") oRecipBCC.Type = olBCC oRecipBCC.Resolve .Display End With -- Ken Slovak [MVP - Outlook] http://www.slovaktech.com Author: Professional Programming Outlook 2007. Reminder Manager, Extended Reminders, Attachment Options. http://www.slovaktech.com/products.htm "Daniel.C" wrote in message ... Oops. Set MyOutlook = CreateObject("Outlook.Application") Set myTask = MyOutlook.CreateItem(3) myTask.assign With myTask .Recipients.Add ") .StatusOnCompletionRecipients = "" .StatusUpdateRecipients = "" .Display End With Set myTask = Nothing Set MyOutlook = Nothing TIA Thanks, but it didn't work. Here is my code : Set MyOutlook = CreateObject("Outlook.Application") Set myTask = MyOutlook.CreateItem(3) myTask.assign With myTask .Recipients.Add ") .StatusOnCompletionRecipients = "" .StatusOnCompletionRecipients = "" .Display End With Set myTask = Nothing Set MyOutlook = Nothing Can you tell me what's wrong ? TIA There is no true/false setting like that for code. You have to use the StatusUpdateRecipients and StatusOnCompletionRecipients strings or set up the Recipients collection of the task item for that. StatusOnCompletionRecipients is the Bcc set of recipients, StatusUpdateRecipients are the Cc recipients. |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Thread Starter | Forum | Replies | Last Post |
database creation problem | RT | Outlook - Installation | 0 | February 25th 08 09:20 PM |
Problem with profile creation | Dave Twing[_2_] | Outlook - Installation | 1 | October 13th 07 07:04 PM |
Differentiate between drag & drop email task creation and normal task creation | Mohit | Add-ins for Outlook | 1 | April 18th 07 05:54 AM |
Task window Problem | Anopheles | Outlook Express | 2 | October 17th 06 08:07 AM |
Pop the Task Creation Outlook form from Word | Jim Conrady | Outlook and VBA | 1 | September 18th 06 06:17 AM |