When the following script is run i get a type mismatch error at the line where i call the CDate function.
dim duedate
dim diff
Set objFSO = CreateObject("Scripting.FileSystemObject")
Set objFile = objFSO.OpenTextFile("c:\duedate.txt", 1)
strtemp = objFile.readline
duedate = CDate(strtemp)
diff = datediff("d", Date(), duedate)
the input file contains the date : 02/29/2005 i have tried to enclose the date with ## and "" but to no avail. Any suggestions
dim duedate
dim diff
Set objFSO = CreateObject("Scripting.FileSystemObject")
Set objFile = objFSO.OpenTextFile("c:\duedate.txt", 1)
strtemp = objFile.readline
duedate = CDate(strtemp)
diff = datediff("d", Date(), duedate)
the input file contains the date : 02/29/2005 i have tried to enclose the date with ## and "" but to no avail. Any suggestions