Hi,
I am trying to catch the KeyPress event on my datagrid but it isn't
working... i have also tried registering the handler with the event like
this...
dgGLBatch.KeyPress += new KeyPressEventHandler(dgGLBatch_KeyPress);
but nothing changed. I was wondering wether a custom table and column style
might have an effect on how this works???
my code is below...
private void dgGLBatch_KeyPress(object sender,
System.Windows.Forms.KeyPressEventArgs e) {
if(e.KeyChar == (char)13)
SendKeys.Send("{TAB}") ;
}
Regards
Darryn