I get the "Undeclared identifier" in a pprocedure I created called submit.
procedure submit;
begin
if ebMain.Text='exit' then
fmMain.Close;
end;
Really simple. The compiler tells me ebMain is undeclared. I ca fix this by putting "fmMain." in front of it but I never had to do this in delphi 7.The edit box(ebMain) is on the main form(fmMain). The procedure header is placed just under the "uses". What's wrong?