i want to create a login text file at each login , that will be stored in system folder that can be viewed but not modified....so that the person who logged last can be traced...
here is my code : Is the code correct ??? if not what are the modifications ? i get a file created but am some how not convinced....
FILENAME = "LOGIN.TXT"
FileOpen(1, "LOGIN.TXT", OpenMode.Append)
WriteLine(1, username, password, role)
FileClose(1)
cya
Rohan