Logging of the messages is not built-in, but if you add this code to MessageDisplayByBit.vb, it will add a property to make it built-in
Private m_LogFile As String
Public Property LogFile As String
Get
Return m_LogFile
End Get
Set(value As String)
m_LogFile = value
End Set
End Property
Protected Overrides Sub OnTextChanged(e As EventArgs)
MyBase.OnTextChanged(e)
If Not String.IsNullOrEmpty(m_LogFile) Then
Using sw As New System.IO.StreamWriter(m_LogFile, True)
sw.WriteLine(Now & " - " & Me.Text)
End Using
End If
End Sub