◆FileDialogオブジェクト
----------------------------------------------------------------
Sub Sample1()
With Application.FileDialog(msoFileDialogFolderPicker)
If .Show = True Then
MsgBox .SelectedItems(1)
End If
End With
End Sub
----------------------------------------------------------------
最終更新:2012年02月11日 13:01