Function GetFileName(ByVal DialogType As Integer) As String
'参数DialogType说明:
'1.“打开”对话框
'3.“文件选取器”对话框
'4.“文件夹选取器”对话框
'不对dlgOpen进行声明的原因是:不需要引用Microsoft Office 11.0 Object Library
Set dlgOpen = Application.FileDialog(DialogType)
With dlgOpen
.AllowMultiSelect = False
.Show
End With
If dlgOpen.SelectedItems.Count > 0 Then
GetFileName = dlgOpen.SelectedItems(1)
Else
GetFileName = ""
End If
Set dlgOpen = Nothing
End Function
参数2为“另存为”对话框,采用上述返回值不太合适。打开另存为对话框函数:
Function FileSaveAs()
'不对dlgOpen进行声明的原因是:不需要引用Microsoft Office 11.0 Object Library
Set dlgOpen = Application.FileDialog(2)
With dlgOpen
.AllowMultiSelect = False
.Show
End With
Set dlgOpen = Nothing
End Function