Componentes.Terceros.DevExp.../official/x.30/ExpressNavBar/Demos/Delphi/DragDropDemo/DragDropDemo.dpr
2007-12-16 17:06:54 +00:00

16 lines
364 B
ObjectPascal

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.