Componentes.Terceros.DevExp.../official/x.26/ExpressNavBar/Demos/Delphi/DragDropDemo/DragDropDemo.dpr
2007-09-09 11:27:27 +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.