Advertisement
ASP_Volume2 String Manipulation #28578

Make Uppercase or lowercase in Textbox

how to Make Uppercase or lowercase in Textbox

AI

สรุปโดย AI: This codebase represents a historical implementation of the logic described in the metadata. Our preservation engine analyzes the structure to provide context for modern developers.

ซอร์สโค้ด
original-source
'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
ความคิดเห็นดั้งเดิม (3)
กู้คืนจาก Wayback Machine