Can anybody tell me if there is any option to validate data in textbox in tollbox or we have write a code for it..if so plz pass me a sample snippet of code
Thanks in advance
Thanks in advance
Dim stInput As String stInput = Trim(TextBox1.Text) If Len(stInput) < 6 Then MsgBox "Input must be 6 characters or more" TextBox1.SetFocus End If
Dim stInput As String stInput = Trim(TextBox1.Text) If Len(stInput) < 6 Then MsgBox "Input must be 6 characters or more" TextBox1.SetFocus End If
Comment