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 Outlook 2003 no longer opens "without" Folder List Showing in Navigation Pane Using Outlook 0
Hornblower409 Outlook 2010 - Never ending update Using Outlook 0
V Outlook created new profile? Using Outlook 1
J Outlook inbox question Using Outlook 3
T How to Add AT&T Contacts to Outlook 365 Using Outlook 7
F Outlook 2021 outlook on iPhone Using Outlook 1
F Outlook 2021 Outlook on iPhone asks for password Using Outlook 0
P ics calendar entries suddenly open up new Outlook Using Outlook 3
P Outlook "forgets" password until system rebooted Using Outlook 2
N Why does Outlook keeping adding to the email address I have in my notes portion of a contact? Using Outlook 2
M Anyone integrated AI website builders with Outlook for automated client communications? Using Outlook 1
V Gmail in Outlook Using Outlook 2
T Where has the Copilot icon gone in my Outlook desktop client? Using Outlook 5
P New way by Microsoft to get people to use the new Outlook Using Outlook 4
C How to keep emails in account in Outlook after closing the IMAP account Using Outlook 1
cymumtaz IMAP calendars in New Outlook Using Outlook 5
T Constantly Have To Log In To Outlook On The Web Using Outlook.com accounts in Outlook 2
T Cannot Find Outlook Noted On Android Using Outlook 4
O Outlook 2024 not showing that messages are replied to or forwarded Using Outlook 3
C Outlook 365 send/receive takes FOREVER - as in 40 minutes Using Outlook 7
I Outlook 2024 LTSC syncing with iCloud calendar - can only make appt. in iCloud Using Outlook 2
Kika Melo Outlook ribbon customisations do not 'stick' Using Outlook 12
J IMAP Folders Confusion in Windows Classic Outlook Using Outlook 1
A Missing Sent Emails in New Outlook Using Outlook 18
S Missing categories in Outlook calendar Using Outlook 10
P Windows 11 tries to open New Outlook when the user clicks on the mail icon on a news article Using Outlook 2
C I don't understand Outlook or Microsoft, anymore Using Outlook 12
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 22
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

Similar threads

Back
Top