Componentes.Terceros.SDAC/official/4.10.0.10/Demos/Win32/Miscellaneous/Performance/Performance.dpr

14 lines
192 B
ObjectPascal
Raw Normal View History

program Performance;
uses
Forms,
Main in 'Main.pas' {fmMain};
{$R *.RES}
begin
Application.Initialize;
Application.CreateForm(TfmMain, fmMain);
Application.Run;
end.