Is it possible to open a contact form from another contact form using VBA?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I am trying to open a contact form from another contact form using the code behind code.

I have a custom form which sits in a public folder. I would like to be able to open a different custom contact form which sits in a different public folder. I will have to search for the contact to open by using an ID field which is a custom field in the form. Is this possible?

Thanks.
 
Sounds like you're trying to open an item, not a form. You can use the
MAPIFolder.Items.Find method to search the target folder for an item that
matches your criteria.
--
Sue Mosher, Outlook MVP
Author of
Microsoft Outlook Programming - Jumpstart for
Administrators, Power Users, and Developers



Roger P. said:
I am trying to open a contact form from another contact form using the code behind code.

I have a custom form which sits in a public folder. I would like to be
able to open a different custom contact form which sits in a different
public folder. I will have to search for the contact to open by using an ID
field which is a custom field in the form. Is this possible?
 
Back
Top