├── .gitignore ├── BatterflyTray ├── .gitignore ├── AppIcon.rc ├── AppIcon.res ├── Batterfly.res ├── Batterfly.skincfg ├── BatterflyTray.dpr ├── BatterflyTray.dproj ├── BatterflyTray.res ├── BatterflyTray.skincfg ├── LICENSE ├── README.md ├── ResAni │ ├── batterfly16.png │ ├── batterfly16_1.png │ ├── batterfly16_2.png │ ├── batterfly16_3.png │ ├── batterfly16_4.png │ ├── batterfly16_5.png │ ├── batterfly16_6.png │ ├── batterfly16_7.png │ └── batterfly16_8.png ├── ResPNG │ ├── Batterfly32.png │ ├── Batterfly64.png │ └── batterfly16.png ├── View │ ├── Template.dfm │ ├── Template.pas │ ├── View.Home.dfm │ ├── View.Home.pas │ ├── View.Main.dfm │ └── View.Main.pas ├── batterflyApp.ico └── batterflyTray.png ├── CheeKtool ├── .gitignore ├── BPLs │ ├── Bpl1.dpk │ ├── Bpl1.dproj │ ├── README │ └── Unit │ │ ├── README │ │ └── Unit1.pas ├── Bin │ ├── BPLUser │ │ └── README │ ├── CheeKtool.tmp │ │ └── README │ ├── DLLUser │ │ └── README │ ├── README │ └── UserLog.LOG ├── CheecKtool.dpr ├── CheecKtool.res ├── CheeckTool.dproj ├── CheeckTool_Icon.ico ├── DLLs │ ├── DLL1.dpr │ ├── DLL1.dproj │ └── README ├── Form │ ├── CheecKtool.png │ ├── README │ ├── untSplash.dfm │ └── untSplash.pas ├── LOGf │ ├── README │ └── UserLog.LOG ├── MainTools.dfm ├── MainTools.pas ├── README.md ├── TMPf │ ├── README │ ├── tmp1.txt │ ├── tmp2.txt │ └── tmp3.txt └── Unit │ ├── README │ └── ToolLib.pas ├── CheecKfont ├── .gitignore ├── CheckFont_Icon.ico ├── CheecKfont.png ├── CheeckFont.dpr ├── CheeckFont.dproj ├── CheeckFont.res ├── README.md ├── View │ ├── Main.dfm │ └── Main.pas └── unit │ └── ToolLib.pas ├── CompUPX ├── .gitignore ├── CompUpx.dpr ├── CompUpx.dproj ├── CompUpx.png ├── CompUpx.res ├── CompUpx_Icon.ico ├── LICENSE ├── ModelSupport_CompUpx │ ├── CompUpx │ │ ├── default.txaPackage │ │ └── default.txvpck │ ├── default.txaPackage │ ├── default.txvpck │ ├── uAbout │ │ ├── default.txaPackage │ │ └── default.txvpck │ ├── uFileChecker │ │ ├── default.txaPackage │ │ └── default.txvpck │ ├── uFileUtils │ │ ├── default.txaPackage │ │ └── default.txvpck │ ├── uMain │ │ ├── default.txaPackage │ │ └── default.txvpck │ ├── uOption │ │ ├── default.txaPackage │ │ └── default.txvpck │ └── uProgress │ │ ├── default.txaPackage │ │ └── default.txvpck ├── README.md ├── Unit │ ├── uFileChecker.pas │ └── uFileUtils.pas ├── View │ ├── uAbout.dfm │ ├── uAbout.pas │ ├── uMain.dfm │ ├── uMain.pas │ ├── uOption.dfm │ ├── uOption.pas │ ├── uProgress.dfm │ └── uProgress.pas └── bin │ └── upx.000 ├── CountDown ├── .gitignore ├── Bin │ ├── Bmp │ │ └── timer.bmp │ └── Wav │ │ ├── CloseClock.wav │ │ ├── IniClock.wav │ │ ├── OpenClock.wav │ │ └── TaktClock.wav ├── CountDouwnGrp.groupproj ├── CountDown.png ├── CountDownApp │ ├── CountDown.dpr │ ├── CountDown.dproj │ ├── CountDown.res │ ├── CountDown.skincfg │ ├── CountDown_Icon.ico │ ├── Res │ │ ├── Sound.rc │ │ └── Takt.wav │ ├── Unit │ │ ├── UCountDownTimer1.pas │ │ ├── UCountDownTimer2.pas │ │ ├── UCountDownTimer3.pas │ │ └── UCountDownTimer4.pas │ └── View │ │ ├── Main.dfm │ │ ├── Main.pas │ │ ├── uAbout.dfm │ │ └── uAbout.pas ├── CountDownDLL │ ├── CountDownDLL.dpr │ ├── CountDownDLL.dproj │ ├── CountDownDLL.res │ ├── CountDownDLL.skincfg │ ├── Unit │ │ └── CountDownDLL_Lib.pas │ └── View │ │ ├── uCountDown.dfm │ │ ├── uCountDown.pas │ │ ├── uOption.dfm │ │ └── uOption.pas ├── LICENSE └── README.md ├── CreEvent ├── .gitignore ├── CreEvent.dpr ├── CreEvent.dproj ├── CreEvent.res ├── CreEvent_.png ├── CreateEvent_Icon.ico ├── Form │ ├── Main.dfm │ └── Main.pas ├── Main.dfm ├── Main.pas ├── Module │ ├── Module.dfm │ └── Module.pas ├── Prototype.dof ├── README.md ├── Unit │ └── uEvent.pas └── uEvent.pas ├── Delphi-Collection.jpg ├── LICENSE ├── LoadUrlGif ├── .gitignore ├── LoadUrlGif.dpr ├── LoadUrlGif.dproj ├── LoadUrlGif.res ├── LoadUrlGif_.png ├── LoadUrlGif_Icon.ico ├── Main.dfm ├── Main.pas ├── README.md └── View │ ├── About.dfm │ ├── About.pas │ ├── README │ ├── Splash.dfm │ └── Splash.pas ├── MeteoChart ├── .gitignore ├── LICENSE ├── MeteoChart.dpr ├── MeteoChart.dproj ├── MeteoChart.png ├── MeteoChart.res ├── MeteoChart_Icon.ico ├── README.md ├── Unit │ ├── UInterfaces.pas │ ├── UMeteo.pas │ └── UObservable.pas ├── View │ ├── About.dfm │ ├── About.pas │ ├── Chart.dfm │ ├── Chart.pas │ ├── Logging.dfm │ ├── Logging.pas │ ├── Main.dfm │ └── Main.pas └── readme.txt ├── MyAlbumDLL ├── .gitignore ├── DLL │ ├── DLLImages.dpr │ ├── DLLImages.dproj │ ├── DLLImages.res │ ├── Resource │ │ ├── 01.jpg │ │ ├── 02.jpg │ │ ├── 03.jpg │ │ └── ResÍmage.rc │ └── ResÍmage.res ├── GrpMyAlbumDLL.groupproj ├── LICENSE ├── Mon projet │ ├── Main.dfm │ ├── Main.pas │ ├── MyAlbum.res │ ├── MyAlbumDLL.dpr │ ├── MyAlbumDLL.dproj │ ├── MyAlbumDLL.res │ ├── MyAlbum_Icon.ico │ ├── ResMusic.RES │ ├── uAbout.dfm │ └── uAbout.pas ├── MyAlbumDLL.png └── README.md ├── MyStringGrid ├── About │ ├── About.dfm │ └── About.pas ├── Api │ └── uIConnection.pas ├── BIN │ └── Data │ │ └── MyTest.db ├── Demo1.res ├── Implimentation │ └── uTConnection.pas ├── Main.dfm ├── Main.pas ├── Module │ ├── Module.dfm │ ├── Module.pas │ └── Module.pas.cbk ├── MyStringGrid.dpr ├── MyStringGrid.dproj ├── MyStringGrid.png ├── MyStringGrid.res ├── MyStringGrid_Icon.ico ├── Project1.res ├── README.md ├── SetupPrinter.dfm ├── SetupPrinter.pas ├── uSettingPrint.pas └── uStringGrid.pas ├── NOTyMSG ├── .gitignore ├── DEBUG │ ├── Libary │ │ ├── html │ │ │ └── main.htm │ │ ├── png │ │ │ └── test.png │ │ └── txt │ │ │ └── Notify.txt │ └── main.htm ├── NOTyMSG │ ├── MainRecieve.dfm │ ├── MainRecieve.pas │ ├── NOTyMSG.dpr │ ├── NOTyMSG.dproj │ ├── NOTyMSG.ico │ ├── NOTyMSG.res │ ├── NOTyMSG.skincfg │ └── Unit │ │ ├── UresApp.pas │ │ └── uScript.pas ├── NOTyMSG_.png ├── NOTyMSGgrp.groupproj ├── NOTySEND │ ├── MainSender.dfm │ ├── MainSender.pas │ ├── NOTySEND.dpr │ ├── NOTySEND.dproj │ ├── NOTySEND.ico │ ├── NOTySEND.res │ └── NOTySEND.skincfg ├── README.md └── clear.bat ├── README.md ├── RegisterKey ├── .gitignore ├── README.md ├── RegisterKey.dpr ├── RegisterKey.dproj ├── RegisterKey.png ├── RegisterKey_Icon.ico ├── Unit │ └── ToolLib.pas └── View │ ├── Main.dfm │ └── Main.pas ├── SoftwareLicense ├── About │ ├── About.dfm │ └── About.pas ├── Bin │ └── Doc │ │ ├── License.htm │ │ └── SoftwareLicense.html ├── Img │ └── VMSoftwareLicense.png ├── License.dfm ├── License.pas ├── Main.dfm ├── Main.pas ├── README.md ├── SoftwareLicense.dpr ├── SoftwareLicense.dproj ├── SoftwareLicense.png ├── SoftwareLicense.res ├── SoftwareLicense_Icon.ico ├── uExScrollBox.pas └── uToolLib.pas ├── StudNote ├── .gitignore ├── README.md ├── StudNote.dpr ├── StudNote.dproj ├── StudNote.res ├── StudNote_.png ├── StudNote_Icon.ico ├── Unit │ └── README.txt └── View │ ├── AboutSN.dfm │ ├── AboutSN.pas │ ├── ChartStudent.dfm │ ├── ChartStudent.pas │ ├── FormMain.dfm │ └── FormMain.pas ├── TColorCSV ├── Img │ └── MainView.png ├── LICENSE ├── README.md ├── TColorCSV.png └── src │ ├── .gitignore │ ├── About │ ├── About.dfm │ └── About.pas │ ├── BIN │ ├── Libary │ │ └── vsf │ │ │ └── Silver.vsf │ ├── Student.csv │ ├── TColorCSV.iss │ ├── gpl.txt │ ├── license.txt │ └── test │ ├── CSVUtils.pas │ ├── GridView.dfm │ ├── GridView.pas │ ├── Img_Res │ ├── MMP_128.png │ ├── MMP_128_Black.png │ ├── MMP_256_256.bmp │ ├── MMP_32.png │ ├── MMP_64.png │ ├── MMP_64_64.bmp │ ├── MMP_64_64.png │ ├── TColorCSV.ico │ ├── TColorCSV.png │ ├── TColorCSV_64_64.bmp │ ├── mmp_256.png │ ├── rainbow-star.bmp │ └── rainbow-star.png │ ├── MainView.png │ ├── ReadSaveCSV.res │ ├── ReadSaveCSV.skincfg │ ├── TColorCSV.dpr │ ├── TColorCSV.dproj │ ├── TColorCSV.res │ ├── TColorCSV.skincfg │ ├── TColorCSV_Icon.ico │ ├── TaColorCSV.skincfg │ ├── TabCSV.res │ ├── TabCSV.skincfg │ ├── VirtualForm.pas │ └── csvparser.pas ├── TraitExcept ├── .gitignore ├── DEBUG │ └── Exception │ │ ├── Exception_2019-04-20.txt │ │ └── Exception_2019-08-19.txt ├── Exception.res ├── Exception.skincfg ├── README.md ├── TraitExcept.dpr ├── TraitExcept.dproj ├── TraitExcept.png ├── TraitExcept.res ├── TraitException.res ├── TraitException.skincfg ├── TraitException_Icon.ico ├── Unit │ └── uSignal.pas └── View │ ├── UBase.dfm │ ├── UBase.pas │ ├── UMain.dfm │ ├── UMain.pas │ ├── UProgExcep.dfm │ ├── UProgExcep.pas │ ├── uAbout.dfm │ └── uAbout.pas └── XMLDLL ├── .gitignore ├── LICENSE ├── README.md ├── XMLDLL.png ├── XMLDLL_Grp.groupproj ├── bin ├── Plugins │ └── DLLHome │ │ └── Config.xml ├── Skins │ └── MainSkin │ │ ├── Logo │ │ └── About.png │ │ └── Screens │ │ ├── Main_Back.png │ │ └── Main_Front.png └── System │ └── settings.xml └── src ├── MainApplication ├── About.dfm ├── About.pas ├── ButtonEventList.pas ├── Clean.bat ├── Configuration.pas ├── MainSkinRect.pas ├── ResImages.rc ├── ResImages.res ├── SkinBase.pas ├── Skins.pas ├── Skins │ └── MainSkin │ │ ├── Logo │ │ └── About.png │ │ ├── Screens │ │ ├── Main_Back.png │ │ └── Main_Front.png │ │ └── skin_.xml ├── UnitRes │ ├── ResImg.pas │ └── ResXml.pas ├── UtilsFunc.pas ├── XMLDLL.dpr ├── XMLDLL.dproj ├── XMLDLL.res ├── XMLDLL.skincfg ├── XMLDLL_Icon.ico ├── XmlFileHome.pas ├── XmlFileSettings.pas ├── main.ddp ├── main.dfm ├── main.pas └── pluginlist.pas └── Plugins └── Home ├── Home.dpr ├── Home.dproj ├── Home.res ├── MainHome.dfm └── MainHome.pas /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/.gitignore -------------------------------------------------------------------------------- /BatterflyTray/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/BatterflyTray/.gitignore -------------------------------------------------------------------------------- /BatterflyTray/AppIcon.rc: -------------------------------------------------------------------------------- 1 | MainIcon ICON "BatterflyApp.ico" 2 | -------------------------------------------------------------------------------- /BatterflyTray/AppIcon.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/BatterflyTray/AppIcon.res -------------------------------------------------------------------------------- /BatterflyTray/Batterfly.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/BatterflyTray/Batterfly.res -------------------------------------------------------------------------------- /BatterflyTray/Batterfly.skincfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/BatterflyTray/Batterfly.skincfg -------------------------------------------------------------------------------- /BatterflyTray/BatterflyTray.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/BatterflyTray/BatterflyTray.dpr -------------------------------------------------------------------------------- /BatterflyTray/BatterflyTray.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/BatterflyTray/BatterflyTray.dproj -------------------------------------------------------------------------------- /BatterflyTray/BatterflyTray.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/BatterflyTray/BatterflyTray.res -------------------------------------------------------------------------------- /BatterflyTray/BatterflyTray.skincfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/BatterflyTray/BatterflyTray.skincfg -------------------------------------------------------------------------------- /BatterflyTray/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/BatterflyTray/LICENSE -------------------------------------------------------------------------------- /BatterflyTray/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/BatterflyTray/README.md -------------------------------------------------------------------------------- /BatterflyTray/ResAni/batterfly16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/BatterflyTray/ResAni/batterfly16.png -------------------------------------------------------------------------------- /BatterflyTray/ResAni/batterfly16_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/BatterflyTray/ResAni/batterfly16_1.png -------------------------------------------------------------------------------- /BatterflyTray/ResAni/batterfly16_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/BatterflyTray/ResAni/batterfly16_2.png -------------------------------------------------------------------------------- /BatterflyTray/ResAni/batterfly16_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/BatterflyTray/ResAni/batterfly16_3.png -------------------------------------------------------------------------------- /BatterflyTray/ResAni/batterfly16_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/BatterflyTray/ResAni/batterfly16_4.png -------------------------------------------------------------------------------- /BatterflyTray/ResAni/batterfly16_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/BatterflyTray/ResAni/batterfly16_5.png -------------------------------------------------------------------------------- /BatterflyTray/ResAni/batterfly16_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/BatterflyTray/ResAni/batterfly16_6.png -------------------------------------------------------------------------------- /BatterflyTray/ResAni/batterfly16_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/BatterflyTray/ResAni/batterfly16_7.png -------------------------------------------------------------------------------- /BatterflyTray/ResAni/batterfly16_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/BatterflyTray/ResAni/batterfly16_8.png -------------------------------------------------------------------------------- /BatterflyTray/ResPNG/Batterfly32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/BatterflyTray/ResPNG/Batterfly32.png -------------------------------------------------------------------------------- /BatterflyTray/ResPNG/Batterfly64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/BatterflyTray/ResPNG/Batterfly64.png -------------------------------------------------------------------------------- /BatterflyTray/ResPNG/batterfly16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/BatterflyTray/ResPNG/batterfly16.png -------------------------------------------------------------------------------- /BatterflyTray/View/Template.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/BatterflyTray/View/Template.dfm -------------------------------------------------------------------------------- /BatterflyTray/View/Template.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/BatterflyTray/View/Template.pas -------------------------------------------------------------------------------- /BatterflyTray/View/View.Home.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/BatterflyTray/View/View.Home.dfm -------------------------------------------------------------------------------- /BatterflyTray/View/View.Home.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/BatterflyTray/View/View.Home.pas -------------------------------------------------------------------------------- /BatterflyTray/View/View.Main.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/BatterflyTray/View/View.Main.dfm -------------------------------------------------------------------------------- /BatterflyTray/View/View.Main.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/BatterflyTray/View/View.Main.pas -------------------------------------------------------------------------------- /BatterflyTray/batterflyApp.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/BatterflyTray/batterflyApp.ico -------------------------------------------------------------------------------- /BatterflyTray/batterflyTray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/BatterflyTray/batterflyTray.png -------------------------------------------------------------------------------- /CheeKtool/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/CheeKtool/.gitignore -------------------------------------------------------------------------------- /CheeKtool/BPLs/Bpl1.dpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/CheeKtool/BPLs/Bpl1.dpk -------------------------------------------------------------------------------- /CheeKtool/BPLs/Bpl1.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/CheeKtool/BPLs/Bpl1.dproj -------------------------------------------------------------------------------- /CheeKtool/BPLs/README: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /CheeKtool/BPLs/Unit/README: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /CheeKtool/BPLs/Unit/Unit1.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/CheeKtool/BPLs/Unit/Unit1.pas -------------------------------------------------------------------------------- /CheeKtool/Bin/BPLUser/README: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /CheeKtool/Bin/CheeKtool.tmp/README: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /CheeKtool/Bin/DLLUser/README: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /CheeKtool/Bin/README: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /CheeKtool/Bin/UserLog.LOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/CheeKtool/Bin/UserLog.LOG -------------------------------------------------------------------------------- /CheeKtool/CheecKtool.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/CheeKtool/CheecKtool.dpr -------------------------------------------------------------------------------- /CheeKtool/CheecKtool.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/CheeKtool/CheecKtool.res -------------------------------------------------------------------------------- /CheeKtool/CheeckTool.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/CheeKtool/CheeckTool.dproj -------------------------------------------------------------------------------- /CheeKtool/CheeckTool_Icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/CheeKtool/CheeckTool_Icon.ico -------------------------------------------------------------------------------- /CheeKtool/DLLs/DLL1.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/CheeKtool/DLLs/DLL1.dpr -------------------------------------------------------------------------------- /CheeKtool/DLLs/DLL1.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/CheeKtool/DLLs/DLL1.dproj -------------------------------------------------------------------------------- /CheeKtool/DLLs/README: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /CheeKtool/Form/CheecKtool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/CheeKtool/Form/CheecKtool.png -------------------------------------------------------------------------------- /CheeKtool/Form/README: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /CheeKtool/Form/untSplash.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/CheeKtool/Form/untSplash.dfm -------------------------------------------------------------------------------- /CheeKtool/Form/untSplash.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/CheeKtool/Form/untSplash.pas -------------------------------------------------------------------------------- /CheeKtool/LOGf/README: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /CheeKtool/LOGf/UserLog.LOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/CheeKtool/LOGf/UserLog.LOG -------------------------------------------------------------------------------- /CheeKtool/MainTools.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/CheeKtool/MainTools.dfm -------------------------------------------------------------------------------- /CheeKtool/MainTools.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/CheeKtool/MainTools.pas -------------------------------------------------------------------------------- /CheeKtool/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/CheeKtool/README.md -------------------------------------------------------------------------------- /CheeKtool/TMPf/README: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /CheeKtool/TMPf/tmp1.txt: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /CheeKtool/TMPf/tmp2.txt: -------------------------------------------------------------------------------- 1 | 2 -------------------------------------------------------------------------------- /CheeKtool/TMPf/tmp3.txt: -------------------------------------------------------------------------------- 1 | 3 -------------------------------------------------------------------------------- /CheeKtool/Unit/README: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /CheeKtool/Unit/ToolLib.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/CheeKtool/Unit/ToolLib.pas -------------------------------------------------------------------------------- /CheecKfont/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/CheecKfont/.gitignore -------------------------------------------------------------------------------- /CheecKfont/CheckFont_Icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/CheecKfont/CheckFont_Icon.ico -------------------------------------------------------------------------------- /CheecKfont/CheecKfont.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/CheecKfont/CheecKfont.png -------------------------------------------------------------------------------- /CheecKfont/CheeckFont.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/CheecKfont/CheeckFont.dpr -------------------------------------------------------------------------------- /CheecKfont/CheeckFont.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/CheecKfont/CheeckFont.dproj -------------------------------------------------------------------------------- /CheecKfont/CheeckFont.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/CheecKfont/CheeckFont.res -------------------------------------------------------------------------------- /CheecKfont/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/CheecKfont/README.md -------------------------------------------------------------------------------- /CheecKfont/View/Main.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/CheecKfont/View/Main.dfm -------------------------------------------------------------------------------- /CheecKfont/View/Main.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/CheecKfont/View/Main.pas -------------------------------------------------------------------------------- /CheecKfont/unit/ToolLib.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/CheecKfont/unit/ToolLib.pas -------------------------------------------------------------------------------- /CompUPX/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/CompUPX/.gitignore -------------------------------------------------------------------------------- /CompUPX/CompUpx.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/CompUPX/CompUpx.dpr -------------------------------------------------------------------------------- /CompUPX/CompUpx.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/CompUPX/CompUpx.dproj -------------------------------------------------------------------------------- /CompUPX/CompUpx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/CompUPX/CompUpx.png -------------------------------------------------------------------------------- /CompUPX/CompUpx.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/CompUPX/CompUpx.res -------------------------------------------------------------------------------- /CompUPX/CompUpx_Icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/CompUPX/CompUpx_Icon.ico -------------------------------------------------------------------------------- /CompUPX/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/CompUPX/LICENSE -------------------------------------------------------------------------------- /CompUPX/ModelSupport_CompUpx/CompUpx/default.txaPackage: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CompUPX/ModelSupport_CompUpx/CompUpx/default.txvpck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/CompUPX/ModelSupport_CompUpx/CompUpx/default.txvpck -------------------------------------------------------------------------------- /CompUPX/ModelSupport_CompUpx/default.txaPackage: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CompUPX/ModelSupport_CompUpx/default.txvpck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/CompUPX/ModelSupport_CompUpx/default.txvpck -------------------------------------------------------------------------------- /CompUPX/ModelSupport_CompUpx/uAbout/default.txaPackage: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CompUPX/ModelSupport_CompUpx/uAbout/default.txvpck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/CompUPX/ModelSupport_CompUpx/uAbout/default.txvpck -------------------------------------------------------------------------------- /CompUPX/ModelSupport_CompUpx/uFileChecker/default.txaPackage: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CompUPX/ModelSupport_CompUpx/uFileChecker/default.txvpck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/CompUPX/ModelSupport_CompUpx/uFileChecker/default.txvpck -------------------------------------------------------------------------------- /CompUPX/ModelSupport_CompUpx/uFileUtils/default.txaPackage: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CompUPX/ModelSupport_CompUpx/uFileUtils/default.txvpck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/CompUPX/ModelSupport_CompUpx/uFileUtils/default.txvpck -------------------------------------------------------------------------------- /CompUPX/ModelSupport_CompUpx/uMain/default.txaPackage: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CompUPX/ModelSupport_CompUpx/uMain/default.txvpck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/CompUPX/ModelSupport_CompUpx/uMain/default.txvpck -------------------------------------------------------------------------------- /CompUPX/ModelSupport_CompUpx/uOption/default.txaPackage: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CompUPX/ModelSupport_CompUpx/uOption/default.txvpck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/CompUPX/ModelSupport_CompUpx/uOption/default.txvpck -------------------------------------------------------------------------------- /CompUPX/ModelSupport_CompUpx/uProgress/default.txaPackage: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CompUPX/ModelSupport_CompUpx/uProgress/default.txvpck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/CompUPX/ModelSupport_CompUpx/uProgress/default.txvpck -------------------------------------------------------------------------------- /CompUPX/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/CompUPX/README.md -------------------------------------------------------------------------------- /CompUPX/Unit/uFileChecker.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/CompUPX/Unit/uFileChecker.pas -------------------------------------------------------------------------------- /CompUPX/Unit/uFileUtils.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/CompUPX/Unit/uFileUtils.pas -------------------------------------------------------------------------------- /CompUPX/View/uAbout.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/CompUPX/View/uAbout.dfm -------------------------------------------------------------------------------- /CompUPX/View/uAbout.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/CompUPX/View/uAbout.pas -------------------------------------------------------------------------------- /CompUPX/View/uMain.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/CompUPX/View/uMain.dfm -------------------------------------------------------------------------------- /CompUPX/View/uMain.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/CompUPX/View/uMain.pas -------------------------------------------------------------------------------- /CompUPX/View/uOption.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/CompUPX/View/uOption.dfm -------------------------------------------------------------------------------- /CompUPX/View/uOption.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/CompUPX/View/uOption.pas -------------------------------------------------------------------------------- /CompUPX/View/uProgress.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/CompUPX/View/uProgress.dfm -------------------------------------------------------------------------------- /CompUPX/View/uProgress.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/CompUPX/View/uProgress.pas -------------------------------------------------------------------------------- /CompUPX/bin/upx.000: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/CompUPX/bin/upx.000 -------------------------------------------------------------------------------- /CountDown/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/CountDown/.gitignore -------------------------------------------------------------------------------- /CountDown/Bin/Bmp/timer.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/CountDown/Bin/Bmp/timer.bmp -------------------------------------------------------------------------------- /CountDown/Bin/Wav/CloseClock.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/CountDown/Bin/Wav/CloseClock.wav -------------------------------------------------------------------------------- /CountDown/Bin/Wav/IniClock.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/CountDown/Bin/Wav/IniClock.wav -------------------------------------------------------------------------------- /CountDown/Bin/Wav/OpenClock.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/CountDown/Bin/Wav/OpenClock.wav -------------------------------------------------------------------------------- /CountDown/Bin/Wav/TaktClock.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/CountDown/Bin/Wav/TaktClock.wav -------------------------------------------------------------------------------- /CountDown/CountDouwnGrp.groupproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/CountDown/CountDouwnGrp.groupproj -------------------------------------------------------------------------------- /CountDown/CountDown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/CountDown/CountDown.png -------------------------------------------------------------------------------- /CountDown/CountDownApp/CountDown.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/CountDown/CountDownApp/CountDown.dpr -------------------------------------------------------------------------------- /CountDown/CountDownApp/CountDown.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/CountDown/CountDownApp/CountDown.dproj -------------------------------------------------------------------------------- /CountDown/CountDownApp/CountDown.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/CountDown/CountDownApp/CountDown.res -------------------------------------------------------------------------------- /CountDown/CountDownApp/CountDown.skincfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/CountDown/CountDownApp/CountDown.skincfg -------------------------------------------------------------------------------- /CountDown/CountDownApp/CountDown_Icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/CountDown/CountDownApp/CountDown_Icon.ico -------------------------------------------------------------------------------- /CountDown/CountDownApp/Res/Sound.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/CountDown/CountDownApp/Res/Sound.rc -------------------------------------------------------------------------------- /CountDown/CountDownApp/Res/Takt.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/CountDown/CountDownApp/Res/Takt.wav -------------------------------------------------------------------------------- /CountDown/CountDownApp/Unit/UCountDownTimer1.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/CountDown/CountDownApp/Unit/UCountDownTimer1.pas -------------------------------------------------------------------------------- /CountDown/CountDownApp/Unit/UCountDownTimer2.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/CountDown/CountDownApp/Unit/UCountDownTimer2.pas -------------------------------------------------------------------------------- /CountDown/CountDownApp/Unit/UCountDownTimer3.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/CountDown/CountDownApp/Unit/UCountDownTimer3.pas -------------------------------------------------------------------------------- /CountDown/CountDownApp/Unit/UCountDownTimer4.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/CountDown/CountDownApp/Unit/UCountDownTimer4.pas -------------------------------------------------------------------------------- /CountDown/CountDownApp/View/Main.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/CountDown/CountDownApp/View/Main.dfm -------------------------------------------------------------------------------- /CountDown/CountDownApp/View/Main.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/CountDown/CountDownApp/View/Main.pas -------------------------------------------------------------------------------- /CountDown/CountDownApp/View/uAbout.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/CountDown/CountDownApp/View/uAbout.dfm -------------------------------------------------------------------------------- /CountDown/CountDownApp/View/uAbout.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/CountDown/CountDownApp/View/uAbout.pas -------------------------------------------------------------------------------- /CountDown/CountDownDLL/CountDownDLL.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/CountDown/CountDownDLL/CountDownDLL.dpr -------------------------------------------------------------------------------- /CountDown/CountDownDLL/CountDownDLL.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/CountDown/CountDownDLL/CountDownDLL.dproj -------------------------------------------------------------------------------- /CountDown/CountDownDLL/CountDownDLL.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/CountDown/CountDownDLL/CountDownDLL.res -------------------------------------------------------------------------------- /CountDown/CountDownDLL/CountDownDLL.skincfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/CountDown/CountDownDLL/CountDownDLL.skincfg -------------------------------------------------------------------------------- /CountDown/CountDownDLL/Unit/CountDownDLL_Lib.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/CountDown/CountDownDLL/Unit/CountDownDLL_Lib.pas -------------------------------------------------------------------------------- /CountDown/CountDownDLL/View/uCountDown.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/CountDown/CountDownDLL/View/uCountDown.dfm -------------------------------------------------------------------------------- /CountDown/CountDownDLL/View/uCountDown.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/CountDown/CountDownDLL/View/uCountDown.pas -------------------------------------------------------------------------------- /CountDown/CountDownDLL/View/uOption.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/CountDown/CountDownDLL/View/uOption.dfm -------------------------------------------------------------------------------- /CountDown/CountDownDLL/View/uOption.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/CountDown/CountDownDLL/View/uOption.pas -------------------------------------------------------------------------------- /CountDown/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/CountDown/LICENSE -------------------------------------------------------------------------------- /CountDown/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/CountDown/README.md -------------------------------------------------------------------------------- /CreEvent/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/CreEvent/.gitignore -------------------------------------------------------------------------------- /CreEvent/CreEvent.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/CreEvent/CreEvent.dpr -------------------------------------------------------------------------------- /CreEvent/CreEvent.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/CreEvent/CreEvent.dproj -------------------------------------------------------------------------------- /CreEvent/CreEvent.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/CreEvent/CreEvent.res -------------------------------------------------------------------------------- /CreEvent/CreEvent_.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/CreEvent/CreEvent_.png -------------------------------------------------------------------------------- /CreEvent/CreateEvent_Icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/CreEvent/CreateEvent_Icon.ico -------------------------------------------------------------------------------- /CreEvent/Form/Main.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/CreEvent/Form/Main.dfm -------------------------------------------------------------------------------- /CreEvent/Form/Main.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/CreEvent/Form/Main.pas -------------------------------------------------------------------------------- /CreEvent/Main.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/CreEvent/Main.dfm -------------------------------------------------------------------------------- /CreEvent/Main.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/CreEvent/Main.pas -------------------------------------------------------------------------------- /CreEvent/Module/Module.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/CreEvent/Module/Module.dfm -------------------------------------------------------------------------------- /CreEvent/Module/Module.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/CreEvent/Module/Module.pas -------------------------------------------------------------------------------- /CreEvent/Prototype.dof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/CreEvent/Prototype.dof -------------------------------------------------------------------------------- /CreEvent/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/CreEvent/README.md -------------------------------------------------------------------------------- /CreEvent/Unit/uEvent.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/CreEvent/Unit/uEvent.pas -------------------------------------------------------------------------------- /CreEvent/uEvent.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/CreEvent/uEvent.pas -------------------------------------------------------------------------------- /Delphi-Collection.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/Delphi-Collection.jpg -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/LICENSE -------------------------------------------------------------------------------- /LoadUrlGif/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/LoadUrlGif/.gitignore -------------------------------------------------------------------------------- /LoadUrlGif/LoadUrlGif.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/LoadUrlGif/LoadUrlGif.dpr -------------------------------------------------------------------------------- /LoadUrlGif/LoadUrlGif.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/LoadUrlGif/LoadUrlGif.dproj -------------------------------------------------------------------------------- /LoadUrlGif/LoadUrlGif.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/LoadUrlGif/LoadUrlGif.res -------------------------------------------------------------------------------- /LoadUrlGif/LoadUrlGif_.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/LoadUrlGif/LoadUrlGif_.png -------------------------------------------------------------------------------- /LoadUrlGif/LoadUrlGif_Icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/LoadUrlGif/LoadUrlGif_Icon.ico -------------------------------------------------------------------------------- /LoadUrlGif/Main.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/LoadUrlGif/Main.dfm -------------------------------------------------------------------------------- /LoadUrlGif/Main.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/LoadUrlGif/Main.pas -------------------------------------------------------------------------------- /LoadUrlGif/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/LoadUrlGif/README.md -------------------------------------------------------------------------------- /LoadUrlGif/View/About.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/LoadUrlGif/View/About.dfm -------------------------------------------------------------------------------- /LoadUrlGif/View/About.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/LoadUrlGif/View/About.pas -------------------------------------------------------------------------------- /LoadUrlGif/View/README: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /LoadUrlGif/View/Splash.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/LoadUrlGif/View/Splash.dfm -------------------------------------------------------------------------------- /LoadUrlGif/View/Splash.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/LoadUrlGif/View/Splash.pas -------------------------------------------------------------------------------- /MeteoChart/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/MeteoChart/.gitignore -------------------------------------------------------------------------------- /MeteoChart/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/MeteoChart/LICENSE -------------------------------------------------------------------------------- /MeteoChart/MeteoChart.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/MeteoChart/MeteoChart.dpr -------------------------------------------------------------------------------- /MeteoChart/MeteoChart.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/MeteoChart/MeteoChart.dproj -------------------------------------------------------------------------------- /MeteoChart/MeteoChart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/MeteoChart/MeteoChart.png -------------------------------------------------------------------------------- /MeteoChart/MeteoChart.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/MeteoChart/MeteoChart.res -------------------------------------------------------------------------------- /MeteoChart/MeteoChart_Icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/MeteoChart/MeteoChart_Icon.ico -------------------------------------------------------------------------------- /MeteoChart/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/MeteoChart/README.md -------------------------------------------------------------------------------- /MeteoChart/Unit/UInterfaces.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/MeteoChart/Unit/UInterfaces.pas -------------------------------------------------------------------------------- /MeteoChart/Unit/UMeteo.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/MeteoChart/Unit/UMeteo.pas -------------------------------------------------------------------------------- /MeteoChart/Unit/UObservable.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/MeteoChart/Unit/UObservable.pas -------------------------------------------------------------------------------- /MeteoChart/View/About.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/MeteoChart/View/About.dfm -------------------------------------------------------------------------------- /MeteoChart/View/About.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/MeteoChart/View/About.pas -------------------------------------------------------------------------------- /MeteoChart/View/Chart.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/MeteoChart/View/Chart.dfm -------------------------------------------------------------------------------- /MeteoChart/View/Chart.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/MeteoChart/View/Chart.pas -------------------------------------------------------------------------------- /MeteoChart/View/Logging.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/MeteoChart/View/Logging.dfm -------------------------------------------------------------------------------- /MeteoChart/View/Logging.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/MeteoChart/View/Logging.pas -------------------------------------------------------------------------------- /MeteoChart/View/Main.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/MeteoChart/View/Main.dfm -------------------------------------------------------------------------------- /MeteoChart/View/Main.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/MeteoChart/View/Main.pas -------------------------------------------------------------------------------- /MeteoChart/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/MeteoChart/readme.txt -------------------------------------------------------------------------------- /MyAlbumDLL/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/MyAlbumDLL/.gitignore -------------------------------------------------------------------------------- /MyAlbumDLL/DLL/DLLImages.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/MyAlbumDLL/DLL/DLLImages.dpr -------------------------------------------------------------------------------- /MyAlbumDLL/DLL/DLLImages.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/MyAlbumDLL/DLL/DLLImages.dproj -------------------------------------------------------------------------------- /MyAlbumDLL/DLL/DLLImages.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/MyAlbumDLL/DLL/DLLImages.res -------------------------------------------------------------------------------- /MyAlbumDLL/DLL/Resource/01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/MyAlbumDLL/DLL/Resource/01.jpg -------------------------------------------------------------------------------- /MyAlbumDLL/DLL/Resource/02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/MyAlbumDLL/DLL/Resource/02.jpg -------------------------------------------------------------------------------- /MyAlbumDLL/DLL/Resource/03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/MyAlbumDLL/DLL/Resource/03.jpg -------------------------------------------------------------------------------- /MyAlbumDLL/DLL/Resource/ResÍmage.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/MyAlbumDLL/DLL/Resource/ResÍmage.rc -------------------------------------------------------------------------------- /MyAlbumDLL/DLL/ResÍmage.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/MyAlbumDLL/DLL/ResÍmage.res -------------------------------------------------------------------------------- /MyAlbumDLL/GrpMyAlbumDLL.groupproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/MyAlbumDLL/GrpMyAlbumDLL.groupproj -------------------------------------------------------------------------------- /MyAlbumDLL/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/MyAlbumDLL/LICENSE -------------------------------------------------------------------------------- /MyAlbumDLL/Mon projet/Main.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/MyAlbumDLL/Mon projet/Main.dfm -------------------------------------------------------------------------------- /MyAlbumDLL/Mon projet/Main.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/MyAlbumDLL/Mon projet/Main.pas -------------------------------------------------------------------------------- /MyAlbumDLL/Mon projet/MyAlbum.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/MyAlbumDLL/Mon projet/MyAlbum.res -------------------------------------------------------------------------------- /MyAlbumDLL/Mon projet/MyAlbumDLL.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/MyAlbumDLL/Mon projet/MyAlbumDLL.dpr -------------------------------------------------------------------------------- /MyAlbumDLL/Mon projet/MyAlbumDLL.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/MyAlbumDLL/Mon projet/MyAlbumDLL.dproj -------------------------------------------------------------------------------- /MyAlbumDLL/Mon projet/MyAlbumDLL.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/MyAlbumDLL/Mon projet/MyAlbumDLL.res -------------------------------------------------------------------------------- /MyAlbumDLL/Mon projet/MyAlbum_Icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/MyAlbumDLL/Mon projet/MyAlbum_Icon.ico -------------------------------------------------------------------------------- /MyAlbumDLL/Mon projet/ResMusic.RES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/MyAlbumDLL/Mon projet/ResMusic.RES -------------------------------------------------------------------------------- /MyAlbumDLL/Mon projet/uAbout.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/MyAlbumDLL/Mon projet/uAbout.dfm -------------------------------------------------------------------------------- /MyAlbumDLL/Mon projet/uAbout.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/MyAlbumDLL/Mon projet/uAbout.pas -------------------------------------------------------------------------------- /MyAlbumDLL/MyAlbumDLL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/MyAlbumDLL/MyAlbumDLL.png -------------------------------------------------------------------------------- /MyAlbumDLL/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/MyAlbumDLL/README.md -------------------------------------------------------------------------------- /MyStringGrid/About/About.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/MyStringGrid/About/About.dfm -------------------------------------------------------------------------------- /MyStringGrid/About/About.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/MyStringGrid/About/About.pas -------------------------------------------------------------------------------- /MyStringGrid/Api/uIConnection.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/MyStringGrid/Api/uIConnection.pas -------------------------------------------------------------------------------- /MyStringGrid/BIN/Data/MyTest.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/MyStringGrid/BIN/Data/MyTest.db -------------------------------------------------------------------------------- /MyStringGrid/Demo1.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/MyStringGrid/Demo1.res -------------------------------------------------------------------------------- /MyStringGrid/Implimentation/uTConnection.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/MyStringGrid/Implimentation/uTConnection.pas -------------------------------------------------------------------------------- /MyStringGrid/Main.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/MyStringGrid/Main.dfm -------------------------------------------------------------------------------- /MyStringGrid/Main.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/MyStringGrid/Main.pas -------------------------------------------------------------------------------- /MyStringGrid/Module/Module.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/MyStringGrid/Module/Module.dfm -------------------------------------------------------------------------------- /MyStringGrid/Module/Module.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/MyStringGrid/Module/Module.pas -------------------------------------------------------------------------------- /MyStringGrid/Module/Module.pas.cbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/MyStringGrid/Module/Module.pas.cbk -------------------------------------------------------------------------------- /MyStringGrid/MyStringGrid.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/MyStringGrid/MyStringGrid.dpr -------------------------------------------------------------------------------- /MyStringGrid/MyStringGrid.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/MyStringGrid/MyStringGrid.dproj -------------------------------------------------------------------------------- /MyStringGrid/MyStringGrid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/MyStringGrid/MyStringGrid.png -------------------------------------------------------------------------------- /MyStringGrid/MyStringGrid.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/MyStringGrid/MyStringGrid.res -------------------------------------------------------------------------------- /MyStringGrid/MyStringGrid_Icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/MyStringGrid/MyStringGrid_Icon.ico -------------------------------------------------------------------------------- /MyStringGrid/Project1.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/MyStringGrid/Project1.res -------------------------------------------------------------------------------- /MyStringGrid/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/MyStringGrid/README.md -------------------------------------------------------------------------------- /MyStringGrid/SetupPrinter.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/MyStringGrid/SetupPrinter.dfm -------------------------------------------------------------------------------- /MyStringGrid/SetupPrinter.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/MyStringGrid/SetupPrinter.pas -------------------------------------------------------------------------------- /MyStringGrid/uSettingPrint.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/MyStringGrid/uSettingPrint.pas -------------------------------------------------------------------------------- /MyStringGrid/uStringGrid.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/MyStringGrid/uStringGrid.pas -------------------------------------------------------------------------------- /NOTyMSG/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/NOTyMSG/.gitignore -------------------------------------------------------------------------------- /NOTyMSG/DEBUG/Libary/html/main.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/NOTyMSG/DEBUG/Libary/html/main.htm -------------------------------------------------------------------------------- /NOTyMSG/DEBUG/Libary/png/test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/NOTyMSG/DEBUG/Libary/png/test.png -------------------------------------------------------------------------------- /NOTyMSG/DEBUG/Libary/txt/Notify.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /NOTyMSG/DEBUG/main.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/NOTyMSG/DEBUG/main.htm -------------------------------------------------------------------------------- /NOTyMSG/NOTyMSG/MainRecieve.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/NOTyMSG/NOTyMSG/MainRecieve.dfm -------------------------------------------------------------------------------- /NOTyMSG/NOTyMSG/MainRecieve.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/NOTyMSG/NOTyMSG/MainRecieve.pas -------------------------------------------------------------------------------- /NOTyMSG/NOTyMSG/NOTyMSG.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/NOTyMSG/NOTyMSG/NOTyMSG.dpr -------------------------------------------------------------------------------- /NOTyMSG/NOTyMSG/NOTyMSG.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/NOTyMSG/NOTyMSG/NOTyMSG.dproj -------------------------------------------------------------------------------- /NOTyMSG/NOTyMSG/NOTyMSG.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/NOTyMSG/NOTyMSG/NOTyMSG.ico -------------------------------------------------------------------------------- /NOTyMSG/NOTyMSG/NOTyMSG.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/NOTyMSG/NOTyMSG/NOTyMSG.res -------------------------------------------------------------------------------- /NOTyMSG/NOTyMSG/NOTyMSG.skincfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/NOTyMSG/NOTyMSG/NOTyMSG.skincfg -------------------------------------------------------------------------------- /NOTyMSG/NOTyMSG/Unit/UresApp.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/NOTyMSG/NOTyMSG/Unit/UresApp.pas -------------------------------------------------------------------------------- /NOTyMSG/NOTyMSG/Unit/uScript.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/NOTyMSG/NOTyMSG/Unit/uScript.pas -------------------------------------------------------------------------------- /NOTyMSG/NOTyMSG_.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/NOTyMSG/NOTyMSG_.png -------------------------------------------------------------------------------- /NOTyMSG/NOTyMSGgrp.groupproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/NOTyMSG/NOTyMSGgrp.groupproj -------------------------------------------------------------------------------- /NOTyMSG/NOTySEND/MainSender.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/NOTyMSG/NOTySEND/MainSender.dfm -------------------------------------------------------------------------------- /NOTyMSG/NOTySEND/MainSender.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/NOTyMSG/NOTySEND/MainSender.pas -------------------------------------------------------------------------------- /NOTyMSG/NOTySEND/NOTySEND.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/NOTyMSG/NOTySEND/NOTySEND.dpr -------------------------------------------------------------------------------- /NOTyMSG/NOTySEND/NOTySEND.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/NOTyMSG/NOTySEND/NOTySEND.dproj -------------------------------------------------------------------------------- /NOTyMSG/NOTySEND/NOTySEND.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/NOTyMSG/NOTySEND/NOTySEND.ico -------------------------------------------------------------------------------- /NOTyMSG/NOTySEND/NOTySEND.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/NOTyMSG/NOTySEND/NOTySEND.res -------------------------------------------------------------------------------- /NOTyMSG/NOTySEND/NOTySEND.skincfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/NOTyMSG/NOTySEND/NOTySEND.skincfg -------------------------------------------------------------------------------- /NOTyMSG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/NOTyMSG/README.md -------------------------------------------------------------------------------- /NOTyMSG/clear.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/NOTyMSG/clear.bat -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/README.md -------------------------------------------------------------------------------- /RegisterKey/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/RegisterKey/.gitignore -------------------------------------------------------------------------------- /RegisterKey/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/RegisterKey/README.md -------------------------------------------------------------------------------- /RegisterKey/RegisterKey.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/RegisterKey/RegisterKey.dpr -------------------------------------------------------------------------------- /RegisterKey/RegisterKey.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/RegisterKey/RegisterKey.dproj -------------------------------------------------------------------------------- /RegisterKey/RegisterKey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/RegisterKey/RegisterKey.png -------------------------------------------------------------------------------- /RegisterKey/RegisterKey_Icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/RegisterKey/RegisterKey_Icon.ico -------------------------------------------------------------------------------- /RegisterKey/Unit/ToolLib.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/RegisterKey/Unit/ToolLib.pas -------------------------------------------------------------------------------- /RegisterKey/View/Main.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/RegisterKey/View/Main.dfm -------------------------------------------------------------------------------- /RegisterKey/View/Main.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/RegisterKey/View/Main.pas -------------------------------------------------------------------------------- /SoftwareLicense/About/About.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/SoftwareLicense/About/About.dfm -------------------------------------------------------------------------------- /SoftwareLicense/About/About.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/SoftwareLicense/About/About.pas -------------------------------------------------------------------------------- /SoftwareLicense/Bin/Doc/License.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/SoftwareLicense/Bin/Doc/License.htm -------------------------------------------------------------------------------- /SoftwareLicense/Bin/Doc/SoftwareLicense.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/SoftwareLicense/Bin/Doc/SoftwareLicense.html -------------------------------------------------------------------------------- /SoftwareLicense/Img/VMSoftwareLicense.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/SoftwareLicense/Img/VMSoftwareLicense.png -------------------------------------------------------------------------------- /SoftwareLicense/License.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/SoftwareLicense/License.dfm -------------------------------------------------------------------------------- /SoftwareLicense/License.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/SoftwareLicense/License.pas -------------------------------------------------------------------------------- /SoftwareLicense/Main.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/SoftwareLicense/Main.dfm -------------------------------------------------------------------------------- /SoftwareLicense/Main.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/SoftwareLicense/Main.pas -------------------------------------------------------------------------------- /SoftwareLicense/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/SoftwareLicense/README.md -------------------------------------------------------------------------------- /SoftwareLicense/SoftwareLicense.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/SoftwareLicense/SoftwareLicense.dpr -------------------------------------------------------------------------------- /SoftwareLicense/SoftwareLicense.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/SoftwareLicense/SoftwareLicense.dproj -------------------------------------------------------------------------------- /SoftwareLicense/SoftwareLicense.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/SoftwareLicense/SoftwareLicense.png -------------------------------------------------------------------------------- /SoftwareLicense/SoftwareLicense.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/SoftwareLicense/SoftwareLicense.res -------------------------------------------------------------------------------- /SoftwareLicense/SoftwareLicense_Icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/SoftwareLicense/SoftwareLicense_Icon.ico -------------------------------------------------------------------------------- /SoftwareLicense/uExScrollBox.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/SoftwareLicense/uExScrollBox.pas -------------------------------------------------------------------------------- /SoftwareLicense/uToolLib.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/SoftwareLicense/uToolLib.pas -------------------------------------------------------------------------------- /StudNote/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/StudNote/.gitignore -------------------------------------------------------------------------------- /StudNote/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/StudNote/README.md -------------------------------------------------------------------------------- /StudNote/StudNote.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/StudNote/StudNote.dpr -------------------------------------------------------------------------------- /StudNote/StudNote.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/StudNote/StudNote.dproj -------------------------------------------------------------------------------- /StudNote/StudNote.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/StudNote/StudNote.res -------------------------------------------------------------------------------- /StudNote/StudNote_.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/StudNote/StudNote_.png -------------------------------------------------------------------------------- /StudNote/StudNote_Icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/StudNote/StudNote_Icon.ico -------------------------------------------------------------------------------- /StudNote/Unit/README.txt: -------------------------------------------------------------------------------- 1 | unit folder -------------------------------------------------------------------------------- /StudNote/View/AboutSN.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/StudNote/View/AboutSN.dfm -------------------------------------------------------------------------------- /StudNote/View/AboutSN.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/StudNote/View/AboutSN.pas -------------------------------------------------------------------------------- /StudNote/View/ChartStudent.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/StudNote/View/ChartStudent.dfm -------------------------------------------------------------------------------- /StudNote/View/ChartStudent.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/StudNote/View/ChartStudent.pas -------------------------------------------------------------------------------- /StudNote/View/FormMain.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/StudNote/View/FormMain.dfm -------------------------------------------------------------------------------- /StudNote/View/FormMain.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/StudNote/View/FormMain.pas -------------------------------------------------------------------------------- /TColorCSV/Img/MainView.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/TColorCSV/Img/MainView.png -------------------------------------------------------------------------------- /TColorCSV/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/TColorCSV/LICENSE -------------------------------------------------------------------------------- /TColorCSV/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/TColorCSV/README.md -------------------------------------------------------------------------------- /TColorCSV/TColorCSV.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/TColorCSV/TColorCSV.png -------------------------------------------------------------------------------- /TColorCSV/src/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/TColorCSV/src/.gitignore -------------------------------------------------------------------------------- /TColorCSV/src/About/About.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/TColorCSV/src/About/About.dfm -------------------------------------------------------------------------------- /TColorCSV/src/About/About.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/TColorCSV/src/About/About.pas -------------------------------------------------------------------------------- /TColorCSV/src/BIN/Libary/vsf/Silver.vsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/TColorCSV/src/BIN/Libary/vsf/Silver.vsf -------------------------------------------------------------------------------- /TColorCSV/src/BIN/Student.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/TColorCSV/src/BIN/Student.csv -------------------------------------------------------------------------------- /TColorCSV/src/BIN/TColorCSV.iss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/TColorCSV/src/BIN/TColorCSV.iss -------------------------------------------------------------------------------- /TColorCSV/src/BIN/gpl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/TColorCSV/src/BIN/gpl.txt -------------------------------------------------------------------------------- /TColorCSV/src/BIN/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/TColorCSV/src/BIN/license.txt -------------------------------------------------------------------------------- /TColorCSV/src/BIN/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/TColorCSV/src/BIN/test -------------------------------------------------------------------------------- /TColorCSV/src/CSVUtils.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/TColorCSV/src/CSVUtils.pas -------------------------------------------------------------------------------- /TColorCSV/src/GridView.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/TColorCSV/src/GridView.dfm -------------------------------------------------------------------------------- /TColorCSV/src/GridView.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/TColorCSV/src/GridView.pas -------------------------------------------------------------------------------- /TColorCSV/src/Img_Res/MMP_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/TColorCSV/src/Img_Res/MMP_128.png -------------------------------------------------------------------------------- /TColorCSV/src/Img_Res/MMP_128_Black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/TColorCSV/src/Img_Res/MMP_128_Black.png -------------------------------------------------------------------------------- /TColorCSV/src/Img_Res/MMP_256_256.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/TColorCSV/src/Img_Res/MMP_256_256.bmp -------------------------------------------------------------------------------- /TColorCSV/src/Img_Res/MMP_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/TColorCSV/src/Img_Res/MMP_32.png -------------------------------------------------------------------------------- /TColorCSV/src/Img_Res/MMP_64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/TColorCSV/src/Img_Res/MMP_64.png -------------------------------------------------------------------------------- /TColorCSV/src/Img_Res/MMP_64_64.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/TColorCSV/src/Img_Res/MMP_64_64.bmp -------------------------------------------------------------------------------- /TColorCSV/src/Img_Res/MMP_64_64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/TColorCSV/src/Img_Res/MMP_64_64.png -------------------------------------------------------------------------------- /TColorCSV/src/Img_Res/TColorCSV.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/TColorCSV/src/Img_Res/TColorCSV.ico -------------------------------------------------------------------------------- /TColorCSV/src/Img_Res/TColorCSV.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/TColorCSV/src/Img_Res/TColorCSV.png -------------------------------------------------------------------------------- /TColorCSV/src/Img_Res/TColorCSV_64_64.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/TColorCSV/src/Img_Res/TColorCSV_64_64.bmp -------------------------------------------------------------------------------- /TColorCSV/src/Img_Res/mmp_256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/TColorCSV/src/Img_Res/mmp_256.png -------------------------------------------------------------------------------- /TColorCSV/src/Img_Res/rainbow-star.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/TColorCSV/src/Img_Res/rainbow-star.bmp -------------------------------------------------------------------------------- /TColorCSV/src/Img_Res/rainbow-star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/TColorCSV/src/Img_Res/rainbow-star.png -------------------------------------------------------------------------------- /TColorCSV/src/MainView.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/TColorCSV/src/MainView.png -------------------------------------------------------------------------------- /TColorCSV/src/ReadSaveCSV.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/TColorCSV/src/ReadSaveCSV.res -------------------------------------------------------------------------------- /TColorCSV/src/ReadSaveCSV.skincfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/TColorCSV/src/ReadSaveCSV.skincfg -------------------------------------------------------------------------------- /TColorCSV/src/TColorCSV.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/TColorCSV/src/TColorCSV.dpr -------------------------------------------------------------------------------- /TColorCSV/src/TColorCSV.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/TColorCSV/src/TColorCSV.dproj -------------------------------------------------------------------------------- /TColorCSV/src/TColorCSV.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/TColorCSV/src/TColorCSV.res -------------------------------------------------------------------------------- /TColorCSV/src/TColorCSV.skincfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/TColorCSV/src/TColorCSV.skincfg -------------------------------------------------------------------------------- /TColorCSV/src/TColorCSV_Icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/TColorCSV/src/TColorCSV_Icon.ico -------------------------------------------------------------------------------- /TColorCSV/src/TaColorCSV.skincfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/TColorCSV/src/TaColorCSV.skincfg -------------------------------------------------------------------------------- /TColorCSV/src/TabCSV.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/TColorCSV/src/TabCSV.res -------------------------------------------------------------------------------- /TColorCSV/src/TabCSV.skincfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/TColorCSV/src/TabCSV.skincfg -------------------------------------------------------------------------------- /TColorCSV/src/VirtualForm.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/TColorCSV/src/VirtualForm.pas -------------------------------------------------------------------------------- /TColorCSV/src/csvparser.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/TColorCSV/src/csvparser.pas -------------------------------------------------------------------------------- /TraitExcept/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/TraitExcept/.gitignore -------------------------------------------------------------------------------- /TraitExcept/DEBUG/Exception/Exception_2019-04-20.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/TraitExcept/DEBUG/Exception/Exception_2019-04-20.txt -------------------------------------------------------------------------------- /TraitExcept/DEBUG/Exception/Exception_2019-08-19.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/TraitExcept/DEBUG/Exception/Exception_2019-08-19.txt -------------------------------------------------------------------------------- /TraitExcept/Exception.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/TraitExcept/Exception.res -------------------------------------------------------------------------------- /TraitExcept/Exception.skincfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/TraitExcept/Exception.skincfg -------------------------------------------------------------------------------- /TraitExcept/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/TraitExcept/README.md -------------------------------------------------------------------------------- /TraitExcept/TraitExcept.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/TraitExcept/TraitExcept.dpr -------------------------------------------------------------------------------- /TraitExcept/TraitExcept.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/TraitExcept/TraitExcept.dproj -------------------------------------------------------------------------------- /TraitExcept/TraitExcept.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/TraitExcept/TraitExcept.png -------------------------------------------------------------------------------- /TraitExcept/TraitExcept.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/TraitExcept/TraitExcept.res -------------------------------------------------------------------------------- /TraitExcept/TraitException.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/TraitExcept/TraitException.res -------------------------------------------------------------------------------- /TraitExcept/TraitException.skincfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/TraitExcept/TraitException.skincfg -------------------------------------------------------------------------------- /TraitExcept/TraitException_Icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/TraitExcept/TraitException_Icon.ico -------------------------------------------------------------------------------- /TraitExcept/Unit/uSignal.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/TraitExcept/Unit/uSignal.pas -------------------------------------------------------------------------------- /TraitExcept/View/UBase.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/TraitExcept/View/UBase.dfm -------------------------------------------------------------------------------- /TraitExcept/View/UBase.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/TraitExcept/View/UBase.pas -------------------------------------------------------------------------------- /TraitExcept/View/UMain.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/TraitExcept/View/UMain.dfm -------------------------------------------------------------------------------- /TraitExcept/View/UMain.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/TraitExcept/View/UMain.pas -------------------------------------------------------------------------------- /TraitExcept/View/UProgExcep.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/TraitExcept/View/UProgExcep.dfm -------------------------------------------------------------------------------- /TraitExcept/View/UProgExcep.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/TraitExcept/View/UProgExcep.pas -------------------------------------------------------------------------------- /TraitExcept/View/uAbout.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/TraitExcept/View/uAbout.dfm -------------------------------------------------------------------------------- /TraitExcept/View/uAbout.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/TraitExcept/View/uAbout.pas -------------------------------------------------------------------------------- /XMLDLL/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/XMLDLL/.gitignore -------------------------------------------------------------------------------- /XMLDLL/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/XMLDLL/LICENSE -------------------------------------------------------------------------------- /XMLDLL/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/XMLDLL/README.md -------------------------------------------------------------------------------- /XMLDLL/XMLDLL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/XMLDLL/XMLDLL.png -------------------------------------------------------------------------------- /XMLDLL/XMLDLL_Grp.groupproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/XMLDLL/XMLDLL_Grp.groupproj -------------------------------------------------------------------------------- /XMLDLL/bin/Plugins/DLLHome/Config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/XMLDLL/bin/Plugins/DLLHome/Config.xml -------------------------------------------------------------------------------- /XMLDLL/bin/Skins/MainSkin/Logo/About.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/XMLDLL/bin/Skins/MainSkin/Logo/About.png -------------------------------------------------------------------------------- /XMLDLL/bin/Skins/MainSkin/Screens/Main_Back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/XMLDLL/bin/Skins/MainSkin/Screens/Main_Back.png -------------------------------------------------------------------------------- /XMLDLL/bin/Skins/MainSkin/Screens/Main_Front.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/XMLDLL/bin/Skins/MainSkin/Screens/Main_Front.png -------------------------------------------------------------------------------- /XMLDLL/bin/System/settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/XMLDLL/bin/System/settings.xml -------------------------------------------------------------------------------- /XMLDLL/src/MainApplication/About.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/XMLDLL/src/MainApplication/About.dfm -------------------------------------------------------------------------------- /XMLDLL/src/MainApplication/About.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/XMLDLL/src/MainApplication/About.pas -------------------------------------------------------------------------------- /XMLDLL/src/MainApplication/ButtonEventList.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/XMLDLL/src/MainApplication/ButtonEventList.pas -------------------------------------------------------------------------------- /XMLDLL/src/MainApplication/Clean.bat: -------------------------------------------------------------------------------- 1 | del *.dcu -------------------------------------------------------------------------------- /XMLDLL/src/MainApplication/Configuration.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/XMLDLL/src/MainApplication/Configuration.pas -------------------------------------------------------------------------------- /XMLDLL/src/MainApplication/MainSkinRect.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/XMLDLL/src/MainApplication/MainSkinRect.pas -------------------------------------------------------------------------------- /XMLDLL/src/MainApplication/ResImages.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/XMLDLL/src/MainApplication/ResImages.rc -------------------------------------------------------------------------------- /XMLDLL/src/MainApplication/ResImages.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/XMLDLL/src/MainApplication/ResImages.res -------------------------------------------------------------------------------- /XMLDLL/src/MainApplication/SkinBase.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/XMLDLL/src/MainApplication/SkinBase.pas -------------------------------------------------------------------------------- /XMLDLL/src/MainApplication/Skins.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/XMLDLL/src/MainApplication/Skins.pas -------------------------------------------------------------------------------- /XMLDLL/src/MainApplication/Skins/MainSkin/Logo/About.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/XMLDLL/src/MainApplication/Skins/MainSkin/Logo/About.png -------------------------------------------------------------------------------- /XMLDLL/src/MainApplication/Skins/MainSkin/Screens/Main_Back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/XMLDLL/src/MainApplication/Skins/MainSkin/Screens/Main_Back.png -------------------------------------------------------------------------------- /XMLDLL/src/MainApplication/Skins/MainSkin/Screens/Main_Front.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/XMLDLL/src/MainApplication/Skins/MainSkin/Screens/Main_Front.png -------------------------------------------------------------------------------- /XMLDLL/src/MainApplication/Skins/MainSkin/skin_.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/XMLDLL/src/MainApplication/Skins/MainSkin/skin_.xml -------------------------------------------------------------------------------- /XMLDLL/src/MainApplication/UnitRes/ResImg.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/XMLDLL/src/MainApplication/UnitRes/ResImg.pas -------------------------------------------------------------------------------- /XMLDLL/src/MainApplication/UnitRes/ResXml.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/XMLDLL/src/MainApplication/UnitRes/ResXml.pas -------------------------------------------------------------------------------- /XMLDLL/src/MainApplication/UtilsFunc.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/XMLDLL/src/MainApplication/UtilsFunc.pas -------------------------------------------------------------------------------- /XMLDLL/src/MainApplication/XMLDLL.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/XMLDLL/src/MainApplication/XMLDLL.dpr -------------------------------------------------------------------------------- /XMLDLL/src/MainApplication/XMLDLL.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/XMLDLL/src/MainApplication/XMLDLL.dproj -------------------------------------------------------------------------------- /XMLDLL/src/MainApplication/XMLDLL.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/XMLDLL/src/MainApplication/XMLDLL.res -------------------------------------------------------------------------------- /XMLDLL/src/MainApplication/XMLDLL.skincfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/XMLDLL/src/MainApplication/XMLDLL.skincfg -------------------------------------------------------------------------------- /XMLDLL/src/MainApplication/XMLDLL_Icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/XMLDLL/src/MainApplication/XMLDLL_Icon.ico -------------------------------------------------------------------------------- /XMLDLL/src/MainApplication/XmlFileHome.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/XMLDLL/src/MainApplication/XmlFileHome.pas -------------------------------------------------------------------------------- /XMLDLL/src/MainApplication/XmlFileSettings.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/XMLDLL/src/MainApplication/XmlFileSettings.pas -------------------------------------------------------------------------------- /XMLDLL/src/MainApplication/main.ddp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/XMLDLL/src/MainApplication/main.ddp -------------------------------------------------------------------------------- /XMLDLL/src/MainApplication/main.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/XMLDLL/src/MainApplication/main.dfm -------------------------------------------------------------------------------- /XMLDLL/src/MainApplication/main.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/XMLDLL/src/MainApplication/main.pas -------------------------------------------------------------------------------- /XMLDLL/src/MainApplication/pluginlist.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/XMLDLL/src/MainApplication/pluginlist.pas -------------------------------------------------------------------------------- /XMLDLL/src/Plugins/Home/Home.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/XMLDLL/src/Plugins/Home/Home.dpr -------------------------------------------------------------------------------- /XMLDLL/src/Plugins/Home/Home.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/XMLDLL/src/Plugins/Home/Home.dproj -------------------------------------------------------------------------------- /XMLDLL/src/Plugins/Home/Home.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/XMLDLL/src/Plugins/Home/Home.res -------------------------------------------------------------------------------- /XMLDLL/src/Plugins/Home/MainHome.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/XMLDLL/src/Plugins/Home/MainHome.dfm -------------------------------------------------------------------------------- /XMLDLL/src/Plugins/Home/MainHome.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walwalwalides/Delphi-Collection-VCL/HEAD/XMLDLL/src/Plugins/Home/MainHome.pas --------------------------------------------------------------------------------