Hi,
Two questions
1. In windows application if we put on the below code, it will identify whether caps lock is on or not
But in web application too, i want to identify, whether the caps lock is on or not.
How do I do that?
2. in visual basic
Private Sub Text1_GotFocus( )
End Sub
I want the equivalent in .net windows application, in web application we can go for script, but wat will be event in windows application.
Regards
cmrhema
Two questions
1. In windows application if we put on the below code, it will identify whether caps lock is on or not
Code:
if (TextBox.IsKeyLocked(Keys.CapsLock)) { MessageBox.Show("caps lock on"); }
How do I do that?
2. in visual basic
Private Sub Text1_GotFocus( )
End Sub
I want the equivalent in .net windows application, in web application we can go for script, but wat will be event in windows application.
Regards
cmrhema
Comment