Componentes.Terceros.DevExp.../internal/x.36/1/ExpressNavBar 2/Demos/Delphi/DragDropDemo/DragDropDemo.dpr
2008-09-04 11:31:51 +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.