Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations MikeeOK on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How do U Assign a task to outlook from Access

Status
Not open for further replies.

BB2

MIS
Aug 28, 2001
1
CA
Is there a way to assign a task to MS Outlook from a form in MS Access? I want to be able to send record information along with the task assignment.
 
Here's the basics

Public Sub NewTask()
Dim objOutlook As Outlook.Application
Dim objOutlookTask As Outlook.TaskItem
'Create the Outlook session.
Set objOutlook = CreateObject("Outlook.Application")
Set objOutlookTask = objOutlook.CreateItem(olTaskItem)
With objOutlookTask
.etc

Tyrone Lumley
augerinn@gte.net
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top