Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Dim objOutlook As New Outlook.Application
Dim objNameSpace As Outlook.NameSpace
Dim objInbox As MAPIFolder
Dim objMail As MailItem
Set objNameSpace = objOutlook.GetNamespace("MAPI")
Set objInbox = objNameSpace.GetDefaultFolder(olFolderInbox)
' Find each ID
For Each objMail In objInbox.Items
MsgBox objMail.EntryID & " - " & objMail.Subject
Next objMail
{/code]
I can't test this at the moment so I apologise if there is anything I've overlooked but give it a try and let me know...
----------------------------------------------------------------------
Need help finding an answer?
Try the search facilty ([URL unfurl="true"]http://www.tek-tips.com/search.cfm)[/URL] or read FAQ222-2244 on how to get better results.
For Each objMail In objInbox.Items
If objMail.EntryID = intID Then objMail.Display
Next objMail