打开Windows资源管理器并选择一个文件

Qui*_*555 26 excel vba excel-vba

有没有办法从vba表单打开Windows资源管理器窗口,导航到特定文件并选择它,以便文件名放在文本框中?

eab*_*ham 75

看看这个片段:

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
Run Code Online (Sandbox Code Playgroud)

我想这就是你要求的.