Another option would be to make a copy of the BasicLabel.vb file, give it a new name, then edit the code to make a custom control.
- At Line 30, change to Public Class TimeStampLabel
- Go to Line 519 and strip all of the code from the UpdateText subroutine
- Add this code:
Private LastValue
Private Sub UpdateText()
If m_Value="True" and LastValue<>"True" then
MyBase.Text=Now
End If
Lastvalue=m_Value
End Sub