i'm using the following code to create a bat file in vb
but its generating some sort of error but it gives me a blank error decription and a err number of 0 i think there's somthing basic i'm missing but i cant figure it out :S one of those times where your having a blank out lolVB Code:
Dim ff on error goto er: ff = FreeFile Open "exp.bat" For Output As #ff Print #ff, "At" & " " & timee & " " & "/interactive" & " " & "cmd.exe" Close #ff er: MsgBox (err.Description) MsgBox (err.Number)



Reply With Quote
