CustomViewsOnly

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
 
S

Sue Mosher [MVP]

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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top