1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
|
Option Explicit
'
' Tiens la procédure de log...
'
Sub LogInfo(stMess As String)
Dim stFile As String 'Nom du fichier log
Dim iLog As Integer 'Numéro fichier log
stFile = "c:\tmp\toto.log"
iLog = FreeFile
Open stFile For Append As #iLog
Print #iLog, Format(Now, "dd/mm/yyyy hh:mm:ss"); vbTab; stMess
Close #iLog
End Sub
'
' et une procédure de test pour tester ...!
'
Sub TEst()
LogInfo ("Lancement de test")
If MsgBox("Oui ou non ..?", vbYesNo) = vbYes Then
LogInfo ("L'utilisateur à répondu Oui ")
Else
LogInfo ("Ben il a répondu non")
End If
DoEvents
'Pour le fun affiche le message
Shell "notepad c:\tmp\toto.log"
End Sub |
Partager