├── .github └── FUNDING.yml ├── .gitignore ├── Delphinus.Info.json ├── Delphinus.Install.json ├── Demos ├── Adapters │ ├── Adapter.dpr │ ├── Adapter.dproj │ ├── Adapter.res │ ├── Main.dfm │ ├── Main.pas │ └── readme.txt ├── AsyncSource with Filestreams │ ├── AsyncFTPClient.dpr │ ├── AsyncFTPClient.dproj │ ├── AsyncFTPClient.res │ ├── AsyncFTPClient_Icon.ico │ ├── RingbufferStream.pas │ ├── Throbber.res │ ├── main.dfm │ └── main.pas ├── AsyncSource │ ├── AsyncTransferSource.dpr │ ├── AsyncTransferSource.dproj │ ├── AsyncTransferSource.res │ ├── main.dfm │ ├── main.pas │ └── readme.txt ├── AsyncTarget │ ├── AsyncTransferTarget.dpr │ ├── AsyncTransferTarget.dproj │ ├── AsyncTransferTarget.res │ ├── AsyncTransferTarget_Icon.ico │ ├── main.dfm │ ├── main.pas │ └── readme.txt ├── AutoScroll │ ├── AutoScroll.dpr │ ├── AutoScroll.dproj │ ├── AutoScroll.res │ ├── AutoScroll_Icon.ico │ ├── main.dfm │ ├── main.pas │ └── readme.txt ├── ComboTargetDemo │ ├── ComboTargetDemo.dpr │ ├── ComboTargetDemo.dproj │ ├── ComboTargetDemo.res │ ├── ComboTargetDemo_Icon.ico │ ├── main.dfm │ ├── main.pas │ └── readme.txt ├── CustomFormat1 │ ├── CustomFormat1.dpr │ ├── CustomFormat1.dproj │ ├── CustomFormat1.res │ ├── CustomFormat1_Icon.ico │ ├── DragDropTimeOfDay.pas │ ├── Source.dfm │ ├── Source.pas │ ├── Target.dfm │ ├── Target.pas │ └── readme.txt ├── CustomFormat2 │ ├── CustomFormat2.dpr │ ├── CustomFormat2.dproj │ ├── CustomFormat2.res │ ├── CustomFormat2_Icon.ico │ ├── DragDropTimeOfDay.pas │ ├── Source.dfm │ ├── Source.pas │ ├── Target.dfm │ ├── Target.pas │ └── readme.txt ├── Demos.groupproj ├── DetailedDemo │ ├── DragDropDemo.dpr │ ├── DragDropDemo.dproj │ ├── DragDropDemo.res │ ├── DragDropDemo_Icon.ico │ ├── DropFile.dfm │ ├── DropFile.pas │ ├── DropText.dfm │ ├── DropText.pas │ ├── DropURL.dfm │ ├── DropURL.pas │ ├── Extra │ │ ├── ShellConsts.pas │ │ └── ShellCtrls.pas │ ├── cursors.res │ ├── demo.dfm │ ├── demo.pas │ └── readme.txt ├── ExtractDemo │ ├── ExtractDemo.dpr │ ├── ExtractDemo.dproj │ ├── ExtractDemo.res │ ├── ExtractDemo_Icon.ico │ ├── Unit1.dfm │ ├── Unit1.pas │ └── readme.txt ├── MultipleTargets │ ├── MultiTarget.dpr │ ├── MultiTarget.dproj │ ├── MultiTarget.res │ ├── MultiTarget_Icon.ico │ ├── main.dfm │ ├── main.pas │ └── readme.txt ├── Outlook │ ├── MAPI │ │ ├── MAPIUtil.pas │ │ ├── MapiTags.pas │ │ ├── imessage.pas │ │ ├── mapidefs.pas │ │ ├── mapiguid.pas │ │ ├── mapix.pas │ │ └── tnef.pas │ ├── OutlookDemo.dpr │ ├── OutlookDemo.dproj │ ├── OutlookDemo.res │ ├── OutlookDemo_Icon.ico │ ├── OutlookTarget.dfm │ ├── OutlookTarget.pas │ └── readme.txt ├── OutlookSource │ ├── Main.dfm │ ├── Main.pas │ ├── OutlookSource.dpr │ ├── OutlookSource.dproj │ ├── OutlookSource.res │ └── OutlookSource_Icon.ico ├── PIDLDemo │ ├── PIDLDemo.dpr │ ├── PIDLDemo.dproj │ ├── PIDLDemo.res │ ├── PIDLDemo_Icon.ico │ ├── PathComboBox.pas │ ├── PathCombobox.dcr │ ├── Unit1.dfm │ ├── Unit1.pas │ └── readme.txt ├── RTF │ ├── RtfTarget.dpr │ ├── RtfTarget.dproj │ ├── RtfTarget.res │ ├── RtfTarget_Icon.ico │ ├── Target.dfm │ └── Target.pas ├── ShellContextMenuHandler │ ├── About.bmp │ ├── About.rc │ ├── About.res │ ├── ContextMenuHandlerMain.dfm │ ├── ContextMenuHandlerMain.pas │ ├── ContextMenuHandlerShellExt.dpr │ ├── ContextMenuHandlerShellExt.dproj │ ├── ContextMenuHandlerShellExt.res │ └── readme.txt ├── ShellContextMenuHandlerSimple │ ├── ContextMenuHandlerMain.dfm │ ├── ContextMenuHandlerMain.pas │ ├── SimpleContextMenuHandlerShellExt.dpr │ ├── SimpleContextMenuHandlerShellExt.dproj │ ├── SimpleContextMenuHandlerShellExt.res │ └── readme.txt ├── ShellDragDropHandler │ ├── DragDropHandlerMain.dfm │ ├── DragDropHandlerMain.pas │ ├── DragDropHandlerShellExt.dpr │ ├── DragDropHandlerShellExt.dproj │ ├── DragDropHandlerShellExt.res │ ├── DragDropHandlerShellExt_Icon.ico │ └── readme.txt ├── ShellDropHandler │ ├── DropHandlerMain.dfm │ ├── DropHandlerMain.pas │ ├── DropHandlerShellExt.dpr │ ├── DropHandlerShellExt.dproj │ ├── DropHandlerShellExt.res │ ├── FoobarEdit.dpr │ ├── FoobarEdit.dproj │ ├── FoobarEdit.res │ ├── FoobarEdit_Icon.ico │ ├── FoobarMain.dfm │ ├── FoobarMain.pas │ └── readme.txt ├── SourceAnalyzer │ ├── Main.dfm │ ├── Main.pas │ ├── SourceAnalyzer.dpr │ ├── SourceAnalyzer.dproj │ ├── SourceAnalyzer.res │ └── SourceAnalyzer_Icon.ico ├── SourceDemo │ ├── Main.dfm │ ├── Main.pas │ ├── SimpleSourceDemo.dpr │ ├── SimpleSourceDemo.dproj │ ├── SimpleSourceDemo.res │ └── readme.txt ├── TargetAnalyzer │ ├── TargetAnalyzer.dpr │ ├── TargetAnalyzer.dproj │ ├── TargetAnalyzer.res │ ├── TargetAnalyzer_Icon.ico │ ├── main.dfm │ └── main.pas ├── TargetDemo │ ├── Main.dfm │ ├── Main.pas │ ├── SimpleTargetDemo.dpr │ ├── SimpleTargetDemo.dproj │ ├── SimpleTargetDemo.res │ └── readme.txt ├── TreeViewTarget │ ├── TreeViewTarget.dpr │ ├── TreeViewTarget.dproj │ ├── TreeViewTarget.res │ ├── TreeViewTarget_Icon.ico │ ├── main.dfm │ └── main.pas ├── Unicode │ ├── DragDropUnicode.dpr │ ├── DragDropUnicode.dproj │ ├── DragDropUnicode.res │ ├── DragDropUnicodeTexts.res │ ├── DragDropUnicode_Icon.ico │ ├── main.dfm │ └── main.pas ├── VirtualFile │ ├── Main.dfm │ ├── Main.pas │ ├── VirtualFile.dpr │ ├── VirtualFile.dproj │ ├── VirtualFile.res │ ├── VirtualFile_Icon.ico │ └── readme.txt ├── VirtualFileStream │ ├── Main.dfm │ ├── Main.pas │ ├── VirtualFileStream.dpr │ ├── VirtualFileStream.dproj │ ├── VirtualFileStream.res │ ├── VirtualFileStream_Icon.ico │ └── readme.txt ├── WM_DROPFILES │ ├── DropFiles.dpr │ ├── DropFiles.dproj │ ├── DropFiles.res │ ├── DropFiles_Icon.ico │ ├── Main.dfm │ └── Main.pas └── readme.txt ├── DemosWithoutInstall ├── Adapters │ ├── Adapter.dpr │ ├── Adapter.dproj │ ├── Adapter.res │ ├── Main.dfm │ ├── Main.pas │ └── readme.txt ├── AsyncSource with Filestreams │ ├── AsyncFTPClient.dpr │ ├── AsyncFTPClient.dproj │ ├── AsyncFTPClient.res │ ├── AsyncFTPClient_Icon.ico │ ├── RingbufferStream.pas │ ├── Throbber.res │ ├── main.dfm │ └── main.pas ├── AsyncSource │ ├── AsyncTransferSource.dpr │ ├── AsyncTransferSource.dproj │ ├── AsyncTransferSource.res │ ├── main.dfm │ ├── main.pas │ └── readme.txt ├── AsyncTarget │ ├── AsyncTransferTarget.dpr │ ├── AsyncTransferTarget.dproj │ ├── AsyncTransferTarget.res │ ├── AsyncTransferTarget_Icon.ico │ ├── main.dfm │ ├── main.pas │ └── readme.txt ├── AutoScroll │ ├── AutoScroll.dpr │ ├── AutoScroll.dproj │ ├── AutoScroll.res │ ├── AutoScroll_Icon.ico │ ├── main.dfm │ ├── main.pas │ └── readme.txt ├── ComboTargetDemo │ ├── ComboTargetDemo.dpr │ ├── ComboTargetDemo.dproj │ ├── ComboTargetDemo.res │ ├── ComboTargetDemo_Icon.ico │ ├── main.dfm │ ├── main.pas │ └── readme.txt ├── CustomFormat1 │ ├── CustomFormat1.dpr │ ├── CustomFormat1.dproj │ ├── CustomFormat1.res │ ├── CustomFormat1_Icon.ico │ ├── DragDropTimeOfDay.pas │ ├── Source.dfm │ ├── Source.pas │ ├── Target.dfm │ ├── Target.pas │ └── readme.txt ├── CustomFormat2 │ ├── CustomFormat2.dpr │ ├── CustomFormat2.dproj │ ├── CustomFormat2.res │ ├── CustomFormat2_Icon.ico │ ├── DragDropTimeOfDay.pas │ ├── Source.dfm │ ├── Source.pas │ ├── Target.dfm │ ├── Target.pas │ └── readme.txt ├── DemosWithoutInstall.groupproj ├── DetailedDemo │ ├── DragDropDemo.dpr │ ├── DragDropDemo.dproj │ ├── DragDropDemo.res │ ├── DragDropDemo_Icon.ico │ ├── DropFile.dfm │ ├── DropFile.pas │ ├── DropText.dfm │ ├── DropText.pas │ ├── DropURL.dfm │ ├── DropURL.pas │ ├── Extra │ │ ├── ShellConsts.pas │ │ └── ShellCtrls.pas │ ├── cursors.res │ ├── demo.dfm │ ├── demo.pas │ └── readme.txt ├── ExtractDemo │ ├── ExtractDemo.dpr │ ├── ExtractDemo.dproj │ ├── ExtractDemo.res │ ├── ExtractDemo_Icon.ico │ ├── Unit1.dfm │ ├── Unit1.pas │ └── readme.txt ├── MultipleTargets │ ├── MultiTarget.dpr │ ├── MultiTarget.dproj │ ├── MultiTarget.res │ ├── MultiTarget_Icon.ico │ ├── main.dfm │ ├── main.pas │ └── readme.txt ├── Outlook │ ├── MAPI │ │ ├── MAPIUtil.pas │ │ ├── MapiTags.pas │ │ ├── imessage.pas │ │ ├── mapidefs.pas │ │ ├── mapiguid.pas │ │ ├── mapix.pas │ │ └── tnef.pas │ ├── OutlookDemo.dpr │ ├── OutlookDemo.dproj │ ├── OutlookDemo.res │ ├── OutlookDemo_Icon.ico │ ├── OutlookTarget.dfm │ ├── OutlookTarget.pas │ └── readme.txt ├── OutlookSource │ ├── Main.dfm │ ├── Main.pas │ ├── OutlookSource.dpr │ ├── OutlookSource.dproj │ ├── OutlookSource.res │ └── OutlookSource_Icon.ico ├── PIDLDemo │ ├── PIDLDemo.dpr │ ├── PIDLDemo.dproj │ ├── PIDLDemo.res │ ├── PIDLDemo_Icon.ico │ ├── PathComboBox.pas │ ├── PathCombobox.dcr │ ├── Unit1.dfm │ ├── Unit1.pas │ └── readme.txt ├── RTF │ ├── RtfTarget.dpr │ ├── RtfTarget.dproj │ ├── RtfTarget.res │ ├── RtfTarget_Icon.ico │ ├── Target.dfm │ └── Target.pas ├── ShellContextMenuHandler │ ├── About.bmp │ ├── About.rc │ ├── About.res │ ├── ContextMenuHandlerMain.dfm │ ├── ContextMenuHandlerMain.pas │ ├── ContextMenuHandlerShellExt.dpr │ ├── ContextMenuHandlerShellExt.dproj │ ├── ContextMenuHandlerShellExt.res │ └── readme.txt ├── ShellContextMenuHandlerSimple │ ├── ContextMenuHandlerMain.dfm │ ├── ContextMenuHandlerMain.pas │ ├── SimpleContextMenuHandlerShellExt.dpr │ ├── SimpleContextMenuHandlerShellExt.dproj │ ├── SimpleContextMenuHandlerShellExt.res │ └── readme.txt ├── ShellDragDropHandler │ ├── DragDropHandlerMain.dfm │ ├── DragDropHandlerMain.pas │ ├── DragDropHandlerShellExt.dpr │ ├── DragDropHandlerShellExt.dproj │ ├── DragDropHandlerShellExt.res │ ├── DragDropHandlerShellExt_Icon.ico │ └── readme.txt ├── ShellDropHandler │ ├── DropHandlerMain.dfm │ ├── DropHandlerMain.pas │ ├── DropHandlerShellExt.dpr │ ├── DropHandlerShellExt.dproj │ ├── DropHandlerShellExt.res │ ├── FoobarEdit.dpr │ ├── FoobarEdit.dproj │ ├── FoobarEdit.res │ ├── FoobarEdit_Icon.ico │ ├── FoobarMain.dfm │ ├── FoobarMain.pas │ └── readme.txt ├── SourceAnalyzer │ ├── Main.dfm │ ├── Main.pas │ ├── SourceAnalyzer.dpr │ ├── SourceAnalyzer.dproj │ ├── SourceAnalyzer.res │ └── SourceAnalyzer_Icon.ico ├── SourceDemo │ ├── Main.dfm │ ├── Main.pas │ ├── SimpleSourceDemo.dpr │ ├── SimpleSourceDemo.dproj │ ├── SimpleSourceDemo.res │ └── readme.txt ├── TargetAnalyzer │ ├── TargetAnalyzer.dpr │ ├── TargetAnalyzer.dproj │ ├── TargetAnalyzer.res │ ├── TargetAnalyzer_Icon.ico │ ├── main.dfm │ └── main.pas ├── TargetDemo │ ├── Main.dfm │ ├── Main.pas │ ├── SimpleTargetDemo.dpr │ ├── SimpleTargetDemo.dproj │ ├── SimpleTargetDemo.res │ └── readme.txt ├── TreeViewTarget │ ├── TreeViewTarget.dpr │ ├── TreeViewTarget.dproj │ ├── TreeViewTarget.res │ ├── TreeViewTarget_Icon.ico │ ├── main.dfm │ └── main.pas ├── Unicode │ ├── DragDropUnicode.dpr │ ├── DragDropUnicode.dproj │ ├── DragDropUnicode.res │ ├── DragDropUnicodeTexts.res │ ├── DragDropUnicode_Icon.ico │ ├── main.dfm │ └── main.pas ├── VirtualFile │ ├── Main.dfm │ ├── Main.pas │ ├── VirtualFile.dpr │ ├── VirtualFile.dproj │ ├── VirtualFile.res │ ├── VirtualFile_Icon.ico │ └── readme.txt ├── VirtualFileStream │ ├── Main.dfm │ ├── Main.pas │ ├── VirtualFileStream.dpr │ ├── VirtualFileStream.dproj │ ├── VirtualFileStream.res │ ├── VirtualFileStream_Icon.ico │ └── readme.txt ├── WM_DROPFILES │ ├── DropFiles.dpr │ ├── DropFiles.dproj │ ├── DropFiles.res │ ├── DropFiles_Icon.ico │ ├── Main.dfm │ └── Main.pas └── readme.txt ├── LICENSE ├── Library └── readme.txt ├── Logo.jpg ├── Packages ├── DragDropD2006.dpk ├── DragDropD2007.dpk ├── DragDropD2009.dpk ├── DragDropD2010.dpk ├── DragDropD2010.dproj ├── DragDropD2010.res ├── DragDropD2011.dpk ├── DragDropD2011.dproj ├── DragDropD2011.rc ├── DragDropD5.dpk ├── DragDropD6.cfg ├── DragDropD6.dpk ├── DragDropD6.res ├── DragDropD7.dpk ├── DragDropDR101B.dpk ├── DragDropDR101B.dproj ├── DragDropDR101B.res ├── DragDropDR101BGroup.groupproj ├── DragDropDR102T.dpk ├── DragDropDR102T.dproj ├── DragDropDR102TGroup.groupproj ├── DragDropDR103R.dpk ├── DragDropDR103R.dproj ├── DragDropDR103R.res ├── DragDropDR103RGroup.groupproj ├── DragDropDR104R.dpk ├── DragDropDR104R.dproj ├── DragDropDR104R.res ├── DragDropDR104RGroup.groupproj ├── DragDropDR10S.dpk ├── DragDropDR10S.dproj ├── DragDropDR10S.res ├── DragDropDR10SGroup.groupproj ├── DragDropDR11A.dpk ├── DragDropDR11A.dproj ├── DragDropDR11A.res ├── DragDropDR11AGroup.groupproj ├── DragDropDR12.dpk ├── DragDropDR12.dproj ├── DragDropDR12.res ├── DragDropDR12Group.groupproj ├── DragDropDR13.dpk ├── DragDropDR13.dproj ├── DragDropDR13.res ├── DragDropDR13Group.groupproj ├── DragDropDXE2.dpk ├── DragDropDXE2.dproj ├── DragDropDXE2.res ├── DragDropDXE2Group.groupproj ├── DragDropDXE3.dpk ├── DragDropDXE3.dproj ├── DragDropDXE3.res ├── DragDropDXE3Group.groupproj ├── DragDropDXE4.dpk ├── DragDropDXE4.dproj ├── DragDropDXE4.res ├── DragDropDXE4Group.groupproj ├── DragDropDXE5.dpk ├── DragDropDXE5.dproj ├── DragDropDXE5.res ├── DragDropDXE5Group.groupproj ├── DragDropDXE6.dpk ├── DragDropDXE6.dproj ├── DragDropDXE6.res ├── DragDropDXE6Group.groupproj ├── DragDropDXE7.dpk ├── DragDropDXE7.dproj ├── DragDropDXE7.res ├── DragDropDXE7Group.groupproj ├── DragDropDXE8.dpk ├── DragDropDXE8.dproj ├── DragDropDXE8.res ├── DragDropDXE8Group.groupproj ├── dclDragDropDR101B.dpk ├── dclDragDropDR101B.dproj ├── dclDragDropDR101B.res ├── dclDragDropDR102T.dpk ├── dclDragDropDR102T.dproj ├── dclDragDropDR103R.dpk ├── dclDragDropDR103R.dproj ├── dclDragDropDR103R.res ├── dclDragDropDR104R.dpk ├── dclDragDropDR104R.dproj ├── dclDragDropDR104R.res ├── dclDragDropDR10S.dpk ├── dclDragDropDR10S.dproj ├── dclDragDropDR10S.res ├── dclDragDropDR11A.dpk ├── dclDragDropDR11A.dproj ├── dclDragDropDR11A.res ├── dclDragDropDR12.dpk ├── dclDragDropDR12.dproj ├── dclDragDropDR12.res ├── dclDragDropDR13.dpk ├── dclDragDropDR13.dproj ├── dclDragDropDR13.res ├── dclDragDropDXE2.dpk ├── dclDragDropDXE2.dproj ├── dclDragDropDXE2.res ├── dclDragDropDXE3.dpk ├── dclDragDropDXE3.dproj ├── dclDragDropDXE3.res ├── dclDragDropDXE4.dpk ├── dclDragDropDXE4.dproj ├── dclDragDropDXE4.res ├── dclDragDropDXE5.dpk ├── dclDragDropDXE5.dproj ├── dclDragDropDXE5.res ├── dclDragDropDXE6.dpk ├── dclDragDropDXE6.dproj ├── dclDragDropDXE6.res ├── dclDragDropDXE7.dpk ├── dclDragDropDXE7.dproj ├── dclDragDropDXE7.res ├── dclDragDropDXE8.dpk ├── dclDragDropDXE8.dproj ├── dclDragDropDXE8.res └── readme.txt ├── README.md ├── Source ├── DragDrop.dcr ├── DragDrop.inc ├── DragDrop.pas ├── DragDropComObj.pas ├── DragDropContext.dcr ├── DragDropContext.pas ├── DragDropDesign.pas ├── DragDropFile.dcr ├── DragDropFile.pas ├── DragDropFormats.pas ├── DragDropGraphics.dcr ├── DragDropGraphics.pas ├── DragDropHandler.dcr ├── DragDropHandler.pas ├── DragDropInternet.dcr ├── DragDropInternet.pas ├── DragDropPIDL.dcr ├── DragDropPIDL.pas ├── DragDropText.dcr ├── DragDropText.pas ├── DropComboTarget.dcr ├── DropComboTarget.pas ├── DropHandler.dcr ├── DropHandler.pas ├── DropSource.dcr ├── DropSource.pas ├── DropTarget.dcr ├── DropTarget.pas ├── DropTargetCur.res └── readme.txt └── clean.bat /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: [landrix] 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/.gitignore -------------------------------------------------------------------------------- /Delphinus.Info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Delphinus.Info.json -------------------------------------------------------------------------------- /Delphinus.Install.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Delphinus.Install.json -------------------------------------------------------------------------------- /Demos/Adapters/Adapter.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/Adapters/Adapter.dpr -------------------------------------------------------------------------------- /Demos/Adapters/Adapter.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/Adapters/Adapter.dproj -------------------------------------------------------------------------------- /Demos/Adapters/Adapter.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/Adapters/Adapter.res -------------------------------------------------------------------------------- /Demos/Adapters/Main.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/Adapters/Main.dfm -------------------------------------------------------------------------------- /Demos/Adapters/Main.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/Adapters/Main.pas -------------------------------------------------------------------------------- /Demos/Adapters/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/Adapters/readme.txt -------------------------------------------------------------------------------- /Demos/AsyncSource with Filestreams/AsyncFTPClient.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/AsyncSource with Filestreams/AsyncFTPClient.dpr -------------------------------------------------------------------------------- /Demos/AsyncSource with Filestreams/AsyncFTPClient.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/AsyncSource with Filestreams/AsyncFTPClient.dproj -------------------------------------------------------------------------------- /Demos/AsyncSource with Filestreams/AsyncFTPClient.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/AsyncSource with Filestreams/AsyncFTPClient.res -------------------------------------------------------------------------------- /Demos/AsyncSource with Filestreams/AsyncFTPClient_Icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/AsyncSource with Filestreams/AsyncFTPClient_Icon.ico -------------------------------------------------------------------------------- /Demos/AsyncSource with Filestreams/RingbufferStream.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/AsyncSource with Filestreams/RingbufferStream.pas -------------------------------------------------------------------------------- /Demos/AsyncSource with Filestreams/Throbber.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/AsyncSource with Filestreams/Throbber.res -------------------------------------------------------------------------------- /Demos/AsyncSource with Filestreams/main.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/AsyncSource with Filestreams/main.dfm -------------------------------------------------------------------------------- /Demos/AsyncSource with Filestreams/main.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/AsyncSource with Filestreams/main.pas -------------------------------------------------------------------------------- /Demos/AsyncSource/AsyncTransferSource.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/AsyncSource/AsyncTransferSource.dpr -------------------------------------------------------------------------------- /Demos/AsyncSource/AsyncTransferSource.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/AsyncSource/AsyncTransferSource.dproj -------------------------------------------------------------------------------- /Demos/AsyncSource/AsyncTransferSource.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/AsyncSource/AsyncTransferSource.res -------------------------------------------------------------------------------- /Demos/AsyncSource/main.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/AsyncSource/main.dfm -------------------------------------------------------------------------------- /Demos/AsyncSource/main.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/AsyncSource/main.pas -------------------------------------------------------------------------------- /Demos/AsyncSource/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/AsyncSource/readme.txt -------------------------------------------------------------------------------- /Demos/AsyncTarget/AsyncTransferTarget.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/AsyncTarget/AsyncTransferTarget.dpr -------------------------------------------------------------------------------- /Demos/AsyncTarget/AsyncTransferTarget.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/AsyncTarget/AsyncTransferTarget.dproj -------------------------------------------------------------------------------- /Demos/AsyncTarget/AsyncTransferTarget.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/AsyncTarget/AsyncTransferTarget.res -------------------------------------------------------------------------------- /Demos/AsyncTarget/AsyncTransferTarget_Icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/AsyncTarget/AsyncTransferTarget_Icon.ico -------------------------------------------------------------------------------- /Demos/AsyncTarget/main.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/AsyncTarget/main.dfm -------------------------------------------------------------------------------- /Demos/AsyncTarget/main.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/AsyncTarget/main.pas -------------------------------------------------------------------------------- /Demos/AsyncTarget/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/AsyncTarget/readme.txt -------------------------------------------------------------------------------- /Demos/AutoScroll/AutoScroll.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/AutoScroll/AutoScroll.dpr -------------------------------------------------------------------------------- /Demos/AutoScroll/AutoScroll.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/AutoScroll/AutoScroll.dproj -------------------------------------------------------------------------------- /Demos/AutoScroll/AutoScroll.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/AutoScroll/AutoScroll.res -------------------------------------------------------------------------------- /Demos/AutoScroll/AutoScroll_Icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/AutoScroll/AutoScroll_Icon.ico -------------------------------------------------------------------------------- /Demos/AutoScroll/main.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/AutoScroll/main.dfm -------------------------------------------------------------------------------- /Demos/AutoScroll/main.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/AutoScroll/main.pas -------------------------------------------------------------------------------- /Demos/AutoScroll/readme.txt: -------------------------------------------------------------------------------- 1 | AutoScroll 2 | 3 | This application is undocumented. 4 | 5 | -------------------------------------------------------------------------------- /Demos/ComboTargetDemo/ComboTargetDemo.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/ComboTargetDemo/ComboTargetDemo.dpr -------------------------------------------------------------------------------- /Demos/ComboTargetDemo/ComboTargetDemo.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/ComboTargetDemo/ComboTargetDemo.dproj -------------------------------------------------------------------------------- /Demos/ComboTargetDemo/ComboTargetDemo.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/ComboTargetDemo/ComboTargetDemo.res -------------------------------------------------------------------------------- /Demos/ComboTargetDemo/ComboTargetDemo_Icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/ComboTargetDemo/ComboTargetDemo_Icon.ico -------------------------------------------------------------------------------- /Demos/ComboTargetDemo/main.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/ComboTargetDemo/main.dfm -------------------------------------------------------------------------------- /Demos/ComboTargetDemo/main.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/ComboTargetDemo/main.pas -------------------------------------------------------------------------------- /Demos/ComboTargetDemo/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/ComboTargetDemo/readme.txt -------------------------------------------------------------------------------- /Demos/CustomFormat1/CustomFormat1.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/CustomFormat1/CustomFormat1.dpr -------------------------------------------------------------------------------- /Demos/CustomFormat1/CustomFormat1.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/CustomFormat1/CustomFormat1.dproj -------------------------------------------------------------------------------- /Demos/CustomFormat1/CustomFormat1.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/CustomFormat1/CustomFormat1.res -------------------------------------------------------------------------------- /Demos/CustomFormat1/CustomFormat1_Icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/CustomFormat1/CustomFormat1_Icon.ico -------------------------------------------------------------------------------- /Demos/CustomFormat1/DragDropTimeOfDay.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/CustomFormat1/DragDropTimeOfDay.pas -------------------------------------------------------------------------------- /Demos/CustomFormat1/Source.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/CustomFormat1/Source.dfm -------------------------------------------------------------------------------- /Demos/CustomFormat1/Source.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/CustomFormat1/Source.pas -------------------------------------------------------------------------------- /Demos/CustomFormat1/Target.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/CustomFormat1/Target.dfm -------------------------------------------------------------------------------- /Demos/CustomFormat1/Target.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/CustomFormat1/Target.pas -------------------------------------------------------------------------------- /Demos/CustomFormat1/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/CustomFormat1/readme.txt -------------------------------------------------------------------------------- /Demos/CustomFormat2/CustomFormat2.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/CustomFormat2/CustomFormat2.dpr -------------------------------------------------------------------------------- /Demos/CustomFormat2/CustomFormat2.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/CustomFormat2/CustomFormat2.dproj -------------------------------------------------------------------------------- /Demos/CustomFormat2/CustomFormat2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/CustomFormat2/CustomFormat2.res -------------------------------------------------------------------------------- /Demos/CustomFormat2/CustomFormat2_Icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/CustomFormat2/CustomFormat2_Icon.ico -------------------------------------------------------------------------------- /Demos/CustomFormat2/DragDropTimeOfDay.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/CustomFormat2/DragDropTimeOfDay.pas -------------------------------------------------------------------------------- /Demos/CustomFormat2/Source.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/CustomFormat2/Source.dfm -------------------------------------------------------------------------------- /Demos/CustomFormat2/Source.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/CustomFormat2/Source.pas -------------------------------------------------------------------------------- /Demos/CustomFormat2/Target.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/CustomFormat2/Target.dfm -------------------------------------------------------------------------------- /Demos/CustomFormat2/Target.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/CustomFormat2/Target.pas -------------------------------------------------------------------------------- /Demos/CustomFormat2/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/CustomFormat2/readme.txt -------------------------------------------------------------------------------- /Demos/Demos.groupproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/Demos.groupproj -------------------------------------------------------------------------------- /Demos/DetailedDemo/DragDropDemo.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/DetailedDemo/DragDropDemo.dpr -------------------------------------------------------------------------------- /Demos/DetailedDemo/DragDropDemo.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/DetailedDemo/DragDropDemo.dproj -------------------------------------------------------------------------------- /Demos/DetailedDemo/DragDropDemo.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/DetailedDemo/DragDropDemo.res -------------------------------------------------------------------------------- /Demos/DetailedDemo/DragDropDemo_Icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/DetailedDemo/DragDropDemo_Icon.ico -------------------------------------------------------------------------------- /Demos/DetailedDemo/DropFile.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/DetailedDemo/DropFile.dfm -------------------------------------------------------------------------------- /Demos/DetailedDemo/DropFile.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/DetailedDemo/DropFile.pas -------------------------------------------------------------------------------- /Demos/DetailedDemo/DropText.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/DetailedDemo/DropText.dfm -------------------------------------------------------------------------------- /Demos/DetailedDemo/DropText.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/DetailedDemo/DropText.pas -------------------------------------------------------------------------------- /Demos/DetailedDemo/DropURL.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/DetailedDemo/DropURL.dfm -------------------------------------------------------------------------------- /Demos/DetailedDemo/DropURL.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/DetailedDemo/DropURL.pas -------------------------------------------------------------------------------- /Demos/DetailedDemo/Extra/ShellConsts.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/DetailedDemo/Extra/ShellConsts.pas -------------------------------------------------------------------------------- /Demos/DetailedDemo/Extra/ShellCtrls.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/DetailedDemo/Extra/ShellCtrls.pas -------------------------------------------------------------------------------- /Demos/DetailedDemo/cursors.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/DetailedDemo/cursors.res -------------------------------------------------------------------------------- /Demos/DetailedDemo/demo.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/DetailedDemo/demo.dfm -------------------------------------------------------------------------------- /Demos/DetailedDemo/demo.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/DetailedDemo/demo.pas -------------------------------------------------------------------------------- /Demos/DetailedDemo/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/DetailedDemo/readme.txt -------------------------------------------------------------------------------- /Demos/ExtractDemo/ExtractDemo.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/ExtractDemo/ExtractDemo.dpr -------------------------------------------------------------------------------- /Demos/ExtractDemo/ExtractDemo.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/ExtractDemo/ExtractDemo.dproj -------------------------------------------------------------------------------- /Demos/ExtractDemo/ExtractDemo.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/ExtractDemo/ExtractDemo.res -------------------------------------------------------------------------------- /Demos/ExtractDemo/ExtractDemo_Icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/ExtractDemo/ExtractDemo_Icon.ico -------------------------------------------------------------------------------- /Demos/ExtractDemo/Unit1.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/ExtractDemo/Unit1.dfm -------------------------------------------------------------------------------- /Demos/ExtractDemo/Unit1.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/ExtractDemo/Unit1.pas -------------------------------------------------------------------------------- /Demos/ExtractDemo/readme.txt: -------------------------------------------------------------------------------- 1 | ExtractDemo 2 | 3 | This application is undocumented. 4 | 5 | -------------------------------------------------------------------------------- /Demos/MultipleTargets/MultiTarget.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/MultipleTargets/MultiTarget.dpr -------------------------------------------------------------------------------- /Demos/MultipleTargets/MultiTarget.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/MultipleTargets/MultiTarget.dproj -------------------------------------------------------------------------------- /Demos/MultipleTargets/MultiTarget.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/MultipleTargets/MultiTarget.res -------------------------------------------------------------------------------- /Demos/MultipleTargets/MultiTarget_Icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/MultipleTargets/MultiTarget_Icon.ico -------------------------------------------------------------------------------- /Demos/MultipleTargets/main.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/MultipleTargets/main.dfm -------------------------------------------------------------------------------- /Demos/MultipleTargets/main.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/MultipleTargets/main.pas -------------------------------------------------------------------------------- /Demos/MultipleTargets/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/MultipleTargets/readme.txt -------------------------------------------------------------------------------- /Demos/Outlook/MAPI/MAPIUtil.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/Outlook/MAPI/MAPIUtil.pas -------------------------------------------------------------------------------- /Demos/Outlook/MAPI/MapiTags.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/Outlook/MAPI/MapiTags.pas -------------------------------------------------------------------------------- /Demos/Outlook/MAPI/imessage.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/Outlook/MAPI/imessage.pas -------------------------------------------------------------------------------- /Demos/Outlook/MAPI/mapidefs.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/Outlook/MAPI/mapidefs.pas -------------------------------------------------------------------------------- /Demos/Outlook/MAPI/mapiguid.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/Outlook/MAPI/mapiguid.pas -------------------------------------------------------------------------------- /Demos/Outlook/MAPI/mapix.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/Outlook/MAPI/mapix.pas -------------------------------------------------------------------------------- /Demos/Outlook/MAPI/tnef.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/Outlook/MAPI/tnef.pas -------------------------------------------------------------------------------- /Demos/Outlook/OutlookDemo.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/Outlook/OutlookDemo.dpr -------------------------------------------------------------------------------- /Demos/Outlook/OutlookDemo.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/Outlook/OutlookDemo.dproj -------------------------------------------------------------------------------- /Demos/Outlook/OutlookDemo.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/Outlook/OutlookDemo.res -------------------------------------------------------------------------------- /Demos/Outlook/OutlookDemo_Icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/Outlook/OutlookDemo_Icon.ico -------------------------------------------------------------------------------- /Demos/Outlook/OutlookTarget.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/Outlook/OutlookTarget.dfm -------------------------------------------------------------------------------- /Demos/Outlook/OutlookTarget.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/Outlook/OutlookTarget.pas -------------------------------------------------------------------------------- /Demos/Outlook/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/Outlook/readme.txt -------------------------------------------------------------------------------- /Demos/OutlookSource/Main.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/OutlookSource/Main.dfm -------------------------------------------------------------------------------- /Demos/OutlookSource/Main.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/OutlookSource/Main.pas -------------------------------------------------------------------------------- /Demos/OutlookSource/OutlookSource.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/OutlookSource/OutlookSource.dpr -------------------------------------------------------------------------------- /Demos/OutlookSource/OutlookSource.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/OutlookSource/OutlookSource.dproj -------------------------------------------------------------------------------- /Demos/OutlookSource/OutlookSource.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/OutlookSource/OutlookSource.res -------------------------------------------------------------------------------- /Demos/OutlookSource/OutlookSource_Icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/OutlookSource/OutlookSource_Icon.ico -------------------------------------------------------------------------------- /Demos/PIDLDemo/PIDLDemo.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/PIDLDemo/PIDLDemo.dpr -------------------------------------------------------------------------------- /Demos/PIDLDemo/PIDLDemo.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/PIDLDemo/PIDLDemo.dproj -------------------------------------------------------------------------------- /Demos/PIDLDemo/PIDLDemo.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/PIDLDemo/PIDLDemo.res -------------------------------------------------------------------------------- /Demos/PIDLDemo/PIDLDemo_Icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/PIDLDemo/PIDLDemo_Icon.ico -------------------------------------------------------------------------------- /Demos/PIDLDemo/PathComboBox.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/PIDLDemo/PathComboBox.pas -------------------------------------------------------------------------------- /Demos/PIDLDemo/PathCombobox.dcr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/PIDLDemo/PathCombobox.dcr -------------------------------------------------------------------------------- /Demos/PIDLDemo/Unit1.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/PIDLDemo/Unit1.dfm -------------------------------------------------------------------------------- /Demos/PIDLDemo/Unit1.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/PIDLDemo/Unit1.pas -------------------------------------------------------------------------------- /Demos/PIDLDemo/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/PIDLDemo/readme.txt -------------------------------------------------------------------------------- /Demos/RTF/RtfTarget.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/RTF/RtfTarget.dpr -------------------------------------------------------------------------------- /Demos/RTF/RtfTarget.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/RTF/RtfTarget.dproj -------------------------------------------------------------------------------- /Demos/RTF/RtfTarget.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/RTF/RtfTarget.res -------------------------------------------------------------------------------- /Demos/RTF/RtfTarget_Icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/RTF/RtfTarget_Icon.ico -------------------------------------------------------------------------------- /Demos/RTF/Target.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/RTF/Target.dfm -------------------------------------------------------------------------------- /Demos/RTF/Target.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/RTF/Target.pas -------------------------------------------------------------------------------- /Demos/ShellContextMenuHandler/About.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/ShellContextMenuHandler/About.bmp -------------------------------------------------------------------------------- /Demos/ShellContextMenuHandler/About.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/ShellContextMenuHandler/About.rc -------------------------------------------------------------------------------- /Demos/ShellContextMenuHandler/About.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/ShellContextMenuHandler/About.res -------------------------------------------------------------------------------- /Demos/ShellContextMenuHandler/ContextMenuHandlerMain.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/ShellContextMenuHandler/ContextMenuHandlerMain.dfm -------------------------------------------------------------------------------- /Demos/ShellContextMenuHandler/ContextMenuHandlerMain.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/ShellContextMenuHandler/ContextMenuHandlerMain.pas -------------------------------------------------------------------------------- /Demos/ShellContextMenuHandler/ContextMenuHandlerShellExt.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/ShellContextMenuHandler/ContextMenuHandlerShellExt.dpr -------------------------------------------------------------------------------- /Demos/ShellContextMenuHandler/ContextMenuHandlerShellExt.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/ShellContextMenuHandler/ContextMenuHandlerShellExt.dproj -------------------------------------------------------------------------------- /Demos/ShellContextMenuHandler/ContextMenuHandlerShellExt.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/ShellContextMenuHandler/ContextMenuHandlerShellExt.res -------------------------------------------------------------------------------- /Demos/ShellContextMenuHandler/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/ShellContextMenuHandler/readme.txt -------------------------------------------------------------------------------- /Demos/ShellContextMenuHandlerSimple/ContextMenuHandlerMain.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/ShellContextMenuHandlerSimple/ContextMenuHandlerMain.dfm -------------------------------------------------------------------------------- /Demos/ShellContextMenuHandlerSimple/ContextMenuHandlerMain.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/ShellContextMenuHandlerSimple/ContextMenuHandlerMain.pas -------------------------------------------------------------------------------- /Demos/ShellContextMenuHandlerSimple/SimpleContextMenuHandlerShellExt.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/ShellContextMenuHandlerSimple/SimpleContextMenuHandlerShellExt.dpr -------------------------------------------------------------------------------- /Demos/ShellContextMenuHandlerSimple/SimpleContextMenuHandlerShellExt.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/ShellContextMenuHandlerSimple/SimpleContextMenuHandlerShellExt.dproj -------------------------------------------------------------------------------- /Demos/ShellContextMenuHandlerSimple/SimpleContextMenuHandlerShellExt.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/ShellContextMenuHandlerSimple/SimpleContextMenuHandlerShellExt.res -------------------------------------------------------------------------------- /Demos/ShellContextMenuHandlerSimple/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/ShellContextMenuHandlerSimple/readme.txt -------------------------------------------------------------------------------- /Demos/ShellDragDropHandler/DragDropHandlerMain.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/ShellDragDropHandler/DragDropHandlerMain.dfm -------------------------------------------------------------------------------- /Demos/ShellDragDropHandler/DragDropHandlerMain.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/ShellDragDropHandler/DragDropHandlerMain.pas -------------------------------------------------------------------------------- /Demos/ShellDragDropHandler/DragDropHandlerShellExt.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/ShellDragDropHandler/DragDropHandlerShellExt.dpr -------------------------------------------------------------------------------- /Demos/ShellDragDropHandler/DragDropHandlerShellExt.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/ShellDragDropHandler/DragDropHandlerShellExt.dproj -------------------------------------------------------------------------------- /Demos/ShellDragDropHandler/DragDropHandlerShellExt.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/ShellDragDropHandler/DragDropHandlerShellExt.res -------------------------------------------------------------------------------- /Demos/ShellDragDropHandler/DragDropHandlerShellExt_Icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/ShellDragDropHandler/DragDropHandlerShellExt_Icon.ico -------------------------------------------------------------------------------- /Demos/ShellDragDropHandler/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/ShellDragDropHandler/readme.txt -------------------------------------------------------------------------------- /Demos/ShellDropHandler/DropHandlerMain.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/ShellDropHandler/DropHandlerMain.dfm -------------------------------------------------------------------------------- /Demos/ShellDropHandler/DropHandlerMain.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/ShellDropHandler/DropHandlerMain.pas -------------------------------------------------------------------------------- /Demos/ShellDropHandler/DropHandlerShellExt.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/ShellDropHandler/DropHandlerShellExt.dpr -------------------------------------------------------------------------------- /Demos/ShellDropHandler/DropHandlerShellExt.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/ShellDropHandler/DropHandlerShellExt.dproj -------------------------------------------------------------------------------- /Demos/ShellDropHandler/DropHandlerShellExt.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/ShellDropHandler/DropHandlerShellExt.res -------------------------------------------------------------------------------- /Demos/ShellDropHandler/FoobarEdit.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/ShellDropHandler/FoobarEdit.dpr -------------------------------------------------------------------------------- /Demos/ShellDropHandler/FoobarEdit.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/ShellDropHandler/FoobarEdit.dproj -------------------------------------------------------------------------------- /Demos/ShellDropHandler/FoobarEdit.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/ShellDropHandler/FoobarEdit.res -------------------------------------------------------------------------------- /Demos/ShellDropHandler/FoobarEdit_Icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/ShellDropHandler/FoobarEdit_Icon.ico -------------------------------------------------------------------------------- /Demos/ShellDropHandler/FoobarMain.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/ShellDropHandler/FoobarMain.dfm -------------------------------------------------------------------------------- /Demos/ShellDropHandler/FoobarMain.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/ShellDropHandler/FoobarMain.pas -------------------------------------------------------------------------------- /Demos/ShellDropHandler/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/ShellDropHandler/readme.txt -------------------------------------------------------------------------------- /Demos/SourceAnalyzer/Main.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/SourceAnalyzer/Main.dfm -------------------------------------------------------------------------------- /Demos/SourceAnalyzer/Main.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/SourceAnalyzer/Main.pas -------------------------------------------------------------------------------- /Demos/SourceAnalyzer/SourceAnalyzer.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/SourceAnalyzer/SourceAnalyzer.dpr -------------------------------------------------------------------------------- /Demos/SourceAnalyzer/SourceAnalyzer.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/SourceAnalyzer/SourceAnalyzer.dproj -------------------------------------------------------------------------------- /Demos/SourceAnalyzer/SourceAnalyzer.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/SourceAnalyzer/SourceAnalyzer.res -------------------------------------------------------------------------------- /Demos/SourceAnalyzer/SourceAnalyzer_Icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/SourceAnalyzer/SourceAnalyzer_Icon.ico -------------------------------------------------------------------------------- /Demos/SourceDemo/Main.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/SourceDemo/Main.dfm -------------------------------------------------------------------------------- /Demos/SourceDemo/Main.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/SourceDemo/Main.pas -------------------------------------------------------------------------------- /Demos/SourceDemo/SimpleSourceDemo.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/SourceDemo/SimpleSourceDemo.dpr -------------------------------------------------------------------------------- /Demos/SourceDemo/SimpleSourceDemo.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/SourceDemo/SimpleSourceDemo.dproj -------------------------------------------------------------------------------- /Demos/SourceDemo/SimpleSourceDemo.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/SourceDemo/SimpleSourceDemo.res -------------------------------------------------------------------------------- /Demos/SourceDemo/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/SourceDemo/readme.txt -------------------------------------------------------------------------------- /Demos/TargetAnalyzer/TargetAnalyzer.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/TargetAnalyzer/TargetAnalyzer.dpr -------------------------------------------------------------------------------- /Demos/TargetAnalyzer/TargetAnalyzer.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/TargetAnalyzer/TargetAnalyzer.dproj -------------------------------------------------------------------------------- /Demos/TargetAnalyzer/TargetAnalyzer.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/TargetAnalyzer/TargetAnalyzer.res -------------------------------------------------------------------------------- /Demos/TargetAnalyzer/TargetAnalyzer_Icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/TargetAnalyzer/TargetAnalyzer_Icon.ico -------------------------------------------------------------------------------- /Demos/TargetAnalyzer/main.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/TargetAnalyzer/main.dfm -------------------------------------------------------------------------------- /Demos/TargetAnalyzer/main.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/TargetAnalyzer/main.pas -------------------------------------------------------------------------------- /Demos/TargetDemo/Main.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/TargetDemo/Main.dfm -------------------------------------------------------------------------------- /Demos/TargetDemo/Main.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/TargetDemo/Main.pas -------------------------------------------------------------------------------- /Demos/TargetDemo/SimpleTargetDemo.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/TargetDemo/SimpleTargetDemo.dpr -------------------------------------------------------------------------------- /Demos/TargetDemo/SimpleTargetDemo.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/TargetDemo/SimpleTargetDemo.dproj -------------------------------------------------------------------------------- /Demos/TargetDemo/SimpleTargetDemo.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/TargetDemo/SimpleTargetDemo.res -------------------------------------------------------------------------------- /Demos/TargetDemo/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/TargetDemo/readme.txt -------------------------------------------------------------------------------- /Demos/TreeViewTarget/TreeViewTarget.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/TreeViewTarget/TreeViewTarget.dpr -------------------------------------------------------------------------------- /Demos/TreeViewTarget/TreeViewTarget.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/TreeViewTarget/TreeViewTarget.dproj -------------------------------------------------------------------------------- /Demos/TreeViewTarget/TreeViewTarget.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/TreeViewTarget/TreeViewTarget.res -------------------------------------------------------------------------------- /Demos/TreeViewTarget/TreeViewTarget_Icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/TreeViewTarget/TreeViewTarget_Icon.ico -------------------------------------------------------------------------------- /Demos/TreeViewTarget/main.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/TreeViewTarget/main.dfm -------------------------------------------------------------------------------- /Demos/TreeViewTarget/main.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/TreeViewTarget/main.pas -------------------------------------------------------------------------------- /Demos/Unicode/DragDropUnicode.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/Unicode/DragDropUnicode.dpr -------------------------------------------------------------------------------- /Demos/Unicode/DragDropUnicode.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/Unicode/DragDropUnicode.dproj -------------------------------------------------------------------------------- /Demos/Unicode/DragDropUnicode.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/Unicode/DragDropUnicode.res -------------------------------------------------------------------------------- /Demos/Unicode/DragDropUnicodeTexts.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/Unicode/DragDropUnicodeTexts.res -------------------------------------------------------------------------------- /Demos/Unicode/DragDropUnicode_Icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/Unicode/DragDropUnicode_Icon.ico -------------------------------------------------------------------------------- /Demos/Unicode/main.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/Unicode/main.dfm -------------------------------------------------------------------------------- /Demos/Unicode/main.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/Unicode/main.pas -------------------------------------------------------------------------------- /Demos/VirtualFile/Main.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/VirtualFile/Main.dfm -------------------------------------------------------------------------------- /Demos/VirtualFile/Main.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/VirtualFile/Main.pas -------------------------------------------------------------------------------- /Demos/VirtualFile/VirtualFile.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/VirtualFile/VirtualFile.dpr -------------------------------------------------------------------------------- /Demos/VirtualFile/VirtualFile.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/VirtualFile/VirtualFile.dproj -------------------------------------------------------------------------------- /Demos/VirtualFile/VirtualFile.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/VirtualFile/VirtualFile.res -------------------------------------------------------------------------------- /Demos/VirtualFile/VirtualFile_Icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/VirtualFile/VirtualFile_Icon.ico -------------------------------------------------------------------------------- /Demos/VirtualFile/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/VirtualFile/readme.txt -------------------------------------------------------------------------------- /Demos/VirtualFileStream/Main.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/VirtualFileStream/Main.dfm -------------------------------------------------------------------------------- /Demos/VirtualFileStream/Main.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/VirtualFileStream/Main.pas -------------------------------------------------------------------------------- /Demos/VirtualFileStream/VirtualFileStream.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/VirtualFileStream/VirtualFileStream.dpr -------------------------------------------------------------------------------- /Demos/VirtualFileStream/VirtualFileStream.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/VirtualFileStream/VirtualFileStream.dproj -------------------------------------------------------------------------------- /Demos/VirtualFileStream/VirtualFileStream.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/VirtualFileStream/VirtualFileStream.res -------------------------------------------------------------------------------- /Demos/VirtualFileStream/VirtualFileStream_Icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/VirtualFileStream/VirtualFileStream_Icon.ico -------------------------------------------------------------------------------- /Demos/VirtualFileStream/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/VirtualFileStream/readme.txt -------------------------------------------------------------------------------- /Demos/WM_DROPFILES/DropFiles.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/WM_DROPFILES/DropFiles.dpr -------------------------------------------------------------------------------- /Demos/WM_DROPFILES/DropFiles.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/WM_DROPFILES/DropFiles.dproj -------------------------------------------------------------------------------- /Demos/WM_DROPFILES/DropFiles.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/WM_DROPFILES/DropFiles.res -------------------------------------------------------------------------------- /Demos/WM_DROPFILES/DropFiles_Icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/WM_DROPFILES/DropFiles_Icon.ico -------------------------------------------------------------------------------- /Demos/WM_DROPFILES/Main.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/WM_DROPFILES/Main.dfm -------------------------------------------------------------------------------- /Demos/WM_DROPFILES/Main.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Demos/WM_DROPFILES/Main.pas -------------------------------------------------------------------------------- /Demos/readme.txt: -------------------------------------------------------------------------------- 1 | This folder contains the examples. -------------------------------------------------------------------------------- /DemosWithoutInstall/Adapters/Adapter.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/Adapters/Adapter.dpr -------------------------------------------------------------------------------- /DemosWithoutInstall/Adapters/Adapter.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/Adapters/Adapter.dproj -------------------------------------------------------------------------------- /DemosWithoutInstall/Adapters/Adapter.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/Adapters/Adapter.res -------------------------------------------------------------------------------- /DemosWithoutInstall/Adapters/Main.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/Adapters/Main.dfm -------------------------------------------------------------------------------- /DemosWithoutInstall/Adapters/Main.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/Adapters/Main.pas -------------------------------------------------------------------------------- /DemosWithoutInstall/Adapters/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/Adapters/readme.txt -------------------------------------------------------------------------------- /DemosWithoutInstall/AsyncSource with Filestreams/AsyncFTPClient.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/AsyncSource with Filestreams/AsyncFTPClient.dpr -------------------------------------------------------------------------------- /DemosWithoutInstall/AsyncSource with Filestreams/AsyncFTPClient.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/AsyncSource with Filestreams/AsyncFTPClient.dproj -------------------------------------------------------------------------------- /DemosWithoutInstall/AsyncSource with Filestreams/AsyncFTPClient.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/AsyncSource with Filestreams/AsyncFTPClient.res -------------------------------------------------------------------------------- /DemosWithoutInstall/AsyncSource with Filestreams/AsyncFTPClient_Icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/AsyncSource with Filestreams/AsyncFTPClient_Icon.ico -------------------------------------------------------------------------------- /DemosWithoutInstall/AsyncSource with Filestreams/RingbufferStream.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/AsyncSource with Filestreams/RingbufferStream.pas -------------------------------------------------------------------------------- /DemosWithoutInstall/AsyncSource with Filestreams/Throbber.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/AsyncSource with Filestreams/Throbber.res -------------------------------------------------------------------------------- /DemosWithoutInstall/AsyncSource with Filestreams/main.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/AsyncSource with Filestreams/main.dfm -------------------------------------------------------------------------------- /DemosWithoutInstall/AsyncSource with Filestreams/main.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/AsyncSource with Filestreams/main.pas -------------------------------------------------------------------------------- /DemosWithoutInstall/AsyncSource/AsyncTransferSource.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/AsyncSource/AsyncTransferSource.dpr -------------------------------------------------------------------------------- /DemosWithoutInstall/AsyncSource/AsyncTransferSource.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/AsyncSource/AsyncTransferSource.dproj -------------------------------------------------------------------------------- /DemosWithoutInstall/AsyncSource/AsyncTransferSource.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/AsyncSource/AsyncTransferSource.res -------------------------------------------------------------------------------- /DemosWithoutInstall/AsyncSource/main.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/AsyncSource/main.dfm -------------------------------------------------------------------------------- /DemosWithoutInstall/AsyncSource/main.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/AsyncSource/main.pas -------------------------------------------------------------------------------- /DemosWithoutInstall/AsyncSource/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/AsyncSource/readme.txt -------------------------------------------------------------------------------- /DemosWithoutInstall/AsyncTarget/AsyncTransferTarget.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/AsyncTarget/AsyncTransferTarget.dpr -------------------------------------------------------------------------------- /DemosWithoutInstall/AsyncTarget/AsyncTransferTarget.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/AsyncTarget/AsyncTransferTarget.dproj -------------------------------------------------------------------------------- /DemosWithoutInstall/AsyncTarget/AsyncTransferTarget.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/AsyncTarget/AsyncTransferTarget.res -------------------------------------------------------------------------------- /DemosWithoutInstall/AsyncTarget/AsyncTransferTarget_Icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/AsyncTarget/AsyncTransferTarget_Icon.ico -------------------------------------------------------------------------------- /DemosWithoutInstall/AsyncTarget/main.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/AsyncTarget/main.dfm -------------------------------------------------------------------------------- /DemosWithoutInstall/AsyncTarget/main.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/AsyncTarget/main.pas -------------------------------------------------------------------------------- /DemosWithoutInstall/AsyncTarget/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/AsyncTarget/readme.txt -------------------------------------------------------------------------------- /DemosWithoutInstall/AutoScroll/AutoScroll.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/AutoScroll/AutoScroll.dpr -------------------------------------------------------------------------------- /DemosWithoutInstall/AutoScroll/AutoScroll.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/AutoScroll/AutoScroll.dproj -------------------------------------------------------------------------------- /DemosWithoutInstall/AutoScroll/AutoScroll.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/AutoScroll/AutoScroll.res -------------------------------------------------------------------------------- /DemosWithoutInstall/AutoScroll/AutoScroll_Icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/AutoScroll/AutoScroll_Icon.ico -------------------------------------------------------------------------------- /DemosWithoutInstall/AutoScroll/main.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/AutoScroll/main.dfm -------------------------------------------------------------------------------- /DemosWithoutInstall/AutoScroll/main.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/AutoScroll/main.pas -------------------------------------------------------------------------------- /DemosWithoutInstall/AutoScroll/readme.txt: -------------------------------------------------------------------------------- 1 | AutoScroll 2 | 3 | This application is undocumented. 4 | 5 | -------------------------------------------------------------------------------- /DemosWithoutInstall/ComboTargetDemo/ComboTargetDemo.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/ComboTargetDemo/ComboTargetDemo.dpr -------------------------------------------------------------------------------- /DemosWithoutInstall/ComboTargetDemo/ComboTargetDemo.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/ComboTargetDemo/ComboTargetDemo.dproj -------------------------------------------------------------------------------- /DemosWithoutInstall/ComboTargetDemo/ComboTargetDemo.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/ComboTargetDemo/ComboTargetDemo.res -------------------------------------------------------------------------------- /DemosWithoutInstall/ComboTargetDemo/ComboTargetDemo_Icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/ComboTargetDemo/ComboTargetDemo_Icon.ico -------------------------------------------------------------------------------- /DemosWithoutInstall/ComboTargetDemo/main.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/ComboTargetDemo/main.dfm -------------------------------------------------------------------------------- /DemosWithoutInstall/ComboTargetDemo/main.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/ComboTargetDemo/main.pas -------------------------------------------------------------------------------- /DemosWithoutInstall/ComboTargetDemo/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/ComboTargetDemo/readme.txt -------------------------------------------------------------------------------- /DemosWithoutInstall/CustomFormat1/CustomFormat1.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/CustomFormat1/CustomFormat1.dpr -------------------------------------------------------------------------------- /DemosWithoutInstall/CustomFormat1/CustomFormat1.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/CustomFormat1/CustomFormat1.dproj -------------------------------------------------------------------------------- /DemosWithoutInstall/CustomFormat1/CustomFormat1.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/CustomFormat1/CustomFormat1.res -------------------------------------------------------------------------------- /DemosWithoutInstall/CustomFormat1/CustomFormat1_Icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/CustomFormat1/CustomFormat1_Icon.ico -------------------------------------------------------------------------------- /DemosWithoutInstall/CustomFormat1/DragDropTimeOfDay.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/CustomFormat1/DragDropTimeOfDay.pas -------------------------------------------------------------------------------- /DemosWithoutInstall/CustomFormat1/Source.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/CustomFormat1/Source.dfm -------------------------------------------------------------------------------- /DemosWithoutInstall/CustomFormat1/Source.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/CustomFormat1/Source.pas -------------------------------------------------------------------------------- /DemosWithoutInstall/CustomFormat1/Target.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/CustomFormat1/Target.dfm -------------------------------------------------------------------------------- /DemosWithoutInstall/CustomFormat1/Target.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/CustomFormat1/Target.pas -------------------------------------------------------------------------------- /DemosWithoutInstall/CustomFormat1/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/CustomFormat1/readme.txt -------------------------------------------------------------------------------- /DemosWithoutInstall/CustomFormat2/CustomFormat2.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/CustomFormat2/CustomFormat2.dpr -------------------------------------------------------------------------------- /DemosWithoutInstall/CustomFormat2/CustomFormat2.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/CustomFormat2/CustomFormat2.dproj -------------------------------------------------------------------------------- /DemosWithoutInstall/CustomFormat2/CustomFormat2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/CustomFormat2/CustomFormat2.res -------------------------------------------------------------------------------- /DemosWithoutInstall/CustomFormat2/CustomFormat2_Icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/CustomFormat2/CustomFormat2_Icon.ico -------------------------------------------------------------------------------- /DemosWithoutInstall/CustomFormat2/DragDropTimeOfDay.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/CustomFormat2/DragDropTimeOfDay.pas -------------------------------------------------------------------------------- /DemosWithoutInstall/CustomFormat2/Source.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/CustomFormat2/Source.dfm -------------------------------------------------------------------------------- /DemosWithoutInstall/CustomFormat2/Source.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/CustomFormat2/Source.pas -------------------------------------------------------------------------------- /DemosWithoutInstall/CustomFormat2/Target.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/CustomFormat2/Target.dfm -------------------------------------------------------------------------------- /DemosWithoutInstall/CustomFormat2/Target.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/CustomFormat2/Target.pas -------------------------------------------------------------------------------- /DemosWithoutInstall/CustomFormat2/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/CustomFormat2/readme.txt -------------------------------------------------------------------------------- /DemosWithoutInstall/DemosWithoutInstall.groupproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/DemosWithoutInstall.groupproj -------------------------------------------------------------------------------- /DemosWithoutInstall/DetailedDemo/DragDropDemo.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/DetailedDemo/DragDropDemo.dpr -------------------------------------------------------------------------------- /DemosWithoutInstall/DetailedDemo/DragDropDemo.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/DetailedDemo/DragDropDemo.dproj -------------------------------------------------------------------------------- /DemosWithoutInstall/DetailedDemo/DragDropDemo.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/DetailedDemo/DragDropDemo.res -------------------------------------------------------------------------------- /DemosWithoutInstall/DetailedDemo/DragDropDemo_Icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/DetailedDemo/DragDropDemo_Icon.ico -------------------------------------------------------------------------------- /DemosWithoutInstall/DetailedDemo/DropFile.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/DetailedDemo/DropFile.dfm -------------------------------------------------------------------------------- /DemosWithoutInstall/DetailedDemo/DropFile.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/DetailedDemo/DropFile.pas -------------------------------------------------------------------------------- /DemosWithoutInstall/DetailedDemo/DropText.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/DetailedDemo/DropText.dfm -------------------------------------------------------------------------------- /DemosWithoutInstall/DetailedDemo/DropText.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/DetailedDemo/DropText.pas -------------------------------------------------------------------------------- /DemosWithoutInstall/DetailedDemo/DropURL.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/DetailedDemo/DropURL.dfm -------------------------------------------------------------------------------- /DemosWithoutInstall/DetailedDemo/DropURL.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/DetailedDemo/DropURL.pas -------------------------------------------------------------------------------- /DemosWithoutInstall/DetailedDemo/Extra/ShellConsts.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/DetailedDemo/Extra/ShellConsts.pas -------------------------------------------------------------------------------- /DemosWithoutInstall/DetailedDemo/Extra/ShellCtrls.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/DetailedDemo/Extra/ShellCtrls.pas -------------------------------------------------------------------------------- /DemosWithoutInstall/DetailedDemo/cursors.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/DetailedDemo/cursors.res -------------------------------------------------------------------------------- /DemosWithoutInstall/DetailedDemo/demo.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/DetailedDemo/demo.dfm -------------------------------------------------------------------------------- /DemosWithoutInstall/DetailedDemo/demo.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/DetailedDemo/demo.pas -------------------------------------------------------------------------------- /DemosWithoutInstall/DetailedDemo/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/DetailedDemo/readme.txt -------------------------------------------------------------------------------- /DemosWithoutInstall/ExtractDemo/ExtractDemo.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/ExtractDemo/ExtractDemo.dpr -------------------------------------------------------------------------------- /DemosWithoutInstall/ExtractDemo/ExtractDemo.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/ExtractDemo/ExtractDemo.dproj -------------------------------------------------------------------------------- /DemosWithoutInstall/ExtractDemo/ExtractDemo.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/ExtractDemo/ExtractDemo.res -------------------------------------------------------------------------------- /DemosWithoutInstall/ExtractDemo/ExtractDemo_Icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/ExtractDemo/ExtractDemo_Icon.ico -------------------------------------------------------------------------------- /DemosWithoutInstall/ExtractDemo/Unit1.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/ExtractDemo/Unit1.dfm -------------------------------------------------------------------------------- /DemosWithoutInstall/ExtractDemo/Unit1.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/ExtractDemo/Unit1.pas -------------------------------------------------------------------------------- /DemosWithoutInstall/ExtractDemo/readme.txt: -------------------------------------------------------------------------------- 1 | ExtractDemo 2 | 3 | This application is undocumented. 4 | 5 | -------------------------------------------------------------------------------- /DemosWithoutInstall/MultipleTargets/MultiTarget.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/MultipleTargets/MultiTarget.dpr -------------------------------------------------------------------------------- /DemosWithoutInstall/MultipleTargets/MultiTarget.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/MultipleTargets/MultiTarget.dproj -------------------------------------------------------------------------------- /DemosWithoutInstall/MultipleTargets/MultiTarget.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/MultipleTargets/MultiTarget.res -------------------------------------------------------------------------------- /DemosWithoutInstall/MultipleTargets/MultiTarget_Icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/MultipleTargets/MultiTarget_Icon.ico -------------------------------------------------------------------------------- /DemosWithoutInstall/MultipleTargets/main.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/MultipleTargets/main.dfm -------------------------------------------------------------------------------- /DemosWithoutInstall/MultipleTargets/main.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/MultipleTargets/main.pas -------------------------------------------------------------------------------- /DemosWithoutInstall/MultipleTargets/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/MultipleTargets/readme.txt -------------------------------------------------------------------------------- /DemosWithoutInstall/Outlook/MAPI/MAPIUtil.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/Outlook/MAPI/MAPIUtil.pas -------------------------------------------------------------------------------- /DemosWithoutInstall/Outlook/MAPI/MapiTags.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/Outlook/MAPI/MapiTags.pas -------------------------------------------------------------------------------- /DemosWithoutInstall/Outlook/MAPI/imessage.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/Outlook/MAPI/imessage.pas -------------------------------------------------------------------------------- /DemosWithoutInstall/Outlook/MAPI/mapidefs.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/Outlook/MAPI/mapidefs.pas -------------------------------------------------------------------------------- /DemosWithoutInstall/Outlook/MAPI/mapiguid.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/Outlook/MAPI/mapiguid.pas -------------------------------------------------------------------------------- /DemosWithoutInstall/Outlook/MAPI/mapix.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/Outlook/MAPI/mapix.pas -------------------------------------------------------------------------------- /DemosWithoutInstall/Outlook/MAPI/tnef.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/Outlook/MAPI/tnef.pas -------------------------------------------------------------------------------- /DemosWithoutInstall/Outlook/OutlookDemo.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/Outlook/OutlookDemo.dpr -------------------------------------------------------------------------------- /DemosWithoutInstall/Outlook/OutlookDemo.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/Outlook/OutlookDemo.dproj -------------------------------------------------------------------------------- /DemosWithoutInstall/Outlook/OutlookDemo.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/Outlook/OutlookDemo.res -------------------------------------------------------------------------------- /DemosWithoutInstall/Outlook/OutlookDemo_Icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/Outlook/OutlookDemo_Icon.ico -------------------------------------------------------------------------------- /DemosWithoutInstall/Outlook/OutlookTarget.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/Outlook/OutlookTarget.dfm -------------------------------------------------------------------------------- /DemosWithoutInstall/Outlook/OutlookTarget.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/Outlook/OutlookTarget.pas -------------------------------------------------------------------------------- /DemosWithoutInstall/Outlook/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/Outlook/readme.txt -------------------------------------------------------------------------------- /DemosWithoutInstall/OutlookSource/Main.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/OutlookSource/Main.dfm -------------------------------------------------------------------------------- /DemosWithoutInstall/OutlookSource/Main.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/OutlookSource/Main.pas -------------------------------------------------------------------------------- /DemosWithoutInstall/OutlookSource/OutlookSource.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/OutlookSource/OutlookSource.dpr -------------------------------------------------------------------------------- /DemosWithoutInstall/OutlookSource/OutlookSource.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/OutlookSource/OutlookSource.dproj -------------------------------------------------------------------------------- /DemosWithoutInstall/OutlookSource/OutlookSource.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/OutlookSource/OutlookSource.res -------------------------------------------------------------------------------- /DemosWithoutInstall/OutlookSource/OutlookSource_Icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/OutlookSource/OutlookSource_Icon.ico -------------------------------------------------------------------------------- /DemosWithoutInstall/PIDLDemo/PIDLDemo.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/PIDLDemo/PIDLDemo.dpr -------------------------------------------------------------------------------- /DemosWithoutInstall/PIDLDemo/PIDLDemo.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/PIDLDemo/PIDLDemo.dproj -------------------------------------------------------------------------------- /DemosWithoutInstall/PIDLDemo/PIDLDemo.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/PIDLDemo/PIDLDemo.res -------------------------------------------------------------------------------- /DemosWithoutInstall/PIDLDemo/PIDLDemo_Icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/PIDLDemo/PIDLDemo_Icon.ico -------------------------------------------------------------------------------- /DemosWithoutInstall/PIDLDemo/PathComboBox.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/PIDLDemo/PathComboBox.pas -------------------------------------------------------------------------------- /DemosWithoutInstall/PIDLDemo/PathCombobox.dcr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/PIDLDemo/PathCombobox.dcr -------------------------------------------------------------------------------- /DemosWithoutInstall/PIDLDemo/Unit1.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/PIDLDemo/Unit1.dfm -------------------------------------------------------------------------------- /DemosWithoutInstall/PIDLDemo/Unit1.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/PIDLDemo/Unit1.pas -------------------------------------------------------------------------------- /DemosWithoutInstall/PIDLDemo/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/PIDLDemo/readme.txt -------------------------------------------------------------------------------- /DemosWithoutInstall/RTF/RtfTarget.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/RTF/RtfTarget.dpr -------------------------------------------------------------------------------- /DemosWithoutInstall/RTF/RtfTarget.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/RTF/RtfTarget.dproj -------------------------------------------------------------------------------- /DemosWithoutInstall/RTF/RtfTarget.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/RTF/RtfTarget.res -------------------------------------------------------------------------------- /DemosWithoutInstall/RTF/RtfTarget_Icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/RTF/RtfTarget_Icon.ico -------------------------------------------------------------------------------- /DemosWithoutInstall/RTF/Target.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/RTF/Target.dfm -------------------------------------------------------------------------------- /DemosWithoutInstall/RTF/Target.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/RTF/Target.pas -------------------------------------------------------------------------------- /DemosWithoutInstall/ShellContextMenuHandler/About.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/ShellContextMenuHandler/About.bmp -------------------------------------------------------------------------------- /DemosWithoutInstall/ShellContextMenuHandler/About.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/ShellContextMenuHandler/About.rc -------------------------------------------------------------------------------- /DemosWithoutInstall/ShellContextMenuHandler/About.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/ShellContextMenuHandler/About.res -------------------------------------------------------------------------------- /DemosWithoutInstall/ShellContextMenuHandler/ContextMenuHandlerMain.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/ShellContextMenuHandler/ContextMenuHandlerMain.dfm -------------------------------------------------------------------------------- /DemosWithoutInstall/ShellContextMenuHandler/ContextMenuHandlerMain.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/ShellContextMenuHandler/ContextMenuHandlerMain.pas -------------------------------------------------------------------------------- /DemosWithoutInstall/ShellContextMenuHandler/ContextMenuHandlerShellExt.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/ShellContextMenuHandler/ContextMenuHandlerShellExt.dpr -------------------------------------------------------------------------------- /DemosWithoutInstall/ShellContextMenuHandler/ContextMenuHandlerShellExt.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/ShellContextMenuHandler/ContextMenuHandlerShellExt.dproj -------------------------------------------------------------------------------- /DemosWithoutInstall/ShellContextMenuHandler/ContextMenuHandlerShellExt.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/ShellContextMenuHandler/ContextMenuHandlerShellExt.res -------------------------------------------------------------------------------- /DemosWithoutInstall/ShellContextMenuHandler/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/ShellContextMenuHandler/readme.txt -------------------------------------------------------------------------------- /DemosWithoutInstall/ShellContextMenuHandlerSimple/ContextMenuHandlerMain.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/ShellContextMenuHandlerSimple/ContextMenuHandlerMain.dfm -------------------------------------------------------------------------------- /DemosWithoutInstall/ShellContextMenuHandlerSimple/ContextMenuHandlerMain.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/ShellContextMenuHandlerSimple/ContextMenuHandlerMain.pas -------------------------------------------------------------------------------- /DemosWithoutInstall/ShellContextMenuHandlerSimple/SimpleContextMenuHandlerShellExt.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/ShellContextMenuHandlerSimple/SimpleContextMenuHandlerShellExt.dpr -------------------------------------------------------------------------------- /DemosWithoutInstall/ShellContextMenuHandlerSimple/SimpleContextMenuHandlerShellExt.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/ShellContextMenuHandlerSimple/SimpleContextMenuHandlerShellExt.dproj -------------------------------------------------------------------------------- /DemosWithoutInstall/ShellContextMenuHandlerSimple/SimpleContextMenuHandlerShellExt.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/ShellContextMenuHandlerSimple/SimpleContextMenuHandlerShellExt.res -------------------------------------------------------------------------------- /DemosWithoutInstall/ShellContextMenuHandlerSimple/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/ShellContextMenuHandlerSimple/readme.txt -------------------------------------------------------------------------------- /DemosWithoutInstall/ShellDragDropHandler/DragDropHandlerMain.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/ShellDragDropHandler/DragDropHandlerMain.dfm -------------------------------------------------------------------------------- /DemosWithoutInstall/ShellDragDropHandler/DragDropHandlerMain.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/ShellDragDropHandler/DragDropHandlerMain.pas -------------------------------------------------------------------------------- /DemosWithoutInstall/ShellDragDropHandler/DragDropHandlerShellExt.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/ShellDragDropHandler/DragDropHandlerShellExt.dpr -------------------------------------------------------------------------------- /DemosWithoutInstall/ShellDragDropHandler/DragDropHandlerShellExt.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/ShellDragDropHandler/DragDropHandlerShellExt.dproj -------------------------------------------------------------------------------- /DemosWithoutInstall/ShellDragDropHandler/DragDropHandlerShellExt.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/ShellDragDropHandler/DragDropHandlerShellExt.res -------------------------------------------------------------------------------- /DemosWithoutInstall/ShellDragDropHandler/DragDropHandlerShellExt_Icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/ShellDragDropHandler/DragDropHandlerShellExt_Icon.ico -------------------------------------------------------------------------------- /DemosWithoutInstall/ShellDragDropHandler/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/ShellDragDropHandler/readme.txt -------------------------------------------------------------------------------- /DemosWithoutInstall/ShellDropHandler/DropHandlerMain.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/ShellDropHandler/DropHandlerMain.dfm -------------------------------------------------------------------------------- /DemosWithoutInstall/ShellDropHandler/DropHandlerMain.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/ShellDropHandler/DropHandlerMain.pas -------------------------------------------------------------------------------- /DemosWithoutInstall/ShellDropHandler/DropHandlerShellExt.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/ShellDropHandler/DropHandlerShellExt.dpr -------------------------------------------------------------------------------- /DemosWithoutInstall/ShellDropHandler/DropHandlerShellExt.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/ShellDropHandler/DropHandlerShellExt.dproj -------------------------------------------------------------------------------- /DemosWithoutInstall/ShellDropHandler/DropHandlerShellExt.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/ShellDropHandler/DropHandlerShellExt.res -------------------------------------------------------------------------------- /DemosWithoutInstall/ShellDropHandler/FoobarEdit.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/ShellDropHandler/FoobarEdit.dpr -------------------------------------------------------------------------------- /DemosWithoutInstall/ShellDropHandler/FoobarEdit.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/ShellDropHandler/FoobarEdit.dproj -------------------------------------------------------------------------------- /DemosWithoutInstall/ShellDropHandler/FoobarEdit.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/ShellDropHandler/FoobarEdit.res -------------------------------------------------------------------------------- /DemosWithoutInstall/ShellDropHandler/FoobarEdit_Icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/ShellDropHandler/FoobarEdit_Icon.ico -------------------------------------------------------------------------------- /DemosWithoutInstall/ShellDropHandler/FoobarMain.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/ShellDropHandler/FoobarMain.dfm -------------------------------------------------------------------------------- /DemosWithoutInstall/ShellDropHandler/FoobarMain.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/ShellDropHandler/FoobarMain.pas -------------------------------------------------------------------------------- /DemosWithoutInstall/ShellDropHandler/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/ShellDropHandler/readme.txt -------------------------------------------------------------------------------- /DemosWithoutInstall/SourceAnalyzer/Main.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/SourceAnalyzer/Main.dfm -------------------------------------------------------------------------------- /DemosWithoutInstall/SourceAnalyzer/Main.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/SourceAnalyzer/Main.pas -------------------------------------------------------------------------------- /DemosWithoutInstall/SourceAnalyzer/SourceAnalyzer.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/SourceAnalyzer/SourceAnalyzer.dpr -------------------------------------------------------------------------------- /DemosWithoutInstall/SourceAnalyzer/SourceAnalyzer.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/SourceAnalyzer/SourceAnalyzer.dproj -------------------------------------------------------------------------------- /DemosWithoutInstall/SourceAnalyzer/SourceAnalyzer.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/SourceAnalyzer/SourceAnalyzer.res -------------------------------------------------------------------------------- /DemosWithoutInstall/SourceAnalyzer/SourceAnalyzer_Icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/SourceAnalyzer/SourceAnalyzer_Icon.ico -------------------------------------------------------------------------------- /DemosWithoutInstall/SourceDemo/Main.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/SourceDemo/Main.dfm -------------------------------------------------------------------------------- /DemosWithoutInstall/SourceDemo/Main.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/SourceDemo/Main.pas -------------------------------------------------------------------------------- /DemosWithoutInstall/SourceDemo/SimpleSourceDemo.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/SourceDemo/SimpleSourceDemo.dpr -------------------------------------------------------------------------------- /DemosWithoutInstall/SourceDemo/SimpleSourceDemo.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/SourceDemo/SimpleSourceDemo.dproj -------------------------------------------------------------------------------- /DemosWithoutInstall/SourceDemo/SimpleSourceDemo.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/SourceDemo/SimpleSourceDemo.res -------------------------------------------------------------------------------- /DemosWithoutInstall/SourceDemo/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/SourceDemo/readme.txt -------------------------------------------------------------------------------- /DemosWithoutInstall/TargetAnalyzer/TargetAnalyzer.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/TargetAnalyzer/TargetAnalyzer.dpr -------------------------------------------------------------------------------- /DemosWithoutInstall/TargetAnalyzer/TargetAnalyzer.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/TargetAnalyzer/TargetAnalyzer.dproj -------------------------------------------------------------------------------- /DemosWithoutInstall/TargetAnalyzer/TargetAnalyzer.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/TargetAnalyzer/TargetAnalyzer.res -------------------------------------------------------------------------------- /DemosWithoutInstall/TargetAnalyzer/TargetAnalyzer_Icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/TargetAnalyzer/TargetAnalyzer_Icon.ico -------------------------------------------------------------------------------- /DemosWithoutInstall/TargetAnalyzer/main.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/TargetAnalyzer/main.dfm -------------------------------------------------------------------------------- /DemosWithoutInstall/TargetAnalyzer/main.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/TargetAnalyzer/main.pas -------------------------------------------------------------------------------- /DemosWithoutInstall/TargetDemo/Main.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/TargetDemo/Main.dfm -------------------------------------------------------------------------------- /DemosWithoutInstall/TargetDemo/Main.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/TargetDemo/Main.pas -------------------------------------------------------------------------------- /DemosWithoutInstall/TargetDemo/SimpleTargetDemo.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/TargetDemo/SimpleTargetDemo.dpr -------------------------------------------------------------------------------- /DemosWithoutInstall/TargetDemo/SimpleTargetDemo.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/TargetDemo/SimpleTargetDemo.dproj -------------------------------------------------------------------------------- /DemosWithoutInstall/TargetDemo/SimpleTargetDemo.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/TargetDemo/SimpleTargetDemo.res -------------------------------------------------------------------------------- /DemosWithoutInstall/TargetDemo/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/TargetDemo/readme.txt -------------------------------------------------------------------------------- /DemosWithoutInstall/TreeViewTarget/TreeViewTarget.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/TreeViewTarget/TreeViewTarget.dpr -------------------------------------------------------------------------------- /DemosWithoutInstall/TreeViewTarget/TreeViewTarget.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/TreeViewTarget/TreeViewTarget.dproj -------------------------------------------------------------------------------- /DemosWithoutInstall/TreeViewTarget/TreeViewTarget.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/TreeViewTarget/TreeViewTarget.res -------------------------------------------------------------------------------- /DemosWithoutInstall/TreeViewTarget/TreeViewTarget_Icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/TreeViewTarget/TreeViewTarget_Icon.ico -------------------------------------------------------------------------------- /DemosWithoutInstall/TreeViewTarget/main.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/TreeViewTarget/main.dfm -------------------------------------------------------------------------------- /DemosWithoutInstall/TreeViewTarget/main.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/TreeViewTarget/main.pas -------------------------------------------------------------------------------- /DemosWithoutInstall/Unicode/DragDropUnicode.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/Unicode/DragDropUnicode.dpr -------------------------------------------------------------------------------- /DemosWithoutInstall/Unicode/DragDropUnicode.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/Unicode/DragDropUnicode.dproj -------------------------------------------------------------------------------- /DemosWithoutInstall/Unicode/DragDropUnicode.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/Unicode/DragDropUnicode.res -------------------------------------------------------------------------------- /DemosWithoutInstall/Unicode/DragDropUnicodeTexts.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/Unicode/DragDropUnicodeTexts.res -------------------------------------------------------------------------------- /DemosWithoutInstall/Unicode/DragDropUnicode_Icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/Unicode/DragDropUnicode_Icon.ico -------------------------------------------------------------------------------- /DemosWithoutInstall/Unicode/main.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/Unicode/main.dfm -------------------------------------------------------------------------------- /DemosWithoutInstall/Unicode/main.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/Unicode/main.pas -------------------------------------------------------------------------------- /DemosWithoutInstall/VirtualFile/Main.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/VirtualFile/Main.dfm -------------------------------------------------------------------------------- /DemosWithoutInstall/VirtualFile/Main.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/VirtualFile/Main.pas -------------------------------------------------------------------------------- /DemosWithoutInstall/VirtualFile/VirtualFile.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/VirtualFile/VirtualFile.dpr -------------------------------------------------------------------------------- /DemosWithoutInstall/VirtualFile/VirtualFile.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/VirtualFile/VirtualFile.dproj -------------------------------------------------------------------------------- /DemosWithoutInstall/VirtualFile/VirtualFile.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/VirtualFile/VirtualFile.res -------------------------------------------------------------------------------- /DemosWithoutInstall/VirtualFile/VirtualFile_Icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/VirtualFile/VirtualFile_Icon.ico -------------------------------------------------------------------------------- /DemosWithoutInstall/VirtualFile/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/VirtualFile/readme.txt -------------------------------------------------------------------------------- /DemosWithoutInstall/VirtualFileStream/Main.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/VirtualFileStream/Main.dfm -------------------------------------------------------------------------------- /DemosWithoutInstall/VirtualFileStream/Main.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/VirtualFileStream/Main.pas -------------------------------------------------------------------------------- /DemosWithoutInstall/VirtualFileStream/VirtualFileStream.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/VirtualFileStream/VirtualFileStream.dpr -------------------------------------------------------------------------------- /DemosWithoutInstall/VirtualFileStream/VirtualFileStream.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/VirtualFileStream/VirtualFileStream.dproj -------------------------------------------------------------------------------- /DemosWithoutInstall/VirtualFileStream/VirtualFileStream.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/VirtualFileStream/VirtualFileStream.res -------------------------------------------------------------------------------- /DemosWithoutInstall/VirtualFileStream/VirtualFileStream_Icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/VirtualFileStream/VirtualFileStream_Icon.ico -------------------------------------------------------------------------------- /DemosWithoutInstall/VirtualFileStream/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/VirtualFileStream/readme.txt -------------------------------------------------------------------------------- /DemosWithoutInstall/WM_DROPFILES/DropFiles.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/WM_DROPFILES/DropFiles.dpr -------------------------------------------------------------------------------- /DemosWithoutInstall/WM_DROPFILES/DropFiles.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/WM_DROPFILES/DropFiles.dproj -------------------------------------------------------------------------------- /DemosWithoutInstall/WM_DROPFILES/DropFiles.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/WM_DROPFILES/DropFiles.res -------------------------------------------------------------------------------- /DemosWithoutInstall/WM_DROPFILES/DropFiles_Icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/WM_DROPFILES/DropFiles_Icon.ico -------------------------------------------------------------------------------- /DemosWithoutInstall/WM_DROPFILES/Main.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/WM_DROPFILES/Main.dfm -------------------------------------------------------------------------------- /DemosWithoutInstall/WM_DROPFILES/Main.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/DemosWithoutInstall/WM_DROPFILES/Main.pas -------------------------------------------------------------------------------- /DemosWithoutInstall/readme.txt: -------------------------------------------------------------------------------- 1 | This folder contains the examples. -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/LICENSE -------------------------------------------------------------------------------- /Library/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Library/readme.txt -------------------------------------------------------------------------------- /Logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Logo.jpg -------------------------------------------------------------------------------- /Packages/DragDropD2006.dpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Packages/DragDropD2006.dpk -------------------------------------------------------------------------------- /Packages/DragDropD2007.dpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Packages/DragDropD2007.dpk -------------------------------------------------------------------------------- /Packages/DragDropD2009.dpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Packages/DragDropD2009.dpk -------------------------------------------------------------------------------- /Packages/DragDropD2010.dpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Packages/DragDropD2010.dpk -------------------------------------------------------------------------------- /Packages/DragDropD2010.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Packages/DragDropD2010.dproj -------------------------------------------------------------------------------- /Packages/DragDropD2010.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Packages/DragDropD2010.res -------------------------------------------------------------------------------- /Packages/DragDropD2011.dpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Packages/DragDropD2011.dpk -------------------------------------------------------------------------------- /Packages/DragDropD2011.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Packages/DragDropD2011.dproj -------------------------------------------------------------------------------- /Packages/DragDropD2011.rc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Packages/DragDropD5.dpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Packages/DragDropD5.dpk -------------------------------------------------------------------------------- /Packages/DragDropD6.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Packages/DragDropD6.cfg -------------------------------------------------------------------------------- /Packages/DragDropD6.dpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Packages/DragDropD6.dpk -------------------------------------------------------------------------------- /Packages/DragDropD6.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Packages/DragDropD6.res -------------------------------------------------------------------------------- /Packages/DragDropD7.dpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Packages/DragDropD7.dpk -------------------------------------------------------------------------------- /Packages/DragDropDR101B.dpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Packages/DragDropDR101B.dpk -------------------------------------------------------------------------------- /Packages/DragDropDR101B.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Packages/DragDropDR101B.dproj -------------------------------------------------------------------------------- /Packages/DragDropDR101B.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Packages/DragDropDR101B.res -------------------------------------------------------------------------------- /Packages/DragDropDR101BGroup.groupproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Packages/DragDropDR101BGroup.groupproj -------------------------------------------------------------------------------- /Packages/DragDropDR102T.dpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Packages/DragDropDR102T.dpk -------------------------------------------------------------------------------- /Packages/DragDropDR102T.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Packages/DragDropDR102T.dproj -------------------------------------------------------------------------------- /Packages/DragDropDR102TGroup.groupproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Packages/DragDropDR102TGroup.groupproj -------------------------------------------------------------------------------- /Packages/DragDropDR103R.dpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Packages/DragDropDR103R.dpk -------------------------------------------------------------------------------- /Packages/DragDropDR103R.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Packages/DragDropDR103R.dproj -------------------------------------------------------------------------------- /Packages/DragDropDR103R.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Packages/DragDropDR103R.res -------------------------------------------------------------------------------- /Packages/DragDropDR103RGroup.groupproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Packages/DragDropDR103RGroup.groupproj -------------------------------------------------------------------------------- /Packages/DragDropDR104R.dpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Packages/DragDropDR104R.dpk -------------------------------------------------------------------------------- /Packages/DragDropDR104R.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Packages/DragDropDR104R.dproj -------------------------------------------------------------------------------- /Packages/DragDropDR104R.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Packages/DragDropDR104R.res -------------------------------------------------------------------------------- /Packages/DragDropDR104RGroup.groupproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Packages/DragDropDR104RGroup.groupproj -------------------------------------------------------------------------------- /Packages/DragDropDR10S.dpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Packages/DragDropDR10S.dpk -------------------------------------------------------------------------------- /Packages/DragDropDR10S.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Packages/DragDropDR10S.dproj -------------------------------------------------------------------------------- /Packages/DragDropDR10S.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Packages/DragDropDR10S.res -------------------------------------------------------------------------------- /Packages/DragDropDR10SGroup.groupproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Packages/DragDropDR10SGroup.groupproj -------------------------------------------------------------------------------- /Packages/DragDropDR11A.dpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Packages/DragDropDR11A.dpk -------------------------------------------------------------------------------- /Packages/DragDropDR11A.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Packages/DragDropDR11A.dproj -------------------------------------------------------------------------------- /Packages/DragDropDR11A.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Packages/DragDropDR11A.res -------------------------------------------------------------------------------- /Packages/DragDropDR11AGroup.groupproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Packages/DragDropDR11AGroup.groupproj -------------------------------------------------------------------------------- /Packages/DragDropDR12.dpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Packages/DragDropDR12.dpk -------------------------------------------------------------------------------- /Packages/DragDropDR12.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Packages/DragDropDR12.dproj -------------------------------------------------------------------------------- /Packages/DragDropDR12.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Packages/DragDropDR12.res -------------------------------------------------------------------------------- /Packages/DragDropDR12Group.groupproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Packages/DragDropDR12Group.groupproj -------------------------------------------------------------------------------- /Packages/DragDropDR13.dpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Packages/DragDropDR13.dpk -------------------------------------------------------------------------------- /Packages/DragDropDR13.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Packages/DragDropDR13.dproj -------------------------------------------------------------------------------- /Packages/DragDropDR13.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Packages/DragDropDR13.res -------------------------------------------------------------------------------- /Packages/DragDropDR13Group.groupproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Packages/DragDropDR13Group.groupproj -------------------------------------------------------------------------------- /Packages/DragDropDXE2.dpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Packages/DragDropDXE2.dpk -------------------------------------------------------------------------------- /Packages/DragDropDXE2.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Packages/DragDropDXE2.dproj -------------------------------------------------------------------------------- /Packages/DragDropDXE2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Packages/DragDropDXE2.res -------------------------------------------------------------------------------- /Packages/DragDropDXE2Group.groupproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Packages/DragDropDXE2Group.groupproj -------------------------------------------------------------------------------- /Packages/DragDropDXE3.dpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Packages/DragDropDXE3.dpk -------------------------------------------------------------------------------- /Packages/DragDropDXE3.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Packages/DragDropDXE3.dproj -------------------------------------------------------------------------------- /Packages/DragDropDXE3.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Packages/DragDropDXE3.res -------------------------------------------------------------------------------- /Packages/DragDropDXE3Group.groupproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Packages/DragDropDXE3Group.groupproj -------------------------------------------------------------------------------- /Packages/DragDropDXE4.dpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Packages/DragDropDXE4.dpk -------------------------------------------------------------------------------- /Packages/DragDropDXE4.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Packages/DragDropDXE4.dproj -------------------------------------------------------------------------------- /Packages/DragDropDXE4.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Packages/DragDropDXE4.res -------------------------------------------------------------------------------- /Packages/DragDropDXE4Group.groupproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Packages/DragDropDXE4Group.groupproj -------------------------------------------------------------------------------- /Packages/DragDropDXE5.dpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Packages/DragDropDXE5.dpk -------------------------------------------------------------------------------- /Packages/DragDropDXE5.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Packages/DragDropDXE5.dproj -------------------------------------------------------------------------------- /Packages/DragDropDXE5.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Packages/DragDropDXE5.res -------------------------------------------------------------------------------- /Packages/DragDropDXE5Group.groupproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Packages/DragDropDXE5Group.groupproj -------------------------------------------------------------------------------- /Packages/DragDropDXE6.dpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Packages/DragDropDXE6.dpk -------------------------------------------------------------------------------- /Packages/DragDropDXE6.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Packages/DragDropDXE6.dproj -------------------------------------------------------------------------------- /Packages/DragDropDXE6.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Packages/DragDropDXE6.res -------------------------------------------------------------------------------- /Packages/DragDropDXE6Group.groupproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Packages/DragDropDXE6Group.groupproj -------------------------------------------------------------------------------- /Packages/DragDropDXE7.dpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Packages/DragDropDXE7.dpk -------------------------------------------------------------------------------- /Packages/DragDropDXE7.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Packages/DragDropDXE7.dproj -------------------------------------------------------------------------------- /Packages/DragDropDXE7.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Packages/DragDropDXE7.res -------------------------------------------------------------------------------- /Packages/DragDropDXE7Group.groupproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Packages/DragDropDXE7Group.groupproj -------------------------------------------------------------------------------- /Packages/DragDropDXE8.dpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Packages/DragDropDXE8.dpk -------------------------------------------------------------------------------- /Packages/DragDropDXE8.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Packages/DragDropDXE8.dproj -------------------------------------------------------------------------------- /Packages/DragDropDXE8.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Packages/DragDropDXE8.res -------------------------------------------------------------------------------- /Packages/DragDropDXE8Group.groupproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Packages/DragDropDXE8Group.groupproj -------------------------------------------------------------------------------- /Packages/dclDragDropDR101B.dpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Packages/dclDragDropDR101B.dpk -------------------------------------------------------------------------------- /Packages/dclDragDropDR101B.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Packages/dclDragDropDR101B.dproj -------------------------------------------------------------------------------- /Packages/dclDragDropDR101B.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Packages/dclDragDropDR101B.res -------------------------------------------------------------------------------- /Packages/dclDragDropDR102T.dpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Packages/dclDragDropDR102T.dpk -------------------------------------------------------------------------------- /Packages/dclDragDropDR102T.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Packages/dclDragDropDR102T.dproj -------------------------------------------------------------------------------- /Packages/dclDragDropDR103R.dpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Packages/dclDragDropDR103R.dpk -------------------------------------------------------------------------------- /Packages/dclDragDropDR103R.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Packages/dclDragDropDR103R.dproj -------------------------------------------------------------------------------- /Packages/dclDragDropDR103R.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Packages/dclDragDropDR103R.res -------------------------------------------------------------------------------- /Packages/dclDragDropDR104R.dpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Packages/dclDragDropDR104R.dpk -------------------------------------------------------------------------------- /Packages/dclDragDropDR104R.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Packages/dclDragDropDR104R.dproj -------------------------------------------------------------------------------- /Packages/dclDragDropDR104R.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Packages/dclDragDropDR104R.res -------------------------------------------------------------------------------- /Packages/dclDragDropDR10S.dpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Packages/dclDragDropDR10S.dpk -------------------------------------------------------------------------------- /Packages/dclDragDropDR10S.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Packages/dclDragDropDR10S.dproj -------------------------------------------------------------------------------- /Packages/dclDragDropDR10S.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Packages/dclDragDropDR10S.res -------------------------------------------------------------------------------- /Packages/dclDragDropDR11A.dpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Packages/dclDragDropDR11A.dpk -------------------------------------------------------------------------------- /Packages/dclDragDropDR11A.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Packages/dclDragDropDR11A.dproj -------------------------------------------------------------------------------- /Packages/dclDragDropDR11A.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Packages/dclDragDropDR11A.res -------------------------------------------------------------------------------- /Packages/dclDragDropDR12.dpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Packages/dclDragDropDR12.dpk -------------------------------------------------------------------------------- /Packages/dclDragDropDR12.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Packages/dclDragDropDR12.dproj -------------------------------------------------------------------------------- /Packages/dclDragDropDR12.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Packages/dclDragDropDR12.res -------------------------------------------------------------------------------- /Packages/dclDragDropDR13.dpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Packages/dclDragDropDR13.dpk -------------------------------------------------------------------------------- /Packages/dclDragDropDR13.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Packages/dclDragDropDR13.dproj -------------------------------------------------------------------------------- /Packages/dclDragDropDR13.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Packages/dclDragDropDR13.res -------------------------------------------------------------------------------- /Packages/dclDragDropDXE2.dpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Packages/dclDragDropDXE2.dpk -------------------------------------------------------------------------------- /Packages/dclDragDropDXE2.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Packages/dclDragDropDXE2.dproj -------------------------------------------------------------------------------- /Packages/dclDragDropDXE2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Packages/dclDragDropDXE2.res -------------------------------------------------------------------------------- /Packages/dclDragDropDXE3.dpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Packages/dclDragDropDXE3.dpk -------------------------------------------------------------------------------- /Packages/dclDragDropDXE3.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Packages/dclDragDropDXE3.dproj -------------------------------------------------------------------------------- /Packages/dclDragDropDXE3.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Packages/dclDragDropDXE3.res -------------------------------------------------------------------------------- /Packages/dclDragDropDXE4.dpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Packages/dclDragDropDXE4.dpk -------------------------------------------------------------------------------- /Packages/dclDragDropDXE4.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Packages/dclDragDropDXE4.dproj -------------------------------------------------------------------------------- /Packages/dclDragDropDXE4.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Packages/dclDragDropDXE4.res -------------------------------------------------------------------------------- /Packages/dclDragDropDXE5.dpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Packages/dclDragDropDXE5.dpk -------------------------------------------------------------------------------- /Packages/dclDragDropDXE5.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Packages/dclDragDropDXE5.dproj -------------------------------------------------------------------------------- /Packages/dclDragDropDXE5.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Packages/dclDragDropDXE5.res -------------------------------------------------------------------------------- /Packages/dclDragDropDXE6.dpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Packages/dclDragDropDXE6.dpk -------------------------------------------------------------------------------- /Packages/dclDragDropDXE6.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Packages/dclDragDropDXE6.dproj -------------------------------------------------------------------------------- /Packages/dclDragDropDXE6.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Packages/dclDragDropDXE6.res -------------------------------------------------------------------------------- /Packages/dclDragDropDXE7.dpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Packages/dclDragDropDXE7.dpk -------------------------------------------------------------------------------- /Packages/dclDragDropDXE7.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Packages/dclDragDropDXE7.dproj -------------------------------------------------------------------------------- /Packages/dclDragDropDXE7.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Packages/dclDragDropDXE7.res -------------------------------------------------------------------------------- /Packages/dclDragDropDXE8.dpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Packages/dclDragDropDXE8.dpk -------------------------------------------------------------------------------- /Packages/dclDragDropDXE8.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Packages/dclDragDropDXE8.dproj -------------------------------------------------------------------------------- /Packages/dclDragDropDXE8.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Packages/dclDragDropDXE8.res -------------------------------------------------------------------------------- /Packages/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Packages/readme.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/README.md -------------------------------------------------------------------------------- /Source/DragDrop.dcr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Source/DragDrop.dcr -------------------------------------------------------------------------------- /Source/DragDrop.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Source/DragDrop.inc -------------------------------------------------------------------------------- /Source/DragDrop.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Source/DragDrop.pas -------------------------------------------------------------------------------- /Source/DragDropComObj.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Source/DragDropComObj.pas -------------------------------------------------------------------------------- /Source/DragDropContext.dcr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Source/DragDropContext.dcr -------------------------------------------------------------------------------- /Source/DragDropContext.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Source/DragDropContext.pas -------------------------------------------------------------------------------- /Source/DragDropDesign.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Source/DragDropDesign.pas -------------------------------------------------------------------------------- /Source/DragDropFile.dcr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Source/DragDropFile.dcr -------------------------------------------------------------------------------- /Source/DragDropFile.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Source/DragDropFile.pas -------------------------------------------------------------------------------- /Source/DragDropFormats.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Source/DragDropFormats.pas -------------------------------------------------------------------------------- /Source/DragDropGraphics.dcr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Source/DragDropGraphics.dcr -------------------------------------------------------------------------------- /Source/DragDropGraphics.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Source/DragDropGraphics.pas -------------------------------------------------------------------------------- /Source/DragDropHandler.dcr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Source/DragDropHandler.dcr -------------------------------------------------------------------------------- /Source/DragDropHandler.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Source/DragDropHandler.pas -------------------------------------------------------------------------------- /Source/DragDropInternet.dcr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Source/DragDropInternet.dcr -------------------------------------------------------------------------------- /Source/DragDropInternet.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Source/DragDropInternet.pas -------------------------------------------------------------------------------- /Source/DragDropPIDL.dcr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Source/DragDropPIDL.dcr -------------------------------------------------------------------------------- /Source/DragDropPIDL.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Source/DragDropPIDL.pas -------------------------------------------------------------------------------- /Source/DragDropText.dcr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Source/DragDropText.dcr -------------------------------------------------------------------------------- /Source/DragDropText.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Source/DragDropText.pas -------------------------------------------------------------------------------- /Source/DropComboTarget.dcr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Source/DropComboTarget.dcr -------------------------------------------------------------------------------- /Source/DropComboTarget.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Source/DropComboTarget.pas -------------------------------------------------------------------------------- /Source/DropHandler.dcr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Source/DropHandler.dcr -------------------------------------------------------------------------------- /Source/DropHandler.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Source/DropHandler.pas -------------------------------------------------------------------------------- /Source/DropSource.dcr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Source/DropSource.dcr -------------------------------------------------------------------------------- /Source/DropSource.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Source/DropSource.pas -------------------------------------------------------------------------------- /Source/DropTarget.dcr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Source/DropTarget.dcr -------------------------------------------------------------------------------- /Source/DropTarget.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Source/DropTarget.pas -------------------------------------------------------------------------------- /Source/DropTargetCur.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/Source/DropTargetCur.res -------------------------------------------------------------------------------- /Source/readme.txt: -------------------------------------------------------------------------------- 1 | This folder contains the library source files. 2 | -------------------------------------------------------------------------------- /clean.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landrix/The-Drag-and-Drop-Component-Suite-for-Delphi/HEAD/clean.bat --------------------------------------------------------------------------------