PC Review


Reply
Thread Tools Rate Thread

Creating and sanding tasks from Access VBA

 
 
ACCESS 2003
Guest
Posts: n/a
 
      6th May 2010
Hi,
I am using Outlook 2003 with Exchange 2007 and I am trying to
programatically send tasks from access vba to another account.

thenks.
 
Reply With Quote
 
 
 
 
Sue Mosher [MVP]
Guest
Posts: n/a
 
      14th May 2010
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.

 
Reply With Quote
 
ACCESS 2003
Guest
Posts: n/a
 
      17th May 2010
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.

 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Creating New Tasks =?Utf-8?B?aG9wZXJz?= Microsoft Outlook Discussion 0 4th Jun 2007 04:30 PM
Creating and assigning Outlook tasks from Access Todd Lemen Microsoft Access VBA Modules 4 3rd Mar 2004 01:46 AM
creating tasks from emial =?Utf-8?B?Y3JhZA==?= Microsoft Outlook Discussion 0 15th Jan 2004 09:36 PM
An error occurred while sanding the fax Drasko Windows XP Print / Fax 0 7th Jan 2004 07:36 PM
Creating tasks using VBA Vinay U Microsoft Outlook VBA Programming 1 18th Nov 2003 08:25 AM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 05:50 AM.