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.
Dim FSO As FileSystemObject
Dim TS As TextStream
Dim TempS As String
Dim Final As String
Set FSO = New FileSystemObject
Set TS = FSO.OpenTextFile(YourInputFilenameHere, ForReading)
Do Until TS.AtEndOfStream
TempS = TS.ReadLine
'use the Replace function here
TempS = Replace(TempS,"'",";")
Final = Final & TempS & vbCrLf
Loop
TS.Close
Set TS = FSO.OpenTextFile(YourOutputFilenameHere, ForWriting, True)
TS.Write Final
TS.Close
Set TS = Nothing
Set FSO = Nothing
[COLOR=blue]Public Sub Rewrite(strIn As String, strOut As String)
With New FileSystemObject
.OpenTextFile(strOut, ForWriting, True).Write Replace(.OpenTextFile(strIn, ForReading).ReadAll, ",", ";")
End With
End Sub[/color]