Hi
I have just about completed a Contact Folder application. However I can not
find Notes as a contact item. I would be grateful if some one woul tell me
how to access it
Roger Stenson
Sue Mosher [MVP-Outlook] - 21 Feb 2004 16:07 GMT
By "Notes" do you mean the content that the user types in the large box on
the main page of the contact form? If so, take a look at the Body property.

Signature
Sue Mosher, Outlook MVP
Author of
Microsoft Outlook Programming - Jumpstart for
Administrators, Power Users, and Developers
http://www.outlookcode.com/jumpstart.aspx
> Hi
> I have just about completed a Contact Folder application. However I can not
> find Notes as a contact item. I would be grateful if some one woul tell me
> how to access it
>
> Roger Stenson
loadhigh - 22 Feb 2004 03:51 GMT
The scripts below is add a contactitem in your outlook2003,please reference
"outlook application" first before you run it.
Sub main()
Set olk = CreateObject("outlook.application")
Set myitem = olk.CreateItem(olContactItem)
myitem.FullName = "load high"
myitem.Body =" Can you see those words in the Your 'Notes'"
'here is your notes.
myitem.Save
Set myitem = Nothing
Set olk = Nothing
End Sub
> Hi
> I have just about completed a Contact Folder application. However I can not
> find Notes as a contact item. I would be grateful if some one woul tell me
> how to access it
>
> Roger Stenson