CompilerVersion (Delphi)

From RAD Studio Code Examples
Jump to: navigation, search

Description

This example displays the compiler version number in the text field.

Code

procedure TForm1.FormCreate(Sender: TObject);
begin
  Edit1.Text := FloatToStr(System.CompilerVersion);
end;

Uses

See Also