ascii in vb.net

Jos

Member
Joined
Jan 12, 2004
Messages
17
Hi me again ,

I ahd a question...;

In my application I have a login-screen.
I have a textbox where you fill in your password, what i want to do is when i enter this textbox or Im in it and i activate capslock that is get a balloon description like windows does .
I have the code to creat this balloon, but i dont know how to check wheter its activated or not ....

Can anyone help me out



Grtzzz Jos
 
Code:
Private Sub TextBox1_KeyDown(ByVal sender As Object, ByVal e As System.Windows.Forms.KeyEventArgs) Handles TextBox1.KeyDown
        If e.Modifiers = Keys.CapsLock Then
            caps lock pressed
        End If
    End Sub

also you gave this thread a bit of a misleading title as it doesnt really have anything to do with ascii.
 
Back
Top