vb6 点击窗体按钮打开同一路径下的txt文件查看 怎么写代码?
1个回答
展开全部
private sub command1_click()
open app.path & "\1.txt" for input as #1
while not eof(1)
line input #1,s
text1=text1 & s & vbnewline
wend
close #1
end sub
open app.path & "\1.txt" for input as #1
while not eof(1)
line input #1,s
text1=text1 & s & vbnewline
wend
close #1
end sub
更多追问追答
追问
我的意思是打开TXT文件查看,并不是读取
追答
用commondialog控件:
private sub command1_click()
On Error GoTo ErrHandler
'设置过滤器。
CommonDialog1.Filter = "All Files (*.*)|*.*|Text Files (*.txt)|*.txt"
'指定缺省过滤器。
CommonDialog1.FilterIndex = 2
'显示“打开”对话框。
CommonDialog1.ShowOpen
'显示文件名。
Msgbox CommonDialog1.FileName
Exit Sub
ErrHandler:
'用户按“取消”按钮。
Msgbox "未选定文件"
Exit Sub
End Sub
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询