Componentes.Terceros.DevExp.../official/x.26/ExpressNavBar/Demos/Delphi/DragDropDemo/DragDropDemo.dpr

16 lines
364 B
ObjectPascal
Raw Normal View History

program DragDropDemo;
uses
Forms,
DragDropMain in 'DragDropMain.pas' {fmDragDropMain},
NavBarUtils in '..\Common\NavBarUtils.pas' {dmCommonData: TDataModule};
{$R *.res}
begin
Application.Initialize;
Application.CreateForm(TdmCommonData, dmCommonData);
Application.CreateForm(TfmDragDropMain, fmDragDropMain);
Application.Run;
end.