Textbox’a Karakter Sayı Sınırlaması Getirmek

Textbox’a karakter sayı sınırlaması getirmek……


Private Sub TextBox2_Change()
If Len(Me.TextBox2.Text) > 3 Then
Me.TextBox2.Text = Left(Me.TextBox2.Text, 3)
End If
End Sub

Paylaşmayı unutmayın!
0 0 votes
Article Rating
Subscribe
Bildir
guest
0 Yorum
Inline Feedbacks
View all comments