├── .gitignore ├── AfterBuild.bat ├── CompInstall.ini ├── DzListHeader.dcr ├── DzListHeader.dpk ├── DzListHeader.dproj ├── DzListHeader.pas ├── DzListHeader.res ├── DzListHeaderCustom.dfm ├── DzListHeaderCustom.pas ├── Example with Tabbed Text ├── Tabbed_Example.dpr ├── Tabbed_Example.dproj ├── Tabbed_Example.res ├── UFrmTabbedExample.dfm └── UFrmTabbedExample.pas ├── Example ├── ListHeader_Example.dpr ├── ListHeader_Example.dproj ├── ListHeader_Example.res ├── UFrmExample.dfm └── UFrmExample.pas ├── LICENSE.md ├── images ├── custom_dlg.png ├── preview.gif └── print.png └── readme.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digao-dalpiaz/DzListHeader/HEAD/.gitignore -------------------------------------------------------------------------------- /AfterBuild.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digao-dalpiaz/DzListHeader/HEAD/AfterBuild.bat -------------------------------------------------------------------------------- /CompInstall.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digao-dalpiaz/DzListHeader/HEAD/CompInstall.ini -------------------------------------------------------------------------------- /DzListHeader.dcr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digao-dalpiaz/DzListHeader/HEAD/DzListHeader.dcr -------------------------------------------------------------------------------- /DzListHeader.dpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digao-dalpiaz/DzListHeader/HEAD/DzListHeader.dpk -------------------------------------------------------------------------------- /DzListHeader.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digao-dalpiaz/DzListHeader/HEAD/DzListHeader.dproj -------------------------------------------------------------------------------- /DzListHeader.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digao-dalpiaz/DzListHeader/HEAD/DzListHeader.pas -------------------------------------------------------------------------------- /DzListHeader.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digao-dalpiaz/DzListHeader/HEAD/DzListHeader.res -------------------------------------------------------------------------------- /DzListHeaderCustom.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digao-dalpiaz/DzListHeader/HEAD/DzListHeaderCustom.dfm -------------------------------------------------------------------------------- /DzListHeaderCustom.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digao-dalpiaz/DzListHeader/HEAD/DzListHeaderCustom.pas -------------------------------------------------------------------------------- /Example with Tabbed Text/Tabbed_Example.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digao-dalpiaz/DzListHeader/HEAD/Example with Tabbed Text/Tabbed_Example.dpr -------------------------------------------------------------------------------- /Example with Tabbed Text/Tabbed_Example.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digao-dalpiaz/DzListHeader/HEAD/Example with Tabbed Text/Tabbed_Example.dproj -------------------------------------------------------------------------------- /Example with Tabbed Text/Tabbed_Example.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digao-dalpiaz/DzListHeader/HEAD/Example with Tabbed Text/Tabbed_Example.res -------------------------------------------------------------------------------- /Example with Tabbed Text/UFrmTabbedExample.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digao-dalpiaz/DzListHeader/HEAD/Example with Tabbed Text/UFrmTabbedExample.dfm -------------------------------------------------------------------------------- /Example with Tabbed Text/UFrmTabbedExample.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digao-dalpiaz/DzListHeader/HEAD/Example with Tabbed Text/UFrmTabbedExample.pas -------------------------------------------------------------------------------- /Example/ListHeader_Example.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digao-dalpiaz/DzListHeader/HEAD/Example/ListHeader_Example.dpr -------------------------------------------------------------------------------- /Example/ListHeader_Example.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digao-dalpiaz/DzListHeader/HEAD/Example/ListHeader_Example.dproj -------------------------------------------------------------------------------- /Example/ListHeader_Example.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digao-dalpiaz/DzListHeader/HEAD/Example/ListHeader_Example.res -------------------------------------------------------------------------------- /Example/UFrmExample.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digao-dalpiaz/DzListHeader/HEAD/Example/UFrmExample.dfm -------------------------------------------------------------------------------- /Example/UFrmExample.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digao-dalpiaz/DzListHeader/HEAD/Example/UFrmExample.pas -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digao-dalpiaz/DzListHeader/HEAD/LICENSE.md -------------------------------------------------------------------------------- /images/custom_dlg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digao-dalpiaz/DzListHeader/HEAD/images/custom_dlg.png -------------------------------------------------------------------------------- /images/preview.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digao-dalpiaz/DzListHeader/HEAD/images/preview.gif -------------------------------------------------------------------------------- /images/print.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digao-dalpiaz/DzListHeader/HEAD/images/print.png -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digao-dalpiaz/DzListHeader/HEAD/readme.md --------------------------------------------------------------------------------