B
Brad
Thanks for taking the time to read my question.
I am trying to find a contact in my contact folder, and
retun the BusinessFaxNumber once the contact is found.
I found this code in the help section, but can't seem to
do anything with it.
Thanks again for the help.
Brad
Public Sub Test()
Set myOlApp = CreateObject("Outlook.Application")
Set myNameSpace = myOlApp.GetNamespace("MAPI")
Set myContacts = myNameSpace.GetDefaultFolder
(olFolderContacts)
Set myItem = myContacts.Items.Find("[FullName] = ""a
first and last name goes here""")
'If it finds the contact record, I'd like to find out the
BusinessFaxNumber for that contact.
'How do I do that?
End Sub
I am trying to find a contact in my contact folder, and
retun the BusinessFaxNumber once the contact is found.
I found this code in the help section, but can't seem to
do anything with it.
Thanks again for the help.
Brad
Public Sub Test()
Set myOlApp = CreateObject("Outlook.Application")
Set myNameSpace = myOlApp.GetNamespace("MAPI")
Set myContacts = myNameSpace.GetDefaultFolder
(olFolderContacts)
Set myItem = myContacts.Items.Find("[FullName] = ""a
first and last name goes here""")
'If it finds the contact record, I'd like to find out the
BusinessFaxNumber for that contact.
'How do I do that?
End Sub