I'm working on an Outlook system and want to parse e-mail information using MAPI. I'm hoping that someone can provide a list of all names for objects/information that are available. I'm using the following names that I'm using in the code example below:
.body
.sendername
o = createobject("outlook.application"
myNameSpace = o.GetNameSpace("MAPI"
myFolder = myNameSpace.GetDefaultFolder(5)
For I = 1 to myFolder.Items.Count
oMyMessage = myFolder.Items(I)
ThisForm.Edit1.Value = oMyMessage.Body
ThisForm.Text1.Value = oMyMessage.SenderName
ThisForm.Refresh
Wait "Press Any Key" Window
EndFor
o = .null.
I'm interested in knowing where to find a list of any other names available:
I've searched for the information but haven't found it in any of the threads or FAQ's
Thanks in advance for your help.
CDavis
.body
.sendername
o = createobject("outlook.application"
myNameSpace = o.GetNameSpace("MAPI"
myFolder = myNameSpace.GetDefaultFolder(5)
For I = 1 to myFolder.Items.Count
oMyMessage = myFolder.Items(I)
ThisForm.Edit1.Value = oMyMessage.Body
ThisForm.Text1.Value = oMyMessage.SenderName
ThisForm.Refresh
Wait "Press Any Key" Window
EndFor
o = .null.
I'm interested in knowing where to find a list of any other names available:
I've searched for the information but haven't found it in any of the threads or FAQ's
Thanks in advance for your help.
CDavis