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

VB programing in Outlook

Status
Not open for further replies.

theticklf

MIS
Aug 29, 2000
1
US
I am currently developing a form with outlook 98 and am having trouble finding a way to hide toolbars or disable them. I have a custom send button that works completly different from the default send button. If anyone could help me out with this I would appriatiate it.
Thank you,
 
If you want to hide the default Reply, Reply to All, and Forward buttons:

1) Go into the Design View of Your Outlook Form.
2) Click on the "Actions" tab.
3) From here, you can set the 'Enabled' option to "No".

I am not sure if you can remove the default "send" button, but you can prevent it from being used with the following code in the form:

Function Item_Send()
Item_Send = False
End Function

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top