Submit button

  • Thread starter Thread starter glenn
  • Start date Start date
G

glenn

I'm new to Outlook forms and want to add a "Submit"
button on an Outlook form which "replicates" the send
action.

Adding the button is easy!
but how do you assign the "send_item" code to the button?

Thanks
 
Sub CommandButton1_Click()
Item.Send
End Sub

Note that this will probably trigger an Outlook security prompt unless
you're using Outlook 2003 and the form is published.
 
OH!

that was a little too easy :)

Thanks

-----Original Message-----
Sub CommandButton1_Click()
Item.Send
End Sub

Note that this will probably trigger an Outlook security prompt unless
you're using Outlook 2003 and the form is published.
--
Sue Mosher, Outlook MVP
Author of
Microsoft Outlook Programming - Jumpstart for
Administrators, Power Users, and Developers






.
 
Back
Top