1234567891011121314151617181920 |
- program ScrollBoxLCLDemo1;
- uses
- {$IFDEF Unix}
- cthreads,
- {$ENDIF}
- Interfaces, // this includes the LCL widgetset
- Fresnel, // this includes the Fresnel-LCL widgetset
- Forms, MainUnit;
- {$R *.res}
- begin
- RequireDerivedFormResource:=True;
- Application.Scaled:=True;
- Application.Initialize;
- Application.CreateForm(TMainForm,MainForm);
- Application.Run;
- end.
|