Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
4answers
790 views

Stop the Bell on CTRL-A (WinForms)

Any ideas how to stop the system bell from sounding when CTRL-A is used to select text in a Winforms application? Here's the problem. Create a Winforms project. Place a text box on the form and add ...
2
votes
3answers
450 views

How to get pressed char from System.Windows.Input.KeyEventArgs?

I have System.Windows.Input.KeyEventArgs e variable.I want to get real char.Example,i press } button on keyboard .normally it returns string like "oem.." but i want to get } char.How to do ? [EDIT] I ...
2
votes
3answers
723 views

c# key event key is letter

Is there a build mechanism to determine if a key is letter/number in the KeyEventArgs in c#?? Or do i have to make it myself? Thanks! OK, edit: letter A-Z, number 0-9. But i already found this link ...
1
vote
1answer
240 views

KeyEventArgs.KeyData, KeyEventArgs.KeyCode and KeyEventArgs.KeyValue

I have question about the KeyEventArgs's KeyCode and KeyData and KeyValue. KeyCode and Keydata are Keys type, but I don't know what the difference between them is. For KeyValue, I don't know what it ...
1
vote
0answers
193 views

Convert KeyEventArgs to KEYDBINPUT struct

I am working on a networked system (in C#) where on one computer I receive keyboard input via a low level hook and then transmit the input to another computer where it has to be injected. The hook ...
1
vote
2answers
592 views

How to forbid backspace key in WPF

How can I forbid the Backspace-Key as easy as possible in a WPF-Application? The KeyDown-Event don't catch at the DEL and the Backspace-Key. Thank you!
1
vote
4answers
6k views

No overload for 'insert_method_here' matches delegate 'System.EventHandler'

I am trying to build a program that has a button, and everytime that button is clicked, it moves the button and adds to the score. However, I am trying to disable the Enter key, or suppress the ...
0
votes
2answers
68 views

I coudlnt catch ctrl+space key event in WinForm

I couldnt catch ctrl+space key event in winForm.But i wrote this code ((e.KeyCode==Keys.Space)&&(e.Modifiers==Keys.Control)) it didnt work.What is the problem? [EDIT]sorry.problem is in ...
0
votes
0answers
188 views

C# - How to get “COMPAL Embedded System Control” key pressed?

My notebook is Compal JHL90 and it have something called "COMPAL Embedded System Control". Those are 3 keys above keyboard. If you install software from Compal, then you will get them working, but ...
0
votes
2answers
4k views

C#: Getting the correct keys pressed from KeyEventArgs' KeyData

I am trapping a KeyDown event and I need to be able to check whether the current keys pressed down are : Ctrl + Shift + M ? I know I need to use the e.KeyData from the KeyEventArgs, the Keys enum ...
0
votes
5answers
8k views

How do you convert a System.Windows.Input.KeyEventArgs key to a char?

I need to get the event args as a char, but when I try casting the Key enum I get completely different letters and symbols than what was passed in. How do you properly convert the Key to a char? ...