vote up 0 vote down star

Hi! I want to register when the key "Tab" has been pressed, but can't figure out how to use the ProcessDialogKey.

This is what i got: this.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.Keypress);

private void Keypress(object sender, KeyPressEventArgs e) { MessageBox.Show("button: " + e.KeyChar); }

  This can only capture regular chars, but i also need other like "Tab" etc....

So i studied a bit, and found that many had used the ProcessDialogKey, but i'm abit uncertain how to use it.

here's what i got:

protected override bool ProcessDialogKey(Keys keyData) { switch (keyData) { case Keys.Up: MessageBox.Show("Up"); break; case Keys.Tab: MessageBox.Show("Tab"); break; default: break;

        }

    }

I get the error: 'project.frm_test.ProcessDialogKey(System.Windows.Forms.Keys)': no suitable method found to override path\Form1.cs

What am i doing wrong?

And bear with me... i'm used to php :) So i'm kinda new to c# :)

flag

50% accept rate

1 Answer

vote up 1 vote down check

Your code is working, you message box is just displaying the tab character i.e. blank space.

Cast to int and you will see it's working:

MessageBox.Show("button: " + (int) e.KeyChar);

EDIT: Otherwise look at this code:

public Form1()
{
    InitializeComponent();

    this.KeyPress += new KeyPressEventHandler(this.Form1_KeyPress);
    this.KeyDown += new KeyEventHandler(this.Form1_KeyDown);            
}

// Keypress only handles keys in the ascii range
private void Form1_KeyPress(object sender, KeyPressEventArgs e) 
{ 
    MessageBox.Show("KeyPress: " + (int) e.KeyChar); 
}

// Keydown will work for all keys
private void Form1_KeyDown(object sender, KeyEventArgs e)
{
    MessageBox.Show("KeyDown: " + e.KeyCode); 
}
link|flag
Thanks. That worked, but what if i want to recognize the "Down" button? That won't work with the Keypress method.... – ikky Sep 23 at 17:27
Cool, see my edit – ParmesanCodice Sep 23 at 17:55

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.