gpt4 book ai didi

vba - 在 Word VBA 中调用 Application.GetOpenFilename 方法有什么问题?

转载 作者:行者123 更新时间:2023-12-05 00:28:59 30 4
gpt4 key购买 nike

也就是说,我在按钮处理程序中调用了以下代码段:

TextBox1.Text = Application.GetOpenFilename("All files (*.*),*.*", _
1, "Open the Raw Data Files", , False)
If TextBox1.Text = "False" Then TextBox1.Text = ""

错误说:“编译器错误:找不到方法或数据成员”

提前致谢!

最佳答案

Word 中没有Application.GetOpenFilename

您需要改用 FileDialog。这是一个简单的例子:

Private Sub CommandButton1_Click()
Dim s As Variant
Dim Res As Integer

Dim dlgSaveAs As FileDialog
Set dlgSaveAs = Application.FileDialog( _
FileDialogType:=msoFileDialogSaveAs)
Res = dlgSaveAs.Show
If Not Res = 0 Then
For Each s In dlgSaveAs.SelectedItems 'There is only one
MsgBox s
Next
End If
End Sub

关于vba - 在 Word VBA 中调用 Application.GetOpenFilename 方法有什么问题?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10159216/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com