address fill-in

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

Guest

I have created a form that when the person gets it, they click on the tab
where the form is designed and fill in the boxes. They will click on the
forward to button to forward the infor to our Help Desk. Is there a way that
when they fill out the infor and click the Forward To button, the Help Desk
address be automatically in
there.
 
Write code for the Forward event:

Function Item_Forward(ByVal ForwardItem)
ForwardItem.To = "address_of_Help_Desk"
ForwardItem.Display
End Function

--
Sue Mosher, Outlook MVP
Author of Configuring Microsoft Outlook 2003

and Microsoft Outlook Programming - Jumpstart for
Administrators, Power Users, and Developers
 
Back
Top