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

Keep the Web Toolbar from showing when I email from DB

Status
Not open for further replies.

BoxHead

Technical User
May 6, 2001
876
US
I have a group of forms that users will complete and submit to an administrator on a weekly basis. After the email has been sent, the Web toolbar is visible on the screen and the bottom half of the command buttons in the form footer are pushed out of sight.

How can I supress the web toolbar?


TIA

John

Use what you have,
Learn what you can,
Create what you need.
 
You may try this code to disable the toolbar after sending the message:

Dim cbr As CommandBar
Set cbr = CommandBars("Web")
If cbr.Enabled = True Then
cbr.Enabled = False
End If

Using this code will disable the Web Toolbar so if you will need it in your database you will need to enable it with similar code.

Hope this is what you want.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top