Compartir vía


Mostrar y usar el cuadro de diálogo de archivos

El objeto FileDialog permite mostrar el cuadro de diálogo Archivo usado por Access y determinar qué archivos seleccionó el usuario. La propiedad SelectedItems del objeto FileDialog contiene las rutas de acceso a los archivos seleccionados por el usuario. Mediante el uso de un para... Cada bucle, puede enumerar esta colección y mostrar cada archivo; la propiedad SelectedItems construye y devuelve un iterador sobre la colección.

En el ejemplo siguiente, los archivos seleccionados por el usuario se agregan a un cuadro de lista denominado FileList.

Nota:

Este ejemplo requiere una referencia a la Biblioteca de objetos de Microsoft Office 2007.

Private Sub cmdFileDialog_Click() 
 
'Requires reference to Microsoft Office 12.0 Object Library. 
 
   Dim fDialog As Office.FileDialog 
   Dim varFile As Variant 
 
   'Clear listbox contents. 
   Me.FileList.RowSource = "" 
 
   'Set up the File Dialog. 
   Set fDialog = Application.FileDialog(msoFileDialogFilePicker) 
   With fDialog 
      'Allow user to make multiple selections in dialog box. 
      .AllowMultiSelect = True 
             
      'Set the title of the dialog box. 
      .Title = "Please select one or more files" 
 
      'Clear out the current filters, and add our own. 
      .Filters.Clear 
      .Filters.Add "Access Databases", "*.MDB; *.ACCDB" 
      .Filters.Add "Access Projects", "*.ADP" 
      .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 
         'Loop through each file selected and add it to the list box. 
         For Each varFile In .SelectedItems 
            Me.FileList.AddItem varFile 
         Next 
      Else 
         MsgBox "You clicked Cancel in the file dialog box." 
      End If 
   End With 
End Sub

Soporte técnico y comentarios

¿Tiene preguntas o comentarios sobre VBA para Office o esta documentación? Vea Soporte técnico y comentarios sobre VBA para Office para obtener ayuda sobre las formas en las que puede recibir soporte técnico y enviar comentarios.