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
P My Feedback to Microsoft and their response; also New Outlook roadmap Using Outlook 0
A New Outlook - Cannot drag IMAP emails to Task List in MyDay Using Outlook 1
L Android Outlook Doesn't Update PC Notification Changes Using Outlook 0
A How to open Excel file saved in Outlook folder? Outlook VBA and Custom Forms 4
D.Moore Outlook desktop client suggested searches question Using Outlook 18
Y Outlook 2016 (64-bit) Copy Local Cal. Events to Another Cal. with Modified Reminder time Using Outlook 2
T Outlook 2019 While connecting an IMAP account in "classic" Outlook 2024 I caused a massive duplication of emails on the server (death loop) Using Outlook 5
D Cannot logon to Outlook.com, or outlook on Mac, outlook not updating on ipad, iphone Using Outlook 1
J unable to get my new install of Outlook to display mailboxes in the single-line format. Using Outlook 1
D Legacy Microsoft Outlook for Mac Support will end in Oct 2025 Using Outlook 5
C Nasty Bug Lurking In Outlook For Years. The Trigger. Any Fix Or Workaround? Using Outlook 11
R Auto clicking Hyperlink in outlook Outlook VBA and Custom Forms 7
ughlook Open multiple contacts in NEW Outlook? Using Outlook 3
G Outlook translation feature is off Using Outlook 2
J Outlook 2010 does not let me put any account Using Outlook.com accounts in Outlook 3
P 3 of 5 PST files don't install from d:\outlook but only from D:\ Using Outlook 7
HarvMan January Windows 10 preview update force installs new Outlook Using Outlook 1
L Outlook 2010 - new installation on Windows 11 - aplzod32.dll is not a valid Add-in Using Outlook 12
J Outlook troubleshooting/logging - option grayed out Using Outlook 2
B Arrows missing from Outlook emails vertical scrollbar Using Outlook 0
G Outlook 2021 (New) doesn't respect default browser Using Outlook 9
B Outlook or iPhone turning tabs into spaces in Outlook Notes Using Outlook 1
P newly installed Office 365 includes OLD Outlook Using Outlook 6
R Outlook ribbon menu default? Using Outlook 7
H Spam email in Gmail not visible in Outlook Using Outlook 3
J How to transfer Win 10 Outlook to new Windows 11 pc? Using Outlook 16
J Renegade spam URL line displayed in old local Outlook 365 email title Using Outlook 3
G Reduce whitespace in Outlook desktop Contact Cards display Using Outlook 3
C Outlook classic via 365 Using Outlook 2
Dr. Demento Analogous Outlook code to read info into an array (or collection or whatever) Outlook VBA and Custom Forms 7
S Repair Outlook Using Outlook 8
V Outlook Form ListBox is not editable Outlook VBA and Custom Forms 2
F Outlook's contacts Using Outlook 1
D Outlook 2003 stopped dead Using Outlook 2
G Cannot receive emails from gmail account in Outlook 365 Using Outlook 1

Similar threads

Back
Top