Contact Items

R

Roger Stenson

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
 
S

Sue Mosher [MVP-Outlook]

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.
 
L

loadhigh

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
 
Top