source: trunk/ae/AE.pas@ 454

Last change on this file since 454 was 454, checked in by ataylor, 3 years ago

Add AE (text editor) sources.

File size: 376 bytes
RevLine 
[454]1Program AE;
2
3Uses
4 Forms, Graphics, MainFormUnit, FindFormUnit, SaveQueryFormUnit, ReplaceFormUnit,
5AEPrintDialogUnit, ProductInformationFormUnit, AutoSaveFormUnit, SystemIconUnit,
6ColorsFormUnit, LargeFileWarningFormUnit;
7
8{$r AE.scu}
9
10Begin
11 Application.Create;
12 Application.CreateForm (TMainForm, MainForm);
13 Application.Run;
14 Application.Destroy;
15End.
Note: See TracBrowser for help on using the repository browser.