VBOffice

Change the Font of a Folder View

Do you want to change the view font of the current folder? This example works for Outlook 2007 and up.

Last modified: 2012/02/22 | Accessed: 37.252  | #92
◀ 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.

Do you want to change the view font of the current folder? This example works for Outlook 2007 and up:


tip  How to add macros to Outlook
Sub ChangeFolderViewFont()
  Dim Tv As Outlook.TableView
  Dim Font$

  Font = "Segoe UI"
  Set Tv = Application.ActiveExplorer.CurrentFolder.CurrentView
  Tv.AutoPreviewFont.Name = Font
  Tv.ColumnFont.Name = Font
  Tv.RowFont.Name = Font
  Tv.Apply
  Tv.Save
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