Option Explicit
'This one line code makes the contents of text box in capital. As you keep in typing it. Just copy this code keypress
Private Sub Text1_KeyPress(KeyAscii As Integer)
KeyAscii = Asc(UCase(Chr(KeyAscii)))
End Sub
Sunday, April 4, 2010
VB6 Code - Menjadikan Input Textbox Kapital
Labels:
Controls