1
Support Questions / Re: Alarms Logging?
« on: August 07, 2013, 11:01:14 AM »
Good stuff thank you all, I was able to get this to work for my application with the following modifications. For the events section I had to change DisplayMessageByValue to MyBase, other than that it worked great.
Code: [Select]
Protected Overrides Sub OnTextChanged(e As System.EventArgs)
MyBase.OnTextChanged(e)
If m_LogFile <> "" Then
If Me.Text <> "" Then
Dim sw As New System.IO.StreamWriter(m_LogFile & "\ALARM" & Format(Now(), "MMddyyyy") & ".txt", True)
sw.WriteLine(DateString & " " & TimeOfDay & " " & MyBase.Text)
sw.Close()
End If
For Each file As IO.FileInfo In New IO.DirectoryInfo(LogFile).GetFiles("*.txt")
If (Now - file.CreationTime).Days >= m_DaysToKeep Then file.Delete()
Next
End If
End Sub