Hi Jason,
In a windows application the tab key has a special meaning – usually it moves the focus to the next control, but the KeyDown event of a control occurs only when the control has the focus. That’s why the key down of the Tab key never gets registered.
What you can do is to use a standard WinForm programming technique (it event doesn’t have anything to do with the diagram) - override the ProcessCmdKey method of the Form. For example:
protected override bool ProcessCmdKey(ref Message msg, Keys keyData)
{
if (keyData == Keys.Tab)
{
//
// Do what you want here - the tab key was pressed...
//
// Return true to say that the key stroke is processed
return true;
}
return base.ProcessCmdKey(ref msg, keyData);
}
Best Regards,
Nevron Support Team