Application.FileDialog プロパティ (Access)

ファイルに関するダイアログ ボックスの 1 つのインスタンスを表す FileDialog オブジェクトを取得します。 読み取り専用です。

構文

FileDialog (dialogType)

expressionApplication オブジェクトを 表す変数。

パラメーター

名前 必須 / オプション データ型 説明
dialogType 必須 MsoFileDialogType ダイアログ ボックスの種類を示す定数 MsoFileDialogType を指定します。

注釈

定数 msoFileDialogOpen および定数 msoFileDialogSaveAs は Access ではサポートされていません。

[ファイルを開く] ダイアログを使用してファイルを選択すると、選択したファイルを含むディレクトリがプロセスの現在のディレクトリになります。 つまり、ディレクトリは、現在のダイクタが変更されるか、プロセスが終了するまでロックされます。 これにより、ディレクトリの削除、移動、または名前の変更ができなくなります。

この例では、 FileDialog オブジェクトを使用して、ユーザーが 1 つ以上のファイルを選択できるようにするダイアログ ボックスを表示する方法を示します。 選択したファイルが FileList という名前のリスト ボックスに追加されます。

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", "*.MDB" 
      .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

サポートとフィードバック

Office VBA またはこの説明書に関するご質問やフィードバックがありますか? サポートの受け方およびフィードバックをお寄せいただく方法のガイダンスについては、Office VBA のサポートおよびフィードバックを参照してください。