atesh
Active member
whats the code at the keypress event thatll make a pressed lowercase letter uppercase. here is what tried, which obviously doesnt work but you get the idea:
Code:
Private Sub TextBox_KeyPress(ByVal sender As Object, _
ByVal e As System.Windows.Forms.KeyPressEventArgs) Handles TextBox.KeyPress
If e.KeyChar.IsLower(e.KeyChar) Then e.KeyChar = e.KeyChar.ToUpper(e.KeyChar)
End Sub