Choose-outlook-startup-folder with VBA

Status
Not open for further replies.

Steven Proud

Member
Outlook version
Outlook 2013 64 bit
Email Account
Exchange Server 2013
Hello, In Outlook I use PickFolder to choose a file folder within Outlook Explorer area.
Something like this code:

Set iNameSpace = myOutlookApplication.GetNamespace("MAPI")
'User Dialog Popup Window to choose a directory for Processing within Outlook
'Store Chosen Directory in variable "ChosenFolder"
Set ChosenFolder = iNameSpace.PickFolder
If ChosenFolder Is Nothing Then
GoTo ExitSub:
End If

What I want to do, is specify the start/default directory for the User Dialog Popup Window - so I can store the last try in registry, call it again later from registry the next time and specify it as starting point to choose.
I know the PickFolder has no option for this, BUT, what I did determine is that the "default" start directory is in fact what the user has specified as the start-up folder in Outlook.
If I change this, the next time I use PickFolder, it will sttart at this directory - GREAT!!!
upload_2015-4-13_9-30-12.png


Here is another link that shows how to change that directory:
http://www.slipstick.com/outlook/choose-outlook-startup-folder/

So, what I want to do, is use a macro/VBA code to change this Start-up directory dynamically whenever I want to, thus affecting my PickFolder default directory.

For the life of me, I cannot find out how to change this with VBA.

Please provide me code to change this property/configuration so I can get this working :)
 
I don't think that would work as Outlook reads the registry only once at startup. See the Redemption, which is free for private users. Its PickFolder function allows to pass the start folder.

If I have outlook open and I use Its PickFolder function it defaults to the start folder. Then, if I simply change the start folder in the options menu, and then re-run the same code, it immediately defaults to the new folder I selected. This is what I determined before I asked the question.
I would really appreciate it if you could provide me the code to change that start-up directory so I could try it.
I have never heard of Redemption and for the sake of this one thing I would "like" to avoid learning something new.
If you insist on me using this Redemption thing, I suppose I will have to take the time.
 
At the end of the day, all I want to accomplish, is avoid the user having to select a directory every time I call the pickfolder in Outlook. I just want to be able to apply the last used folder in some way - storing it in Registry was what I thought of and have no issue doing, but I cannot find a way to specify a start folder for the PickFolder function.
Other than Redemption and other than Pickfolder, is there possibly another function that presents the user a popup dialog that has the ability to specify a default directory?
 
Ok, I tried many things and different resources that all dead ended.
I gave up on this due to the low usage of the pickfolder.
Thanks for all you help and effort!
 
Status
Not open for further replies.
Similar threads
Thread starter Title Forum Replies Date
J outlook 2007 doesn't let me choose which .pst to search Using Outlook 2
R "Can't store Outlook data files under the AppData folder. Please choose another folder." Using Outlook 6
Diane Poremsky Choose the Folder Outlook Starts Up In Using Outlook 0
M Outlook displays "choose folder" for each sent item. Using Outlook 2
C Outlook 2007 - Recover Deleted Items - Columns to Choose from Using Outlook 1
D multiple email accounts - why do I have to choose the "from" account address?? Using Outlook 2
O Benefits of Exchange over IMAP and why would I choose Exchange? Using Outlook 2
B Choose commands from Macros is empty Outlook VBA and Custom Forms 3
Diane Poremsky How to choose which Calendar creates reminders? Using Outlook 0
M Save selected email message as .msg file (with user to choose folder location) Outlook VBA and Custom Forms 14
K How to choose from a list of templates in a shared drive folder Outlook VBA and Custom Forms 5
L How do i choose where i file my sent messages? Using Outlook 1
J how to choose which item alone go to pst ? OR how to auto sync/copy calender Using Outlook 1
B How to choose which contacts folder to use when saving contacts? Using Outlook 1
F Choose Which Calendar/PST Creates Reminder Using Outlook 3
M Duplicate removal feature in Outlook 2021 is faulty Using Outlook 2
D.Moore Outlook COM addins source folder Using Outlook 4
P Removing Outlook 365 Account from Send/Receive Using Outlook 1
kburrows Outlook Automatically Merging Contacts Using Outlook 1
A Outlook 2016 Outlook 2016 vs. New Outlook Using Outlook 4
D Outlook Desktop App Email Software Using Outlook 0
efire9207 VBA Outlook Contacts Outlook VBA and Custom Forms 6
M Outlook not logging in to server Using Outlook 0
J Outlook macro to run before email is being send Outlook VBA and Custom Forms 0
R Outlook 2021 change view Using Outlook 2
K Outlook font corrupted in some point sizes, resets on close/open Using Outlook 2
J Is the Windows Outlook Tasks module really going to be gone? Using Outlook 7
F Outlook 2010 and Hotmail Using Outlook 1
A Outlook 2021 needs 'enter' for people search Using Outlook 2
HarvMan Outlook 365 Inbox Font Using Outlook 8
Retired Geek Outlook on MAC delete duplicate Sent emails Using Outlook 0
S New Outlook - IMAP ISSUES and support for addins? Using Outlook 1
C outlook.com fonts Using Outlook 2
mickymakz Common challenges organizations face when integrating SharePoint and Outlook? Exchange Server Administration 0
R Outlook with several IMAP accounts generating folders with 1111 suffix Using Outlook 0
D Send email from Outlook Alias using Mac? Using Outlook 0
G Reply a selected message and remove blank space before signature Outlook 365 version 2406 64BIT Outlook VBA and Custom Forms 2
G Reply a selected message and remove blank space before signature Outlook 365 version 2406 64BIT Outlook VBA and Custom Forms 0
kburrows "New" Outlook Desktop App Mailbox Size Using Outlook 4
N Best way to sync calendar and contacts between Outlook 365 and Outlook on iPhone Using Outlook 4
H Macro to Delete Duplicate items in Outlook calendar where title is the same and date is the same Outlook VBA and Custom Forms 0
Y The New Outlook - Q's & Thoughts Using Outlook 28
M Start Outlook 365 at unified inbox Using Outlook 2
B Requesting VBA code to make Outlook prompt for confirmation when deleting a task? Outlook VBA and Custom Forms 4
T In-line reply style in Outlook II Outlook VBA and Custom Forms 1
G Outlook Contact Item.Restrict where FullName is NULL Outlook VBA and Custom Forms 3
J Emails with .ICS calendar invitations attached don't contents when received in Outlook 365 Using Outlook 6
W Outlook 2021 Hanging on "Sending Emails" Using Outlook 3
T Outlook Desk Top 2021 Overdoing Security Using Outlook 7
O Any 3rd party tool that sync (mirror) from Outlook Contacts to Google Contacts? Using Outlook 4

Similar threads

Back
Top