Sub TextBox1_KeyPress (key)
If StrLength(Textbox1.Text) >=9 Then
Textbox1.Text= SubString(Textbox1.Text,0,9)
End If
End Sub
Sub TextBox1_KeyPress (key)
If StrLength( textbox1.Text) >=10 Then
If Asc(key)>31 Then
Textbox1.IgnoreKey
End If
End If
End Sub
Sub TextBox1_KeyPress (key)
If StrLength( textbox1.Text) >=9 Then
If Asc(key)>31 Then
Textbox1.Text= SubString(Textbox1.Text,0,9)
Textbox1.SelectionStart = 9
End If
End If
End Sub
Sub TextBox1_KeyPress (key)
If StrLength( textbox1.Text) >=9 Then
If Asc(key)>31 Then
ss = Textbox1.SelectionStart
Textbox1.Text= SubString(Textbox1.Text,0,9)
Textbox1.SelectionStart = ss
End If
End If
End Sub
Sub TextBox1_KeyPress (key)
If StrLength(textbox1.Text) >=9 AND Asc(key) > 31 Then
s = textbox1.SelectionStart
Textbox1.Text= SubString(Textbox1.Text,0,9)
textbox1.SelectionStart = s
End If
End Sub