View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
mudraker[_386_] mudraker[_386_] is offline
external usenet poster
 
Posts: 1
Default Validating number of characters in textbox


Try

If not len(TextBox1) = 7 Then
MsgBox "The entry has to be 7 digits long"
TextBox1.SetFocus
Exit Sub
End If


--
mudraker
------------------------------------------------------------------------
mudraker's Profile: http://www.excelforum.com/member.php...fo&userid=2473
View this thread: http://www.excelforum.com/showthread...hreadid=540634