Hi,
I hope it will help you little
protected override bool ProcessDialogKey(Keys keyData)
{
if(keyData.Equals(Keys.Right))
{
button1.Location = new Point(button1.Location.X + 100, button1.Location.Y);
}
return base.ProcessDialogKey(keyData);
}
Best Regards,
C.Gnanadurai
-----------------------
Please mark the post as answer if it is helpfull to you