[求助]浏览功能
我有一大堆.doc 和 .txt文档,放在了D:\doc文件夹下,我想要实现的功能是:
我点击窗体上的“浏览”按钮,D:\doc 下的所有.doc,.txt文档的名字全部在
listbox中列出,然后我在listbox中点击相应的文件名自动用word打开。
不要代码,只求朋友们帮帮忙想个解决的办法!感谢……
修改部分
Private Sub Command1_Click()
Dim a() As String
Dim b() As String
Dim i As Integer
If Trim(Text1.Text) = vbNullString Then Exit Sub
If Right(Text1.Text, 1) <> "\" Then Text1.Text = Text1.Text & "\"
If Dir$(Trim$(Text1.Text), vbDirectory) = "" Then Exit Sub
If GetFileList(Trim$(Text1.Text), a, "*.doc") Then
For i = LBound(a) To UBound(a)
List1.AddItem a(i)
Next
End If
If GetFileList(Trim$(Text1.Text), b, "*.txt") Then
For i = LBound(b) To UBound(b)
List1.AddItem b(i)
Next
End If
End Sub