D
D.P. Roberts
I have a vbscript that appends data to a csv file, but I'd rather have it
append to a table in an Access database. Anyone know how to do this? Here's
the part of my code that appends to the csv file:
Set fsoOut = CreateObject("scripting.filesystemobject")
Set outFile = fsoOut.OpenTextFile("UserTrack.csv", ForAppending, True)
outFile.writeline (Now & "," & Computername & "," & Username)
outFile.close
Thanks in advance for any help with this...
append to a table in an Access database. Anyone know how to do this? Here's
the part of my code that appends to the csv file:
Set fsoOut = CreateObject("scripting.filesystemobject")
Set outFile = fsoOut.OpenTextFile("UserTrack.csv", ForAppending, True)
outFile.writeline (Now & "," & Computername & "," & Username)
outFile.close
Thanks in advance for any help with this...