| 12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- program LoggerTest;
- uses
- FastMM4,
- mybean.console,
- ceflib,
- SysUtils,
- Forms,
- LoggerTestFrm in 'LoggerTestFrm.pas' {Form1},
- SuperObjectCase in 'SuperObjectCase.pas' {SuperObjectCaseFrm},
- GroupTestCase in 'GroupTestCase.pas' {Form3},
- CACase in 'CACase.pas' {CACaseFrm},
- AudioCase in 'AudioCase.pas' {Form5},
- AccessDBCase in 'AccessDBCase.pas' {Form7};
- {$R *.res}
- begin
- IsMultiThread := TRUE;
- CefCache := ExtractFilePath(paramstr(0)) + 'cache';
- CefSingleProcess := False;
- if not CefLoadLibDefault then
- Exit;
- ApplicationContextInitialize;
- Application.Initialize;
- Application.MainFormOnTaskbar := True;
- // Application.CreateForm(TForm1, Form1);
- Application.CreateForm(TForm7, Form7);
- // Application.CreateForm(TAppCentreTestCase, AppCentreTestCase);
- // Application.CreateForm(TSuperObjectCaseFrm, SuperObjectCaseFrm);
- // Application.CreateForm(TForm2, Form2);
- // Application.CreateForm(TShellExecuteCaseFrm, ShellExecuteCaseFrm);
- // Application.CreateForm(TCACaseFrm, CACaseFrm);
- // Application.CreateForm(TForm5, Form5);
- // Application.CreateForm(TForm3, Form3);
- Application.Run;
- end.
|