FileDialog-Eigenschaft
Gilt für
Anwendungsobjekt |
Gibt ein FileDialog- Objekt zurück, das eine einzelne Instanz eines Dateidialogfelds darstellt.
Ausdruck . DateiDialog ( dialogType )
Ausdruck Erforderlich. Ein Ausdruck, der eines der Objekte in der Liste Gilt für zurückgibt.
dialogType Erforderlich MsoFileDialogType . Der Typ des Dateidialogfelds.
MsoFileDialogType kann eine dieser MsoFileDialogType-Konstanten sein. |
msoFileDialogFilePicker |
msoFileDialogFolderPicker |
msoFileDialogOpen Wird in Microsoft Access nicht unterstützt. |
msoFileDialogSaveAs Wird in Microsoft Access nicht unterstützt. |
Bemerkungen
Die Konstanten msoFileDialogOpen und msoFileDialogSaveAs werden in Microsoft Office Access 2007 nicht unterstützt.
Beispiel
Dieses Beispiel veranschaulicht, wie das FileDialog- Objekt verwendet wird, um ein Dialogfeld anzuzeigen, in dem der Benutzer eine oder mehrere Dateien auswählen kann. Die ausgewählten Dateien werden dann zu einem Listenfeld namens FileList hinzugefügt.
Private Sub cmdFileDialog_Click()
' Requires reference to Microsoft Office 11.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", "*.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 our 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
No comments:
Post a Comment