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 strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Outlook & Replying w/Command Button

Status
Not open for further replies.
Sep 22, 1999
76
US
I have an Outlook 200 Form the has a Command Button on it called cmdTest
What I want is when I click this Button for a reply to open up

I created the Event handler for it
and coded
Item.Reply

The form will just sit there

Item.send Works Fine

Im sure i'm missing the obvious

Thanks

Mike
 
set MyReplyItem=MyMailItem.Reply

This reply method creates a new mailitem as a reply to the original one. It doesn't DO anything with this mailitem - it will just be available for further manipulation, and ultimately, for sending.

To give the user the opportunity to reply, add the following below the line above:

application.Inspectors.Add(MyReplyItem).Activate

Rob
[flowerface]
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top