The below code shows us how to call ENTER key in delphiprocedure TForm1.Edit1KeyDown(Sender: TObject; var Key: Word; Shift: TShiftState);beginif key = #13 then //when user presses ENTER go to edit1 textboxedit1.setfocus;end;