/__history/Project1.dpr.~1~

https://bitbucket.org/henriquemelicio/scpj-delphi · Unknown · 14 lines · 11 code · 3 blank · 0 comment · 0 complexity · 5876945c2c1b7d4ae2105d3339b06a46 MD5 · raw file

  1. program Project1;
  2. uses
  3. Forms,
  4. Principal in 'Principal.pas' {Form1};
  5. {$R *.res}
  6. begin
  7. Application.Initialize;
  8. Application.MainFormOnTaskbar := True;
  9. Application.CreateForm(TForm1, Form1);
  10. Application.Run;
  11. end.