Visual Basic 6.0 FileListBox

时间:2015-09-03 13:02:54

标签: vba

如何在文件列表框中仅显示特定的文件类型?例如,显示整个计算机目录中的所有.docx文件。我还希望人们从“文件列表框”中列出的文件中进行选择,并通过命令按钮打开它。

1 个答案:

答案 0 :(得分:0)

FileListBox具有“Pattern”属性。在那里输入* .docx。 另外:添加一个DirListBox和一个DriveListBox。

Private Sub Drive1_Change()
Dir1.Path=Drive1.Drive
End Sub

Private Sub Dir1_Change()
File1.Path=Dir1.Path
End Sub