VBcoders Guest



Don't have an account yet? Register
 


Forgot Password?



1. Convert the small case Text Box value to UPPER CASE. 2. Places the cursor after the text value a

by K.C.P.Menon (1 Submission)
Category: Custom Controls/Forms/Menus
Compatability: VB 6.0
Difficulty: Unknown Difficulty
Originally Published: Thu 29th July 2004
Date Added: Mon 8th February 2021
Rating: (1 Votes)

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



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

Download this snippet    Add to My Saved Code

1. Convert the small case Text Box value to UPPER CASE. 2. Places the cursor after the text value a Comments

No comments have been posted about 1. Convert the small case Text Box value to UPPER CASE. 2. Places the cursor after the text value a. Why not be the first to post a comment about 1. Convert the small case Text Box value to UPPER CASE. 2. Places the cursor after the text value a.

Post your comment

Subject:
Message:
0/1000 characters