Ola galerinha,
Alguém sabe algum código para salvar um log.txt caso algum intruso abra o Visual Basic e modifique algum código?
Obs.: Aqui no serviço não podemos colocar senha no projeto.
Offices 2003 ate 2016
Ate o momento tenho esse código:
Private Sub Workbook_Open()
Dim strFile_Path As String
strFile_Path = "log file.txt" '"C:UsersHPDesktoplog file.txt"
Open strFile_Path For Append As #1
Write #1, Now() & " : " & " opened " & wrtstring
Close #1
End Sub
Private Sub Workbook_BeforeClose(Cancel As Boolean)
Dim strFile_Path As String
strFile_Path = "log file.txt" '"C:UsersHPDesktoplog file.txt"
Open strFile_Path For Append As #1
Write #1, Now() & " : " & " closed " & wrtstring
Close #1
End Sub
Postado : 29/03/2018 3:34 pm