Componentes.Terceros.DevExp.../official/x.30/ExpressMasterView/Demos/Delphi/HugeTables/HugeTablesDemo.dpr

14 lines
195 B
ObjectPascal
Raw Normal View History

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