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.
Const ForReading = 1
Const ForWriting = 2
Const cFile = "C:\Documents and Settings\anpowell\Desktop\IP_Modify_JH\IP_List.txt"
Set objFSO = CreateObject("Scripting.FileSystemObject")
Set objFile = objFSO.OpenTextFile(cFile, ForReading)
Do Until objFile.AtEndOfStream
strLine = objFile.ReadLine
strContents = strContents & Left(strLine, InStrRev(strLine,".")-1) & vbCrLf
Loop
objFile.Close
Set objFile = objFSO.OpenTextFile(cFile, ForWriting)
objFile.Write strContents
objFile.Close