vb读取文本文件某行的内容

vb读取文本文件第二行的全部内容.附:文本文件路径:C:\1.txtVB软件输出地方:Label1.caption... vb读取文本文件第二行的全部内容.

附:
文本文件路径:C:\1.txt
VB软件输出地方:Label1.caption
展开
 我来答
zdingyun
推荐于2017-10-07 · 知道合伙人软件行家
zdingyun
知道合伙人软件行家
采纳数:15429 获赞数:48168
1982年上海业余工业大学化工系毕业 现退休

向TA提问 私信TA
展开全部

VB可以使用二进制方式打开文本文件,以Get 语句读到字节数组,再使用StrConv 函数将其转换为字符串,而后使用Split函数文本的字符串数组及总句数,使用InputBox 函数来输入需要读某行文本。

Get 语句

将一个已打开的磁盘文件读入一个变量之中。

StrConv 函数

返回按指定类型转换的 Variant (String)。

Split函数

返回一个下标从零开始的一维数组,它包含指定数目的子字符串。

InputBox 函数

在一对话框来中显示提示,等待用户输入正文或按下按钮,并返回包含文本框内容的 String。

以下是使用上述函数等的具体代码:

Private Sub Command3_Click()
    Dim strWj As String
    Dim strJ() As String
    Dim aryContent() As Byte
    Dim i As Long
    Dim j As Long
    CommonDialog1.CancelError = True ' 设置“CancelError”为 True
    On Error GoTo ErrHandler
    CommonDialog1.Flags = cdlOFNHideReadOnly    ' 设置标志
    ' 设置过滤器
    CommonDialog1.Filter = "All Files (*.*)|*.*|Text Files" & "(*.txt)|*.txt|Batch Files (*.bat)|*.bat"
    CommonDialog1.FilterIndex = 2    ' 指定缺省的过滤器
    CommonDialog1.ShowOpen    ' 显示“打开”对话框
    ' 显示选定文件的名字
    'MsgBox CommonDialog1.FileName
    Open CommonDialog1.FileName For Binary As #1
        ReDim aryContent(LOF(1) - 1)
        Get #1, , aryContent
    Close #1
    strWj = StrConv(aryContent, vbUnicode)
    Text1 = strWj
    strJ = Split(strWj, vbCrLf)
    i = UBound(strJ)
    Text2 = i + 1
    j = InputBox("输入需要显第几句", j)
    j = j - 1
    Label1.Caption = j + 1 & ":" & strJ(j)
    Exit Sub
ErrHandler:
    ' 用户按了“取消”按钮
    Exit Sub
End Sub

dl_会飞的青蛙
2008-06-27 · TA获得超过2456个赞
知道大有可为答主
回答量:3294
采纳率:0%
帮助的人:3343万
展开全部
dim intCount as integer
dim s as string

intCount = 1

Open "C:\1.txt" For Input As #1
Do While Not EOF(1)
Line Input #1, s
if intCount=2 then
Label1.caption=s
exit do
end if
intCount = intCount + 1
Loop
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
II个人的寂寞
推荐于2017-09-29 · TA获得超过1115个赞
知道小有建树答主
回答量:423
采纳率:0%
帮助的人:457万
展开全部
调试通过:
Private Sub Form_Load()
Dim s1 As String
Dim s2 As String
Open "c:\1.txt" For Input As #1
Line Input #1, s1
Line Input #1, s2
Label1.caption = s2
Close #1
End Sub
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 1条折叠回答
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式