VBOffice

Hide Commandbar at Startup

Control by code which of the commandbars should be visible at startup.

Last modified: 2009/08/15 | Accessed: 58.418  | #74
◀ Previous sample Next sample ▶
SAM SAM
Determine the "identity" of your emails. Set with SAM the sender and the folder folder for sent items with the help of rules.

Many Addins install a new toolbar in Outlook and always display it - even if you'd rather keep it invisible.

This example demonstrates how to access a toolbar at startup via its name und make it invisible. Copy the code to the module "ThisOutlookSession", and set the variable 'Name' onto the name of the desired toolbar.

(If you don't know the toolbar's name: Right click on any toolbar and you'll get a list of all of the available names.)


tip  How to add macros to Outlook
Private Sub Application_Startup()
  On Error Resume Next
  Dim Bar As Office.CommandBar
  Dim Name As String

  Name = "Standard"

  Set Bar = Application.ActiveExplorer.CommandBars(Name)
  If Not Bar Is Nothing Then Bar.Visible = False
End Sub
Category-Manager Category-Manager
With Category-Manager you can group your Outlook categories, share them with other users, filter a folder by category, automatically categorize new emails, and more. You can use the Addin even for IMAP.
email  Send a message