gpt4 book ai didi

vba - FileDialog 保留以前的过滤器

转载 作者:行者123 更新时间:2023-12-04 14:45:56 27 4
gpt4 key购买 nike

我正在 Access 数据库中制作表单我需要多次打开文件对话框窗口。我只是不明白为什么在我更改了几次选项值并打开文件对话框窗口后它没有更改过滤器。

Public Sub Command17_Click()
Dim fd As FileDialog
Set fd = Application.FileDialog(msoFileDialogOpen)
With fd
.AllowMultiSelect = False
If Option18.Value = True Then
.Filters.Add "Access", "*.accdb", 1
Else
If Option20.Value = True Then
.Filters.Add "Excel", "*.xlsx", 1
End If
End If
.Show

Text0.Value = fd.SelectedItems(1)
End With
Set fb = Nothing
End Sub

最佳答案

您需要清除过滤器。

With .Filters
.Clear
.Add "Access", "*.accdb", 1
'...
End with

关于vba - FileDialog 保留以前的过滤器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44270091/

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