atesh
Freshman
what's the code at the keypress event that'll make a pressed lowercase letter uppercase. here is what tried, which obviously doesn't work but you get the idea:
Visual Basic:
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