Hello all,
I have a form that has a Timer and a label and a RichTextBox.
What I am trying to figure out is how to get the Label to say how many more characters are left in the TextBox.
Here is what I have.
Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick
Label1.Text = (RichTextBox1.MaxLength)
End Sub
It does work w/ the max length but when I type it does not change.
Plz Help :)