• ベストアンサー
※ ChatGPTを利用し、要約された質問です(原文:VB6.0 でのテキストファイルの表示)

VB6.0でのテキストファイル表示方法

このQ&Aのポイント
  • VB6.0でテキストファイルを表示する方法についてご教示ください。
  • VB6.0のテキストボックスにテキストファイルの内容を表示したいのですが、最初の一行しか表示されません。どのようにすれば全ての行を表示できるでしょうか?
  • VB6.0でファイルを読み込んでテキストボックスに表示する方法を教えてください。最初の一行しか表示されず困っています。

質問者が選んだベストアンサー

  • ベストアンサー
回答No.1

FileSystemObject を使いましょう。 参照設定で "Microsoft Scripting Runtime" を参照した場合は Dim textValue As String Dim fso As Scripting.FileSystemObject Dim ts As Scripting.TextStream Set fso = New Scripting.FileSystemObject Set ts = fso.OpenTextFile("D:\test.txt", ForReading) textValue = ts.ReadAll ts.Close Me.TextBox1.Text = textValue 参照設定をしない場合は Const ForReading = 1 Dim textValue As String Dim fso As Object Dim ts As Object Set fso = CreateObject("Scripting.FileSystemObject") Set ts = fso.OpenTextFile("D:\test.txt", ForReading) textValue = ts.ReadAll ts.Close Me.TextBox2.Text = textValue です。

関連するQ&A