![]() |
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
|
|||
|
|||
![]()
I run a small business and use a smartphone and outlook(2003) I use tasks to
log all of my work and then move the task to the calendar when i schedule my week. It all works really well but I want it to do something differently. As the task in copied to calendar (by a hidden macro i guess) it places data in the notes fied of the 'Now appointment', which has the subject at the top and is seen in the calendar. However i want the contact name at the top not the subject. How does one find the macro or VB script which is deciding what information is copied over and more importantly can it be changed??? Or do I want too much! |
#2
|
|||
|
|||
![]()
There is no such hidden macro or script. The functionality is internal to Outlook, and its behavior cannot be modified. If you want to write your own code, you have a couple of choices:
1) Use the TaskItem.Copy and TaskItem.Move methods to copy a task into a calendar folder and then modify the Body property of the item returned by the Move method. This approach takes the least coding, but might not actually work well at all. I've never tried it, because I like the greater control that you get from ... 2) Create a new item in the Calendar folder and set all its properties using data from the task. The code sample at http://www.outlookcode.com/codedetail.aspx?id=645 shows how to create a task from an email message. Creating an appointment from a task would be structurally the same, but would, of course, use different properties. -- Sue Mosher, Outlook MVP Author of Microsoft Outlook 2007 Programming: Jumpstart for Power Users and Administrators http://www.outlookcode.com/article.aspx?id=54 "Simple Simon" wrote in message news ![]() I run a small business and use a smartphone and outlook(2003) I use tasks to log all of my work and then move the task to the calendar when i schedule my week. It all works really well but I want it to do something differently. As the task in copied to calendar (by a hidden macro i guess) it places data in the notes fied of the 'Now appointment', which has the subject at the top and is seen in the calendar. However i want the contact name at the top not the subject. How does one find the macro or VB script which is deciding what information is copied over and more importantly can it be changed??? Or do I want too much! |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Thread Starter | Forum | Replies | Last Post |
Moving Tasks | Len Shigemoto | Outlook - General Queries | 8 | February 14th 08 08:37 PM |
is it possible to link tasks in the tasks with the calendar? | tasky mary | Outlook - Calandaring | 3 | March 12th 07 11:06 PM |
Moving calendar items from personal calendar to server calendar | domco | Outlook - Calandaring | 1 | February 12th 07 03:29 AM |
Printing calendar and active tasks - do not want all tasks | rrupp | Outlook - Calandaring | 1 | August 18th 06 08:36 AM |
Calendar: moving monthly calendar(s) to right side? | Flavio | Outlook - Calandaring | 2 | March 21st 06 03:46 AM |