0
Windowsエクスプローラを使用して、VBAで選択したファイルの名前またはパスを表示したいとします。ListBoxに選択したファイルのパスを表示
これまで私が行ってきたことは、エクスプローラを開き、ファイルを選択することができますが、ファイルの名前/パスが表示されません。ここで
Private Sub CommandButton1_Click()
Dim fd As Office.FileDialog
Set fd = Application.FileDialog(msoFileDialogFilePicker)
With fd
.AllowMultiSelect = True
.Title = "Please select the file."
.Filters.Clear
.Filters.Add "All Files", "*.*"
If .Show = True Then
///
///here comes the part with showing the names in ListBox
///
End If
End With
End Sub
ありがとうございました!正確に私が探していたもの:) –