A Microsoft Outlook email forum. Outlook Banter

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.

Go Back   Home » Outlook Banter forum » Microsoft Outlook Email Newsgroups » Outlook and VBA
Site Map Home Register Authors List Search Today's Posts Mark Forums Read Web Partners

Creating and sanding tasks from Access VBA



 
 
Thread Tools Search this Thread Display Modes
  #1  
Old May 6th 10, 01:39 PM posted to microsoft.public.outlook.program_vba
ACCESS 2003
external usenet poster
 
Posts: 2
Default Creating and sanding tasks from Access VBA

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  
Old May 14th 10, 06:41 PM posted to microsoft.public.outlook.program_vba
Sue Mosher [MVP][_4_]
external usenet poster
 
Posts: 552
Default Creating and sanding tasks from Access VBA

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  
Old May 17th 10, 09:33 AM posted to microsoft.public.outlook.program_vba
ACCESS 2003
external usenet poster
 
Posts: 2
Default Creating and sanding tasks from Access VBA

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
Search this Thread:

Advanced Search
Display Modes

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

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump

Similar Threads
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


All times are GMT +1. The time now is 08:24 PM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.Search Engine Friendly URLs by vBSEO 2.4.0
Copyright ©2004-2025 Outlook Banter.
The comments are property of their posters.