Подтвердить что ты не робот

Откройте проводник Windows и выберите файл

Есть ли способ открыть окно Windows Explorer из формы vba, перейти к определенному файлу и выбрать его так, чтобы имя файла было помещено в текстовое поле?

4b9b3361

Ответ 1

Проверьте этот фрагмент:

Private Sub openDialog()
    Dim fd As Office.FileDialog

    Set fd = Application.FileDialog(msoFileDialogFilePicker)

   With fd

      .AllowMultiSelect = False

      ' Set the title of the dialog box.
      .Title = "Please select the file."

      ' Clear out the current filters, and add our own.
      .Filters.Clear
      .Filters.Add "Excel 2003", "*.xls"
      .Filters.Add "All Files", "*.*"

      ' Show the dialog box. If the .Show method returns True, the
      ' user picked at least one file. If the .Show method returns
      ' False, the user clicked Cancel.
      If .Show = True Then
        txtFileName = .SelectedItems(1) 'replace txtFileName with your textbox

      End If
   End With
End Sub

Я думаю, это то, о чем вы просите.