git-svn-id: https://192.168.0.254/svn/Componentes.Terceros.DevExpressVCL@26 05c56307-c608-d34a-929d-697000501d7a
16 lines
282 B
ObjectPascal
16 lines
282 B
ObjectPascal
program dbtrprnp;
|
|
|
|
uses
|
|
Forms,
|
|
main in 'main.pas' {FMain},
|
|
dbtreeqr in 'dbtreeqr.pas' {QRListForm};
|
|
|
|
{$R *.RES}
|
|
|
|
begin
|
|
Application.Initialize;
|
|
Application.CreateForm(TFMain, FMain);
|
|
Application.CreateForm(TQRListForm, QRListForm);
|
|
Application.Run;
|
|
end.
|