Visual Basic

Moderators: None (Apply to moderate this forum)
Number of threads: 18013
Number of posts: 55386

This Forum Only
Post New Thread
Single Post View       Linear View       Threaded View      f

Report
How to Read/Display Formatted Txt Files Contents in VB6 Posted by marl24 on 10 Nov 2010 at 12:21 AM
Just want to ask on how to read/display the contents of a formatted or multi-line text file in VB6?
Report
Re: How to Read/Display Formatted Txt Files Contents in VB6 Posted by pseudocoder on 11 Nov 2010 at 11:17 AM
A basic text file might be something like below if that's what you're after.

   Dim fstr As String
   
   Open "path to file" For Input As #1
   
   Do While Not EOF(1)
      Line Input #1, fstr
      MsgBox fstr
   Loop
   
   Close #1




 

Recent Jobs

Official Programmer's Heaven Blogs
Web Hosting | Browser and Social Games | Gadgets

Popular resources on Programmersheaven.com
Assembly | Basic | C | C# | C++ | Delphi | Flash | Java | JavaScript | Pascal | Perl | PHP | Python | Ruby | Visual Basic
© Copyright 2011 Programmersheaven.com - All rights reserved.
Reproduction in whole or in part, in any form or medium without express written permission is prohibited.
Violators of this policy may be subject to legal action. Please read our Terms Of Use and Privacy Statement for more information.
Operated by CommunityHeaven, a BootstrapLabs company.