I'm trying to lock a text box after 55 characters have been entered but for some reason it doesnt lock and lets me keep typing in the box. Below is the code I have for the box. Any ideas what I'm doing wrong? I've stepped through it step by step and the len(txtDescription) will = 55 but it doesnt seem to do the lock step even though it goes to it. Thanks
Code:
Private Sub txtDescription_Change()
On Error GoTo Err_ErrorHandler
Me.txtDescription.SetFocus
If Not IsNull(Me.txtDescription.Text) Then
Me.txtDescCount = Len(Me.txtDescription.Text) & _
" characters used"
Else
Me.txtDescription = 0
End If
If Len(Me.txtDescription.Text) = 55 Then
Me.txtDescription.Locked = True
End If
Exit_ErrorHandler:
Exit Sub
Err_ErrorHandler:
Resume Exit_ErrorHandler
End Sub
Code:
Private Sub txtDescription_Change()
On Error GoTo Err_ErrorHandler
Me.txtDescription.SetFocus
If Not IsNull(Me.txtDescription.Text) Then
Me.txtDescCount = Len(Me.txtDescription.Text) & _
" characters used"
Else
Me.txtDescription = 0
End If
If Len(Me.txtDescription.Text) = 55 Then
Me.txtDescription.Locked = True
End If
Exit_ErrorHandler:
Exit Sub
Err_ErrorHandler:
Resume Exit_ErrorHandler
End Sub