Hi Guys can someone please help me here. When I run the code it tell me identifier not found, however its is there. Could someone please shed some light on the situation please.
This is whats in the Messages Box;
Compile Project, Target: GraphDisplay.exe: Exit code 1, Errors: 4
graph.pas(97,10) Error: Identifier not found "MaxHeightDISPLAY"
graph.pas(98,10) Error: Identifier not found "DetDistanceDISPLAY"
graph.pas(99,10) Error: Identifier not found "DetHeightDISPLAY"
graph.pas(100,10) Error: Identifier not found "FlightTimeDISPLAY"
TForm1 = class(TForm)
InputAngleEDIT: TEdit;
ShellSizeEDIT: TEdit;
FlightTime: TLabel;
InputAngle: TLabel;
ShellSize: TLabel;
MaxHeight: TLabel;
DetHeight: TLabel;
DetDistance: TLabel;
MaxHeightDISPLAY: TStaticText;
DetDistanceDISPLAY: TStaticText;
DetHeightDISPLAY: TStaticText;
FlightTimeDISPLAY: TStaticText;
Procedure DisplayResuslts;
(* Display Resuslts *)
begin
MaxHeightDISPLAY.Caption:=FloatToStr(MaxHeightOutput);
DetDistanceDISPLAY.Caption:=FloatToStr(DetonationDistance);
DetHeightDISPLAY.Caption:=FloatToStr(DetonationHeight);
FlightTimeDISPLAY.Caption:= FloatToStr(Time);
end;