![]() |
#2
VBnext2013-07-24 11:25
回复 楼主 VBnext
|
With CommonDialog1
.DialogTitle = "打开"
.CancelError = False
.Filter = "all log (*.log)|*.*"
.Flags = cdlOFNAllowMultiselect Or cdlOFNExplorer
.ShowOpen
If Len(.FileName) = 0 Then
Exit Sub
End If
filemanyaddress = .FileName
End With
files = Split(filemanyaddress, Chr(0))
ReDim a(UBound(files))
For I = 1 To UBound(files)
a(I) = files(0) & "\" & files(I)
Next I
打开超过10个文件提示如下
只有本站会员才能查看附件,请 登录
怎么怎么解决呀