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 Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Adding an ID number to a task in Outlook 2000

Status
Not open for further replies.

PieMan

Programmer
Aug 9, 2001
15
0
0
GB
Is it possible to assign a number/code to a Task in Outlook?

As a Task is generated, I would like to assign a unique ID number (perhaps from an Access database).

So far I have been unable to determine how to bind data to a Form in Outlook.

Any suggestions????

Thanks

 
use the EntryID

dim myEntryString as string
...
'The First Item's EntryID in the myFolder
myEntryString = myFolder.Items(1).EntryID

and reverse:
...
Set myItem = myNameSpace.GetItemFromID(myEntryString) 'get myItem from MyID

ide
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top