I'm trying to assign my open dialog box to default to a specific folder on the network. Let's use the path:
\\test\yes\no\
The code below doesn't work, but also doesn't error out. I can't figure out what I'm doing wrong.
Private Declare Function SetCurrentDirectory _
Lib "kernel32" _
Alias "SetCurrentDirectoryA" ( _
ByVal lpPathName As String) _
As Long
SetCurrentDirectory "\\test\yes\no\"
I've seen a few ways people are doing this, but nothing seems to be working for me. I'm using excel 2010 if that helps.
My directory code:
With Application.FileDialog(msoFileDialogFolderPicker)
SetCurrentDirectory "\\test\yes\no\"
.AllowMultiSelect = False
If .Show <> -1 Then MsgBox "No folder selected! Exiting script.": Exit Sub
myDir = .SelectedItems(1)
End With
MsgBox "Please choose the folder."
Application.DisplayAlerts = False
'*********************************************************************************************
'Check for .xls cutsheets; open one at a time with a loop until all file data has been copied
'*********************************************************************************************
folderPath = myDir
If Right(folderPath, 1) <> "\" Then folderPath = folderPath + "\"
fileName = Dir(folderPath & "*.xls")
Do While fileName <> ""
Application.ScreenUpdating = False
Set wbkCS = Workbooks.Open(folderPath & fileName)
SetCurrentDirectoryworks for me on Office 2003 and Office 2013 provided the share exists. – GSerg Jan 7 at 21:42