Macro selects folder

G

Guest

Hi,

I have a macro that selects a folder - the problem is that when it selects
the folder you cant see the files there - is there some where to fix this -
because they need to see where the file is in order to select the folder.

Here is the macro - Thanks for your help

Sub GetFolder2(Output)
Dim Output As String


' For Excel 2002
If Val(Application.Version) < 10 Then
MsgBox "This requires Excel 2002 or later.", vbCritical
Exit Sub
End If
With Application.FileDialog(msoFileDialogFolderPicker)
.InitialFileName = Application.DefaultFilePath & "\"
.Title = "Please select a location for the backup"
.Show
If .SelectedItems.Count = 0 Then
MsgBox "Canceled"
'Else
' MsgBox .SelectedItems(1)
End If
End With

Output =
Application.FileDialog(msoFileDialogFolderPicker).SelectedItems(1)

End Sub
 
D

Dave Peterson

If the user is selecting a file, why not use application.getopenfilename?

Or maybe you could use something like:

Option Explicit
Sub testme()
Dim myFolderName As String
Dim myFileName As Variant

myFileName = Application.GetSaveAsFilename _
(InitialFileName:="FilenameWillBeIgnored", _
filefilter:="Excel Files, *.xls")

If myFileName = False Then
Exit Sub
End If

myFolderName _
= Left(myFileName, InStrRev(myFileName, Application.PathSeparator) - 1)

MsgBox myFolderName

End Sub

InstrRev was added in xl2k. It won't work with xl97.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top