A Microsoft Outlook email forum. Outlook Banter

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » Outlook Banter forum » Microsoft Outlook Email Newsgroups » Outlook and VBA
Site Map Home Register Authors List Search Today's Posts Mark Forums Read Web Partners

Preventing changes to SUPERGRID view (sort order/group by etc)



 
 
Thread Tools Search this Thread Display Modes
  #1  
Old March 22nd 07, 01:45 PM posted to microsoft.public.outlook.program_vba
Sillychuckie
external usenet poster
 
Posts: 1
Default Preventing changes to SUPERGRID view (sort order/group by etc)

Hi,
I use a shared mailbox with a number of other people.
When one of them changes the view, it changes it for everyone. As there are
thousands of emails, this takes 10-20 minutes (and locks outlook).

I want to be able to lock it down so it is impossible for someone to alter
the view on a certain folder.
Primarily, I want to disable the sorting.
e.g Clicking on 'Subject', sorts emails by subject.

Is this possible, and mow Might I do it?
Thanks.
Ads
  #2  
Old March 22nd 07, 02:58 PM posted to microsoft.public.outlook.program_vba
Sue Mosher [MVP-Outlook]
external usenet poster
 
Posts: 11,651
Default Preventing changes to SUPERGRID view (sort order/group by etc)

-- Create a custom view, choosing the "On this folder, visible to everyone" option.

-- Choose View | Current View | Define Views. Select the desired view, and click Publish. At the bottom of that dialog, check the box for "Only show views created for this folder."

-- On the folder's Properties dialog, on the Administration tab, select your view as the Initial View on Folder.

-- To keep users from changing that view, display the folder and view, then run this VBA macro:

Sub LockView()
Application.ActiveExplorer.CurrentView.LockUserCha nges = True
End Sub

That won't prevent someone from changing the view for their own use during that Outlook session (which isn't possible), but it will prevent any view changes from being stored between sessions.

--
Sue Mosher, Outlook MVP
Author of Configuring Microsoft Outlook 2003
http://www.turtleflock.com/olconfig/index.htm
and Microsoft Outlook Programming - Jumpstart for
Administrators, Power Users, and Developers
http://www.outlookcode.com/jumpstart.aspx

"Sillychuckie" wrote in message ...
Hi,
I use a shared mailbox with a number of other people.
When one of them changes the view, it changes it for everyone. As there are
thousands of emails, this takes 10-20 minutes (and locks outlook).

I want to be able to lock it down so it is impossible for someone to alter
the view on a certain folder.
Primarily, I want to disable the sorting.
e.g Clicking on 'Subject', sorts emails by subject.

Is this possible, and mow Might I do it?
Thanks.

 




Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
maintaining contact group/sort order jeffrey Outlook - Using Contacts 9 February 28th 07 12:04 AM
Sort order in Address Book David Shepard Outlook - Using Contacts 1 December 18th 06 12:48 AM
Sort order changes in Outlook Davis Outlook - General Queries 0 June 2nd 06 02:36 PM
Sort order changes when I don't want it to Teentour Outlook - Using Contacts 2 April 6th 06 09:54 PM
Sort Order for Contacts Mark Outlook - Using Contacts 1 March 10th 06 09:31 PM


All times are GMT +1. The time now is 02:25 PM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.Search Engine Friendly URLs by vBSEO 2.4.0
Copyright ©2004-2025 Outlook Banter.
The comments are property of their posters.