| 123456789101112131415161718192021222324252627 |
- program test_formatui;
- {$mode objfpc}{$H+}
- uses
- {$IFDEF UNIX}
- cthreads,
- {$ENDIF}
- {$IFDEF HASAMIGA}
- athreads,
- {$ENDIF}
- Interfaces, // this includes the LCL widgetset
- Forms, test_formatui_main;
- {$R *.res}
- begin
- RequireDerivedFormResource:=True;
- Application.Scaled:=True;
- {$PUSH}{$WARN 5044 OFF}
- Application.MainFormOnTaskbar:=True;
- {$POP}
- Application.Initialize;
- Application.CreateForm(TSaveFile_Settings, SaveFile_Settings);
- Application.Run;
- end.
|