Ok.... to minimize writing code...

Logically, I should be able to call this Event in each TEdit procedure. I changed the word
TEdit to
Form for my readability since I want the action to be used in all of the data input areas on the form:
procedure TClients.FormKeyDown(Sender: TObject; var Key: Word);
begin
if Key = VK_RETURN then Key := VK_TAB;
end;
When added to any procedure's properties, I received the error: "The method 'FormKeyDown' is incompatible with this event (OnKeyDown)". Why? All I did was rename the procedure.
In trying to cleanup all Events' OnKeyDown, I know come up with another error: "Error reading Clients.OnKeyDown: Invalid value for property". I have searched and cannot find the assignment/use of "Clients.OnKeyDown"...
I am trying to use the
RET -> TAB function to make the input of all of the data more "User-friendly." Then, I intend to incorporate the
GoodKeys routine to error-check the users' inputs. Utilizing the properties provided by the IDE, I wouldn't think I would need to code the routine into each TEdit, just make a call to the procedure as I am trying to do with the OnKeyDown event.
Clicking to write code...a big learning curve... I ordered the
Lazarus The Complete Guide the other day, but it'll be a while before it gets here... Sorry for you guys.

Awaiting for your imparted knowledge.
Thank you, in advance, for your time and assistance!