Customizing Outlook 2003 Beta Form

  • Thread starter Thread starter Josh Byers
  • Start date Start date
J

Josh Byers

I want to add in the very cool picture control found on the default
contact form, but when I go to design that form, it looks like the
earlier versions without a picture control. I read a post that said
it was still there and you had to just add code with a picture
control. Can anyone point me to the code and the steps necessary to
add in the control. (Note: I am aware of how to add a picture
control for earlier versions, I want my form to function like the new
one but with some different fields I am adding in) Thanks.

Josh
 
The control is hidden in design mode. When you add a picture to a
contact it is actually added as an attachment to the contact with a
special property set for the attachment. To add a picture using code
to a contact item in an Outlook 2003 form you would use the new
ContactItem.AddPicture method. RemovePicture removes it and HasPicture
is a Boolean that tells if a contact has a picture.
 
Back
Top