Skip to content

Planet-Source-Code/amp-6047-amp-6075-amp-6017-amp-6070-make-uppercase-or-lowercase-in-textbox__1-48480

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 

Repository files navigation

Make Uppercase or lowercase in Textbox

Description

how to Make Uppercase or lowercase in Textbox

More Info

Submitted On
By សុខា
Level Beginner
User Rating 5.0 (15 globes from 3 users)
Compatibility VB 6.0
Category String Manipulation
World Visual Basic
Archive File

Source Code

'This to change it to Uppercase while typing
Private Sub Text1_KeyPress(KeyAscii As Integer)
  KeyAscii = Asc(UCase(Chr(KeyAscii)))
End Sub
'This to change it to Lower case while typing
Private Sub Text1_KeyPress(KeyAscii As Integer)
  KeyAscii = Asc(LCase(Chr(KeyAscii)))
End Sub

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published