1. You can insert a timer.
On time event should contain procedure you want to call.
2. On click (on key press) event should do the task.
example:
private void form1_KeyPress(object sender, KeyPessEventArgs e)
{
if (e.KeyChar==13) { // You should insert here code that should be executed // }
}