Advertisement
4_2005-2006 Files/ File Controls/ Input/ Output #150697

Comma De-Limited

This code will read a file line by line and create a comma delimited text file which can then be imported into Excel.

AI

AI Summary: This codebase represents a historical implementation of the logic described in the metadata. Our preservation engine analyzes the structure to provide context for modern developers.

Source Code
original-source
Private Sub Form_Load ()
Dim instring As String
Dim outstring As String
On Error GoTo Clnup
Open "FileRead.txt" For Input As #1 ' file opened for reading
Open "FileOutPut.txt" For Output As #2 ' file created 
 
Line Input #1, instring
While Not EOF(1)
  Line Input #1, instring
  If Len(outstring) = 0 Then
    outstring = instring
  Else
    outstring = outstring & "," & instring
  End If
  
Wend
Print #2, outstring
Close #1
Close #2
Clnup:
Close
End
End Sub
Upload
Original Comments (3)
Recovered from Wayback Machine