I have a form where I have a text box counting the # of characters. I am using the following code:
It works fine, but when I proceed to the next record, it keeps the # of characters from the first record. I want it to show the # that is on the new record.
Any help would be great.
Private Sub Goal1Comments_K eyDown(KeyCode As Integer, Shift As Integer)
'len counter for Goal 1 comments
Me.MaxNo1 = Len(Goal1Commen ts.Text)
In the form I have set the text box default value to "=Len([Goal1Comments])"'len counter for Goal 1 comments
Me.MaxNo1 = Len(Goal1Commen ts.Text)
It works fine, but when I proceed to the next record, it keeps the # of characters from the first record. I want it to show the # that is on the new record.
Any help would be great.
Comment