Two line code that restricts space at the begining of the TextBox
Two line code that restricts space at the begining of the TextBox
Rate Two line code that restricts space at the begining of the TextBox
(1(1 Vote))
'FOR DOUBTS MAIL : [email protected]
If Left(Text1, 1) = " " Then Text1 = LTrim(Text1)
End Sub
Private Sub Text1_GotFocus()
Text1 = LTrim(Text1)
End Sub
Two line code that restricts space at the begining of the TextBox Comments
No comments yet — be the first to post one!
Post a Comment