![]() |
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. |
|
|
Thread Tools | Search this Thread | Display Modes |
#1
|
|||
|
|||
![]()
Hi,
this should be really simple, but I don't really have any idea of VBA. So sorry if this is a stupid question. I use OL 2003 and I'm looking for a way to switch to the contacts/ calendar/tasks view in the main panel with the navigation pane immediately switching to the folders list. I already moved all the silly huge buttons from the bottom to small buttons in my toolbar now, but I dislike the navigation pane switching with the main view in those cases. The mail view of the nav pane is useful, but the others are not (esp. since they give me a long list of identically named folders, due to several mini-backups). So a macro (1) "Switch to [e.g.] contacts" and (2) "Switch nav pane to folder list" would be really helpful. This seems to have been discussed here in the past, but I could only retrieve one meaningless post of an old (2006) thread. Could someone tell me how such a macro would look like? TIA Alex |
Ads |
#2
|
|||
|
|||
![]() Do you want the good old treeview? Simply click in the lower left corner the second icon (a closed folder symbol) to switch to the treeview. -- Viele Gruesse / Best regards Michael Bauer - MVP Outlook Organize eMails: http://www.vboffice.net/product.html?id=2006063&cmd=detail&lang=en&pub=6 Am Sat, 18 Aug 2007 12:17:24 -0700 schrieb Alex Wenzel: Hi, this should be really simple, but I don't really have any idea of VBA. So sorry if this is a stupid question. I use OL 2003 and I'm looking for a way to switch to the contacts/ calendar/tasks view in the main panel with the navigation pane immediately switching to the folders list. I already moved all the silly huge buttons from the bottom to small buttons in my toolbar now, but I dislike the navigation pane switching with the main view in those cases. The mail view of the nav pane is useful, but the others are not (esp. since they give me a long list of identically named folders, due to several mini-backups). So a macro (1) "Switch to [e.g.] contacts" and (2) "Switch nav pane to folder list" would be really helpful. This seems to have been discussed here in the past, but I could only retrieve one meaningless post of an old (2006) thread. Could someone tell me how such a macro would look like? TIA Alex |
#3
|
|||
|
|||
![]()
Thanks, but I already know that. I already moved the treeview button
(with all other buttons) from the bottom to the toolbar. What I'm looking for is a way to have the contacts/tasks/calendar views switch to the tree view in the nav pane automatically, while email views (like inbox) should show the email nav pane. I can get what I want with using the buttons (like switching to contacts by the contacts button plus switching to tree view with the tree view button), but I want to automate that. Plus, the tree view, once activated, also "sticks" when switching to email folders, which is something I don't want. On Aug 21, 9:24 am, "Michael Bauer [MVP - Outlook]" wrote: Do you want the good old treeview? Simply click in the lower left corner the second icon (a closed folder symbol) to switch to the treeview. -- Viele Gruesse / Best regards Michael Bauer - MVP Outlook Organize eMails: http://www.vboffice.net/product.html...063&cmd=detail =en&pub=6 Am Sat, 18 Aug 2007 12:17:24 -0700 schrieb Alex Wenzel: Hi, this should be really simple, but I don't really have any idea of VBA. So sorry if this is a stupid question. I use OL 2003 and I'm looking for a way to switch to the contacts/ calendar/tasks view in the main panel with the navigation pane immediately switching to the folders list. I already moved all the silly huge buttons from the bottom to small buttons in my toolbar now, but I dislike the navigation pane switching with the main view in those cases. The mail view of the nav pane is useful, but the others are not (esp. since they give me a long list of identically named folders, due to several mini-backups). So a macro (1) "Switch to [e.g.] contacts" and (2) "Switch nav pane to folder list" would be really helpful. This seems to have been discussed here in the past, but I could only retrieve one meaningless post of an old (2006) thread. Could someone tell me how such a macro would look like? TIA Alex |
#4
|
|||
|
|||
![]() Ok, I understand now. You can track the Explorer's FolderSwitch event. If one of the folders get activated you want the treeview for then call: Explorer.ShowPane olFolderList, True -- Viele Gruesse / Best regards Michael Bauer - MVP Outlook Organize eMails: http://www.vboffice.net/product.html?id=2006063&cmd=detail&lang=en&pub=6 Am Wed, 22 Aug 2007 12:38:31 -0700 schrieb Alex Wenzel: Thanks, but I already know that. I already moved the treeview button (with all other buttons) from the bottom to the toolbar. What I'm looking for is a way to have the contacts/tasks/calendar views switch to the tree view in the nav pane automatically, while email views (like inbox) should show the email nav pane. I can get what I want with using the buttons (like switching to contacts by the contacts button plus switching to tree view with the tree view button), but I want to automate that. Plus, the tree view, once activated, also "sticks" when switching to email folders, which is something I don't want. On Aug 21, 9:24 am, "Michael Bauer [MVP - Outlook]" wrote: Do you want the good old treeview? Simply click in the lower left corner the second icon (a closed folder symbol) to switch to the treeview. -- Viele Gruesse / Best regards Michael Bauer - MVP Outlook Organize eMails: http://www.vboffice.net/product.html...063&cmd=detail =en&pub=6 Am Sat, 18 Aug 2007 12:17:24 -0700 schrieb Alex Wenzel: Hi, this should be really simple, but I don't really have any idea of VBA. So sorry if this is a stupid question. I use OL 2003 and I'm looking for a way to switch to the contacts/ calendar/tasks view in the main panel with the navigation pane immediately switching to the folders list. I already moved all the silly huge buttons from the bottom to small buttons in my toolbar now, but I dislike the navigation pane switching with the main view in those cases. The mail view of the nav pane is useful, but the others are not (esp. since they give me a long list of identically named folders, due to several mini-backups). So a macro (1) "Switch to [e.g.] contacts" and (2) "Switch nav pane to folder list" would be really helpful. This seems to have been discussed here in the past, but I could only retrieve one meaningless post of an old (2006) thread. Could someone tell me how such a macro would look like? TIA Alex |
#5
|
|||
|
|||
![]()
On Aug 23, 7:07 am, "Michael Bauer [MVP - Outlook]"
wrote: Ok, I understand now. You can track the Explorer's FolderSwitch event. If one of the folders get activated you want the treeview for then call: Explorer.ShowPane olFolderList, True Sorry, I'm late to reply, because I've been on vacation. Thanks for this hint. I experimented with this, but due to my lack of understanding of VBA, I can get nowhere. Could you tell me how the complete macro for e.g. "Go to tasks and switch nav pane to folder list" has to look like? (Outlook really should have a macro recorder for dummies like me.) |
#6
|
|||
|
|||
![]() I'm sorry, but writing the code is your task. Show your code and we can explore together if there are problems. -- Viele Gruesse / Best regards Michael Bauer - MVP Outlook Organize eMails: http://www.vboffice.net/product.html?id=2006063&cmd=detail&lang=en&pub=6 Am Sat, 08 Sep 2007 11:51:10 -0700 schrieb Alex Wenzel: On Aug 23, 7:07 am, "Michael Bauer [MVP - Outlook]" wrote: Ok, I understand now. You can track the Explorer's FolderSwitch event. If one of the folders get activated you want the treeview for then call: Explorer.ShowPane olFolderList, True Sorry, I'm late to reply, because I've been on vacation. Thanks for this hint. I experimented with this, but due to my lack of understanding of VBA, I can get nowhere. Could you tell me how the complete macro for e.g. "Go to tasks and switch nav pane to folder list" has to look like? (Outlook really should have a macro recorder for dummies like me.) |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Thread Starter | Forum | Replies | Last Post |
Calendar entry in Folder List and Calendar in Navigation Pane | CityCarole | Outlook - Calandaring | 1 | March 20th 07 02:10 AM |
switch view to Tasks pane | sumGirl | Outlook - General Queries | 1 | January 2nd 07 07:28 PM |
My contacts folder disappeared from the navigation pane | Lois Bailey | Outlook - Using Contacts | 5 | June 5th 06 09:41 PM |
My Contacts folder no longer shows in the navigation pane | MunchkinQueen | Outlook - Using Contacts | 3 | March 30th 06 04:18 PM |
How do I change navigation pane in calendar view? | mjw658 | Outlook - Calandaring | 5 | March 13th 06 07:08 PM |