Have you tried something like:
if (e.KeyChar == ‘\r’)
{
e.Handled = true;
System.Windows.Forms.SendKeys.Send("{TAB}");
}
Override the form’s OnKeyUp or override ProcessKeyTab...
Btw, you say:
Deepak.xip wrote:
This site has solved my many problems.
Looked at the questions you had asked till now. Found only one marked as answer accepted!