Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

ForwardAsVCard a custom contact from in outlook 2000

Status
Not open for further replies.

cath11

Programmer
Jun 18, 2001
3
CA
Hi!

I customized a contact form and on the click event of a button I write this code:

sub cmbSend_Click()
Set objThisPage = Item.GetInspector.ModifiedFormPages("CustomerForm")
Set colControls = objThisPage.Controls
Set objOA = CreateObject("Outlook.Application")
Set objMail = objOA.CreateItem(olMailItem)
Set objMail = Item.ForwardAsVCard
'objMail.Recipients.Add "michelc@biotonix.com"
objMail.Send
end sub

and when I recieve the e-email, I recieve the original contact form and not the
one that I modified.

Tanks for your help!
.

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top