FileDialog オブジェクトを使用して、Access によって使用されるファイル ダイアログ ボックスを表示したり、ユーザーがどのファイルを選択したかを調べたりすることができます。 FileDialog オブジェクトの SelectedItems プロパティには、ユーザーが選択したファイルのパスが格納されます。 For...Each ループを使用すると、このコレクションを列挙し、各ファイルを表示できます。SelectedItems プロパティはコレクションの反復子を構築して返します。
次の例では、ユーザーが選択したファイルを FileList という名前のリスト ボックスに追加します。
注:
この例は、Microsoft Office 12.0 Object Library への参照を必要とします。
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
サポートとフィードバック
Office VBA またはこの説明書に関するご質問やフィードバックがありますか? サポートの受け方およびフィードバックをお寄せいただく方法のガイダンスについては、Office VBA のサポートおよびフィードバックを参照してください。