1. Convert the small case Text Box value to UPPER CASE. 2. Places the cursor after the text value a
1. Convert the small case Text Box value to UPPER CASE. 2. Places the cursor after the text value as soon as it is entered for continuous
Rate 1. Convert the small case Text Box value to UPPER CASE. 2. Places the cursor after the text value a
(2(2 Vote))
Private Sub Text1.Text_KeyPress(KeyAscii As Integer)
'Below line of Code,converts the small case Text Box value to UPPER CASE.
KeyAscii = Asc(UCase(Chr(KeyAscii)))
'Below line, places the cursor after the text value as soon as it is
'entered for continuous and uninterrupted typing.
SendKeys "{end}"
End Sub
1. Convert the small case Text Box value to UPPER CASE. 2. Places the cursor after the text value a Comments
No comments yet — be the first to post one!
Post a Comment