Im trying to read my file in vbs and put it in a variable, but I keep getting a error stating that my input is in past the end of the file, and I don't know why..
Const ForReading = 1
Set objFSO = CreateObject("Scripting.FileSystemObject")
Set objTextFile = objFSO.OpenTextFile("holder.canz", ForReading)
strText = objTextFile.ReadAll
objTextFile.Close
WScript.Echo strText