Hola,
Me da este error compilando el codigo [Error] Unit1.pas(42): ';' expected but 'ELSE' found. Linea 42 la del else con el end.
Realmente nose que se me esta escapando. alguna ayuda?
procedure TForm1.ComboBox1Change(Sender: TObject);
var
A, B, C, D: integer;
begin
B := StrToInt(Edit1.Text);
A := StrToInt(ComboBox1.Text);
C := B - A;
if StrToInt(Edit1.Text) < (40)
then
D := StrToInt(Edit1.Text);
Edit1.Text := IntToStr((C + A)- D)
end
else
For A := 1 to 10 do
begin
Edit1.Text := IntToStr(C);
end;
end.