请问在VB中怎样实现点击按钮以后弹出系统内的打开文件对话框,然后打开一个文本文档

并在text中显示文档的所有内容显示出来,急!!!... 并在text中显示文档的所有内容显示出来,急!!! 展开
 我来答
匿名用户
2011-03-03
展开全部
Private Declare Function icePub_readFileToText Lib "icePubDll.dll" (ByVal strFilename As String, ByVal strText As String, ByVal maxLen As Integer) As Integer

Dim strFilename As String
Dim a2 As Integer
Dim strText As String

CommonDialog1.Filter = "*.txt|*.txt|All(*.*)|*.*"
CommonDialog1.Action = 1
If CommonDialog1.FileName <> "" Then
strFilename = CommonDialog1.FileName

strText = Space(1024 + 1)
a2 = icePub_readFileToText(strFilename, strText, 1024)
Text1.Text = strText

End If

下载新版:
http://icese.net/VC/icePubDll.rar
更多追问追答
追问
显示 "*.txt|*.txt|All(*.*)|*.*"
为无效外部过程, 可以输出到list里吗?还有读取是在单击按钮事件以后发生
追答
CommonDialog1是一个标准控件,需要手动添加。把从Dim开始的所有语句放到按钮事件里即可
zhao199024
2012-05-09
知道答主
回答量:2
采纳率:0%
帮助的人:2.9万
展开全部
Private Sub command1_click()
Text1.Text = " "
Dim nline As String
Open "D:\T1.txt" For Input As #1
Do Until EOF(1)
Line Input #1, nline '循环 每次读取一行
Text1.Text = Text1.Text & nline & Chr(13) + Chr(10)
Loop
End Sub
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式