Componentes.Terceros.DevExp.../official/x.38/ExpressQuantumTreeList 4/Demos/Delphi/DragDropDemo/DragDropDemo.dpr
2008-08-27 11:56:15 +00:00

23 lines
908 B
ObjectPascal

program DragDropDemo;
uses
Forms,
DragDropDemoMain in 'DragDropDemoMain.pas' {DragDropDemoMainForm},
DragDropDemoData in 'DragDropDemoData.pas' {DragDropDemoDataDM: TDataModule},
DemoRating in '..\Common\DemoRating.pas' {DemoRatingForm},
DemoBasicAbout in '..\Common\DemoBasicAbout.pas' {DemoBasicAboutForm},
DemoBasicMain in '..\Common\DemoBasicMain.pas' {DemoBasicMainForm},
DragDropDemoDictionary in 'DragDropDemoDictionary.pas' {DragDropDemoDictionaryForm};
{$R *.res}
begin
Application.Initialize;
Application.Title := 'ExpressQuantumTreeList4 DragDropDemo';
Application.HelpFile := '..\..\Help\EQTreeList4.hlp';
Application.CreateForm(TDragDropDemoMainForm, DragDropDemoMainForm);
Application.CreateForm(TDragDropDemoDataDM, DragDropDemoDataDM);
Application.CreateForm(TDragDropDemoDictionaryForm, DragDropDemoDictionaryForm);
Application.Run;
end.