我有一份目录,有几卷txt文档。 说 明
hi.txt
hello.txt
hello_test.txt
test.txt
借助于VBA的档案对话,我如何能够在下降时只展示“测试.txt”匹配文档(即最后两个)。 或者,我只能使用 * 过滤器?
看来应当做到以下几点:
Sub TestIt()
Dim test As Variant silly vba for not having a return type..
test = Application.GetOpenFilename(FileFilter:="test (*test.txt), *test.txt")
End Sub
编辑:在有明显缺陷的情况下澄清:我想过滤“<>> 测试.txt”而不是“.txt”文档,因此,我只能从选择人中挑选。