Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
[COLOR=blue]Public Sub Rewrite2(strIn As String, strOut As String)
Dim Instream As Object
With New FileSystemObject
Set Instream = .OpenTextFile(strIn, ForReading)
Instream.SkipLine
.OpenTextFile(strOut, ForWriting, True).Write Instream.ReadAll
End With
End Sub[/color]
[COLOR=blue]Public Sub Rewrite2(strIn As String, strOut As String)
Dim Instream As Object
With New FileSystemObject
Set Instream = .OpenTextFile(strIn, ForReading)
Instream.SkipLine
.OpenTextFile(strOut, ForWriting, True).Write Replace(Instream.ReadAll, ";", ",")
End With
End Sub[/color]