how to add user-defined field in task item

  • Thread starter Sue Mosher [MVP]
  • Start date
S

Sue Mosher [MVP]

Take a look at the UserProperties.Add method.

--
Sue Mosher, Outlook MVP
Outlook and Exchange solutions at http://www.slipstick.com
Author of
Microsoft Outlook Programming: Jumpstart
for Administrators, Power Users, and Developers
 
K

KP

Hi
Dim TaskOutlook As Outlook.TaskItem
Set TaskOutlook = oApp.CreateItem(olTaskItem)

With TaskOutlook
.DueDate = mydate
.Categories = "jeeps"
.Subject = "officer"
.Save
End With


i wanted to add an User-defined field "Project" so that..

With TaskOutlook
.DueDate = mydate
.Categories = "jeeps"
.Subject = "officer"
.Project = "Project1"
.Save
End With

how can i create by user defined fields ?
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top