Creating Formatted Task

stevo

Registered User.
Local time
Today, 13:00
Joined
Feb 16, 2010
Messages
10
Hello

Can anyone please help?
I am using Access to create and assign an Outlook Task using the following code:-

Set myOlApp = CreateObject("Outlook.Application")
Set myItem = myOlApp.CreateItem(olTaskItem)
myItem.Recipients.Add ("")
myItem.Subject = "NCR Action required"
myItem.Body = "Please mark this task as done when you have completed the necessary actions as owner of the NCR"
myItem.Importance = olImportanceHigh
myItem.DueDate = k
myItem.Categories = "NCRS"
myItem.Assign
myItem.Save

I would like to format the body text in HTML to produce a data table. I am told that creating a Task doesn't support HTML. Is there any other way of formatting body text when creating a Task?
 

Users who are viewing this thread

Back
Top Bottom