Jos Posted January 15, 2004 Posted January 15, 2004 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 I'm 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 don't know how to check wheter it's activated or not .... Can anyone help me out Grtzzz Jos Quote
Administrators PlausiblyDamp Posted January 15, 2004 Administrators Posted January 15, 2004 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 doesn't really have anything to do with ascii. Quote Posting Guidelines FAQ Post Formatting Intellectuals solve problems; geniuses prevent them. -- Albert Einstein
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.