Установите свойство KeyPreview формы в True и используйте следующий обработчик события OnKeyPress.
var Key: Char); begin if Key = #13 then begin Key := #0; PostMessage(Handle, WM_NEXTDLGCTL, 0, 0); end; end;