![]() |
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
|
|||
|
|||
![]()
Hi,
I am using Outlook 2003 with Exchange 2007 and I am trying to programatically send tasks from access vba to another account. thenks. |
Ads |
#2
|
|||
|
|||
![]()
Did you have a specific question? Please show your code.
-- Sue Mosher, Outlook MVP Author of Microsoft Outlook 2007 Programming: Jumpstart for Power Users and Administrators http://www.outlookcode.com/article.aspx?id=54 "ACCESS 2003" wrote: Hi, I am using Outlook 2003 with Exchange 2007 and I am trying to programatically send tasks from access vba to another account. thenks. |
#3
|
|||
|
|||
![]()
Hi,
This is code to sand from my account,but I would like some code to sand from account of manager (his tasks) to any another account. Sub AssignTask() Dim myOlApp As New Outlook.Application Dim myItem As Outlook.TaskItem Dim myDelegate As Outlook.Recipient Set myItem = myOlApp.CreateItem(olTaskItem) myItem.Assign Set myDelegate = myItem.Recipients.Add("Gon Kim") myDelegate.Resolve If myDelegate.Resolved Then myItem.Subject = "My SubJect" myItem.DueDate = Now + 30 myItem.Display myItem.Send End If End Sub thanks "Sue Mosher [MVP]" wrote: Did you have a specific question? Please show your code. -- Sue Mosher, Outlook MVP Author of Microsoft Outlook 2007 Programming: Jumpstart for Power Users and Administrators http://www.outlookcode.com/article.aspx?id=54 "ACCESS 2003" wrote: Hi, I am using Outlook 2003 with Exchange 2007 and I am trying to programatically send tasks from access vba to another account. thenks. |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Thread Starter | Forum | Replies | Last Post |
creating tasks, appoinment, and events from a message | Amin | Outlook - General Queries | 1 | May 3rd 09 05:08 AM |
Creating Outlook tasks from Excel | David | Outlook and VBA | 1 | May 22nd 08 03:26 PM |
Creating a macro in tasks with text. | Mr. L | Outlook and VBA | 6 | September 24th 07 11:06 PM |
Creating a hierarchy of tasks with the Task Form | Len Chaston | Outlook - Using Forms | 0 | April 2nd 07 03:14 AM |
How can I have my contacts phone# appear when creating a Tasks | deepc33 | Outlook - Using Contacts | 3 | July 7th 06 05:33 PM |