CustomViewsOnly

  • Thread starter Thread starter Yu
  • Start date Start date
Y

Yu

I created some views in the public folders and want to restrict users to use
these views by default.
I searched the web and books and it seems that I can use below properties to
control.
However, I have no idea how to use this. any help?

CustomViewsOnly
LockUserChanges
 
You have to write and run code. This Outlook VBA snippet would set property
values on the currently displayed folder:

Set fld =Application.ActiveExplorer.CurrentFolder
fld.CustomViewsOnly = True
fld.LockUserChanges = True
 
Back
Top