├── 02 ├── FinalDemo │ ├── FinalDemo.fbp7 │ └── FinalDemo.fbpInf ├── LoggingDemo │ ├── LoggingDemo.dpr │ ├── LoggingDemo.dproj │ ├── LoggingDemo.res │ ├── Logging_MainForm.dfm │ └── Logging_MainForm.pas ├── ProfileIntro │ ├── StringConvert.dpr │ ├── StringConvert.dproj │ ├── StringConvert.res │ ├── StringConvertForm.dfm │ └── StringConvertForm.pas └── UmlDemo │ ├── UmlDemo.dpr │ ├── UmlDemo.dproj │ ├── UmlDemo.res │ ├── UmlDemo_DataModule.dfm │ ├── UmlDemo_DataModule.pas │ ├── UmlDemo_Dialog.dfm │ ├── UmlDemo_Dialog.pas │ ├── UmlDemo_MainForm.dfm │ ├── UmlDemo_MainForm.pas │ └── UmlDemo_project.tvsconfig ├── 03 ├── AlignTest │ ├── AlignTest.dpr │ ├── AlignTest.dproj │ ├── AlignTest.res │ ├── AlignTest_Icon.ico │ ├── AlignTest_Icon1.ico │ ├── AlignTest_MainForm.dfm │ └── AlignTest_MainForm.pas ├── AssortedRtl │ ├── AssortedRtl.dpr │ ├── AssortedRtl.dproj │ ├── AssortedRtl.res │ ├── AssortedRtl_MainForm.dfm │ └── AssortedRtl_MainForm.pas ├── AutoThreading │ ├── AutoThreading.dpr │ ├── AutoThreading.dproj │ ├── AutoThreading.res │ ├── AutoThreading_mainForm.dfm │ └── AutoThreading_mainForm.pas ├── BinaryFiles │ ├── BinaryFiles.dpr │ ├── BinaryFiles.dproj │ ├── BinaryFiles.res │ ├── BinaryFiles_MainForm.dfm │ └── BinaryFiles_MainForm.pas ├── InterceptBaseClass │ ├── InterceptBaseClass.dpr │ ├── InterceptBaseClass.dproj │ ├── InterceptBaseClass.res │ ├── InterceptBaseClass_MainForm.dfm │ └── InterceptBaseClass_MainForm.pas ├── RegExPrimer │ ├── RegExPrimer.dpr │ ├── RegExPrimer.dproj │ ├── RegExPrimer.res │ ├── RegExPrimer_Icon.ico │ ├── RegExPrimer_Icon1.ico │ ├── RegExPrimer_MainForm.dfm │ └── RegExPrimer_MainForm.pas ├── SpinWaiting │ ├── SpinWaiting.dpr │ ├── SpinWaiting.dproj │ ├── SpinWaiting.res │ ├── SpinWaiting_MainForm.dfm │ ├── SpinWaiting_MainForm.pas │ └── SpinWaiting_Threads.pas └── ThreadedQueue │ ├── ThreadedQueue.dpr │ ├── ThreadedQueue.dproj │ ├── ThreadedQueue.res │ ├── ThreadedQueue_MainForm.dfm │ ├── ThreadedQueue_MainForm.pas │ └── ThreadedQueue_ThreadClasses.pas ├── 04 ├── Azure101 │ ├── Azure101.dpr │ ├── Azure101.dproj │ ├── Azure101.res │ ├── Azure101_MainForm.dfm │ └── Azure101_MainForm.pas ├── DelphiCloudDemo │ ├── AzureTableXmlInterfaces.pas │ ├── CloudBrowse.dpr │ ├── CloudBrowse.dproj │ ├── CloudBrowse.res │ ├── CloudBrowse_MainForm.dfm │ ├── CloudBrowse_MainForm.pas │ ├── CloudPublish.dpr │ ├── CloudPublish.dproj │ ├── CloudPublish.res │ ├── CloudPublish_MainForm.dfm │ ├── CloudPublish_MainForm.pas │ └── biolife.cds ├── JsonMarshal │ ├── JsonMarshal.dpr │ ├── JsonMarshal.dproj │ ├── JsonMarshal.res │ ├── JsonMarshal_MainForm.dfm │ └── JsonMarshal_MainForm.pas ├── JsonTests │ ├── JsonTests_MainForm.dfm │ ├── JsonTests_MainForm.pas │ ├── jsonTests.dpr │ ├── jsonTests.dproj │ └── jsonTests.res ├── TranslateJson │ ├── BabelGoogle.pas │ ├── Translate.dpr │ ├── Translate.dproj │ ├── Translate.res │ ├── TranslateMainForm.dfm │ └── TranslateMainForm.pas ├── WebBrokerIndyDemo │ ├── WebIndyDemo.dpr │ ├── WebIndyDemo.dproj │ ├── WebIndyDemo.res │ ├── WebIndyDemo_MainForm.dfm │ ├── WebIndyDemo_MainForm.pas │ ├── WebIndyDemo_WebModule.dfm │ ├── WebIndyDemo_WebModule.pas │ ├── css │ │ └── main.css │ ├── images │ │ ├── Thumbs.db │ │ └── wintechlogo.jpg │ └── templates │ │ └── Sample.html └── XmlIniTest │ ├── XmlIniTest.dpr │ ├── XmlIniTest.dproj │ ├── XmlIniTest.res │ ├── XmlIniTest_MainForm.dfm │ ├── XmlIniTest_MainForm.pas │ └── test.xml ├── README.md └── epilogue └── EverythingXEDemo ├── BabelGoogle.pas ├── EverythingXEDemo.dpr ├── EverythingXEDemo.dproj ├── EverythingXEDemo.res ├── EverythingXE_MainForm.dfm ├── EverythingXE_MainForm.pas ├── EverythingXE_PaintForm.dfm └── EverythingXE_PaintForm.pas /02/FinalDemo/FinalDemo.fbp7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoDelphiBooks/DelphiXEHandbook/HEAD/02/FinalDemo/FinalDemo.fbp7 -------------------------------------------------------------------------------- /02/FinalDemo/FinalDemo.fbpInf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoDelphiBooks/DelphiXEHandbook/HEAD/02/FinalDemo/FinalDemo.fbpInf -------------------------------------------------------------------------------- /02/LoggingDemo/LoggingDemo.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoDelphiBooks/DelphiXEHandbook/HEAD/02/LoggingDemo/LoggingDemo.dpr -------------------------------------------------------------------------------- /02/LoggingDemo/LoggingDemo.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoDelphiBooks/DelphiXEHandbook/HEAD/02/LoggingDemo/LoggingDemo.dproj -------------------------------------------------------------------------------- /02/LoggingDemo/LoggingDemo.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoDelphiBooks/DelphiXEHandbook/HEAD/02/LoggingDemo/LoggingDemo.res -------------------------------------------------------------------------------- /02/LoggingDemo/Logging_MainForm.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoDelphiBooks/DelphiXEHandbook/HEAD/02/LoggingDemo/Logging_MainForm.dfm -------------------------------------------------------------------------------- /02/LoggingDemo/Logging_MainForm.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoDelphiBooks/DelphiXEHandbook/HEAD/02/LoggingDemo/Logging_MainForm.pas -------------------------------------------------------------------------------- /02/ProfileIntro/StringConvert.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoDelphiBooks/DelphiXEHandbook/HEAD/02/ProfileIntro/StringConvert.dpr -------------------------------------------------------------------------------- /02/ProfileIntro/StringConvert.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoDelphiBooks/DelphiXEHandbook/HEAD/02/ProfileIntro/StringConvert.dproj -------------------------------------------------------------------------------- /02/ProfileIntro/StringConvert.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoDelphiBooks/DelphiXEHandbook/HEAD/02/ProfileIntro/StringConvert.res -------------------------------------------------------------------------------- /02/ProfileIntro/StringConvertForm.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoDelphiBooks/DelphiXEHandbook/HEAD/02/ProfileIntro/StringConvertForm.dfm -------------------------------------------------------------------------------- /02/ProfileIntro/StringConvertForm.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoDelphiBooks/DelphiXEHandbook/HEAD/02/ProfileIntro/StringConvertForm.pas -------------------------------------------------------------------------------- /02/UmlDemo/UmlDemo.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoDelphiBooks/DelphiXEHandbook/HEAD/02/UmlDemo/UmlDemo.dpr -------------------------------------------------------------------------------- /02/UmlDemo/UmlDemo.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoDelphiBooks/DelphiXEHandbook/HEAD/02/UmlDemo/UmlDemo.dproj -------------------------------------------------------------------------------- /02/UmlDemo/UmlDemo.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoDelphiBooks/DelphiXEHandbook/HEAD/02/UmlDemo/UmlDemo.res -------------------------------------------------------------------------------- /02/UmlDemo/UmlDemo_DataModule.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoDelphiBooks/DelphiXEHandbook/HEAD/02/UmlDemo/UmlDemo_DataModule.dfm -------------------------------------------------------------------------------- /02/UmlDemo/UmlDemo_DataModule.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoDelphiBooks/DelphiXEHandbook/HEAD/02/UmlDemo/UmlDemo_DataModule.pas -------------------------------------------------------------------------------- /02/UmlDemo/UmlDemo_Dialog.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoDelphiBooks/DelphiXEHandbook/HEAD/02/UmlDemo/UmlDemo_Dialog.dfm -------------------------------------------------------------------------------- /02/UmlDemo/UmlDemo_Dialog.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoDelphiBooks/DelphiXEHandbook/HEAD/02/UmlDemo/UmlDemo_Dialog.pas -------------------------------------------------------------------------------- /02/UmlDemo/UmlDemo_MainForm.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoDelphiBooks/DelphiXEHandbook/HEAD/02/UmlDemo/UmlDemo_MainForm.dfm -------------------------------------------------------------------------------- /02/UmlDemo/UmlDemo_MainForm.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoDelphiBooks/DelphiXEHandbook/HEAD/02/UmlDemo/UmlDemo_MainForm.pas -------------------------------------------------------------------------------- /02/UmlDemo/UmlDemo_project.tvsconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoDelphiBooks/DelphiXEHandbook/HEAD/02/UmlDemo/UmlDemo_project.tvsconfig -------------------------------------------------------------------------------- /03/AlignTest/AlignTest.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoDelphiBooks/DelphiXEHandbook/HEAD/03/AlignTest/AlignTest.dpr -------------------------------------------------------------------------------- /03/AlignTest/AlignTest.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoDelphiBooks/DelphiXEHandbook/HEAD/03/AlignTest/AlignTest.dproj -------------------------------------------------------------------------------- /03/AlignTest/AlignTest.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoDelphiBooks/DelphiXEHandbook/HEAD/03/AlignTest/AlignTest.res -------------------------------------------------------------------------------- /03/AlignTest/AlignTest_Icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoDelphiBooks/DelphiXEHandbook/HEAD/03/AlignTest/AlignTest_Icon.ico -------------------------------------------------------------------------------- /03/AlignTest/AlignTest_Icon1.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoDelphiBooks/DelphiXEHandbook/HEAD/03/AlignTest/AlignTest_Icon1.ico -------------------------------------------------------------------------------- /03/AlignTest/AlignTest_MainForm.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoDelphiBooks/DelphiXEHandbook/HEAD/03/AlignTest/AlignTest_MainForm.dfm -------------------------------------------------------------------------------- /03/AlignTest/AlignTest_MainForm.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoDelphiBooks/DelphiXEHandbook/HEAD/03/AlignTest/AlignTest_MainForm.pas -------------------------------------------------------------------------------- /03/AssortedRtl/AssortedRtl.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoDelphiBooks/DelphiXEHandbook/HEAD/03/AssortedRtl/AssortedRtl.dpr -------------------------------------------------------------------------------- /03/AssortedRtl/AssortedRtl.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoDelphiBooks/DelphiXEHandbook/HEAD/03/AssortedRtl/AssortedRtl.dproj -------------------------------------------------------------------------------- /03/AssortedRtl/AssortedRtl.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoDelphiBooks/DelphiXEHandbook/HEAD/03/AssortedRtl/AssortedRtl.res -------------------------------------------------------------------------------- /03/AssortedRtl/AssortedRtl_MainForm.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoDelphiBooks/DelphiXEHandbook/HEAD/03/AssortedRtl/AssortedRtl_MainForm.dfm -------------------------------------------------------------------------------- /03/AssortedRtl/AssortedRtl_MainForm.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoDelphiBooks/DelphiXEHandbook/HEAD/03/AssortedRtl/AssortedRtl_MainForm.pas -------------------------------------------------------------------------------- /03/AutoThreading/AutoThreading.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoDelphiBooks/DelphiXEHandbook/HEAD/03/AutoThreading/AutoThreading.dpr -------------------------------------------------------------------------------- /03/AutoThreading/AutoThreading.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoDelphiBooks/DelphiXEHandbook/HEAD/03/AutoThreading/AutoThreading.dproj -------------------------------------------------------------------------------- /03/AutoThreading/AutoThreading.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoDelphiBooks/DelphiXEHandbook/HEAD/03/AutoThreading/AutoThreading.res -------------------------------------------------------------------------------- /03/AutoThreading/AutoThreading_mainForm.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoDelphiBooks/DelphiXEHandbook/HEAD/03/AutoThreading/AutoThreading_mainForm.dfm -------------------------------------------------------------------------------- /03/AutoThreading/AutoThreading_mainForm.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoDelphiBooks/DelphiXEHandbook/HEAD/03/AutoThreading/AutoThreading_mainForm.pas -------------------------------------------------------------------------------- /03/BinaryFiles/BinaryFiles.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoDelphiBooks/DelphiXEHandbook/HEAD/03/BinaryFiles/BinaryFiles.dpr -------------------------------------------------------------------------------- /03/BinaryFiles/BinaryFiles.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoDelphiBooks/DelphiXEHandbook/HEAD/03/BinaryFiles/BinaryFiles.dproj -------------------------------------------------------------------------------- /03/BinaryFiles/BinaryFiles.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoDelphiBooks/DelphiXEHandbook/HEAD/03/BinaryFiles/BinaryFiles.res -------------------------------------------------------------------------------- /03/BinaryFiles/BinaryFiles_MainForm.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoDelphiBooks/DelphiXEHandbook/HEAD/03/BinaryFiles/BinaryFiles_MainForm.dfm -------------------------------------------------------------------------------- /03/BinaryFiles/BinaryFiles_MainForm.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoDelphiBooks/DelphiXEHandbook/HEAD/03/BinaryFiles/BinaryFiles_MainForm.pas -------------------------------------------------------------------------------- /03/InterceptBaseClass/InterceptBaseClass.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoDelphiBooks/DelphiXEHandbook/HEAD/03/InterceptBaseClass/InterceptBaseClass.dpr -------------------------------------------------------------------------------- /03/InterceptBaseClass/InterceptBaseClass.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoDelphiBooks/DelphiXEHandbook/HEAD/03/InterceptBaseClass/InterceptBaseClass.dproj -------------------------------------------------------------------------------- /03/InterceptBaseClass/InterceptBaseClass.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoDelphiBooks/DelphiXEHandbook/HEAD/03/InterceptBaseClass/InterceptBaseClass.res -------------------------------------------------------------------------------- /03/InterceptBaseClass/InterceptBaseClass_MainForm.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoDelphiBooks/DelphiXEHandbook/HEAD/03/InterceptBaseClass/InterceptBaseClass_MainForm.dfm -------------------------------------------------------------------------------- /03/InterceptBaseClass/InterceptBaseClass_MainForm.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoDelphiBooks/DelphiXEHandbook/HEAD/03/InterceptBaseClass/InterceptBaseClass_MainForm.pas -------------------------------------------------------------------------------- /03/RegExPrimer/RegExPrimer.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoDelphiBooks/DelphiXEHandbook/HEAD/03/RegExPrimer/RegExPrimer.dpr -------------------------------------------------------------------------------- /03/RegExPrimer/RegExPrimer.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoDelphiBooks/DelphiXEHandbook/HEAD/03/RegExPrimer/RegExPrimer.dproj -------------------------------------------------------------------------------- /03/RegExPrimer/RegExPrimer.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoDelphiBooks/DelphiXEHandbook/HEAD/03/RegExPrimer/RegExPrimer.res -------------------------------------------------------------------------------- /03/RegExPrimer/RegExPrimer_Icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoDelphiBooks/DelphiXEHandbook/HEAD/03/RegExPrimer/RegExPrimer_Icon.ico -------------------------------------------------------------------------------- /03/RegExPrimer/RegExPrimer_Icon1.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoDelphiBooks/DelphiXEHandbook/HEAD/03/RegExPrimer/RegExPrimer_Icon1.ico -------------------------------------------------------------------------------- /03/RegExPrimer/RegExPrimer_MainForm.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoDelphiBooks/DelphiXEHandbook/HEAD/03/RegExPrimer/RegExPrimer_MainForm.dfm -------------------------------------------------------------------------------- /03/RegExPrimer/RegExPrimer_MainForm.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoDelphiBooks/DelphiXEHandbook/HEAD/03/RegExPrimer/RegExPrimer_MainForm.pas -------------------------------------------------------------------------------- /03/SpinWaiting/SpinWaiting.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoDelphiBooks/DelphiXEHandbook/HEAD/03/SpinWaiting/SpinWaiting.dpr -------------------------------------------------------------------------------- /03/SpinWaiting/SpinWaiting.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoDelphiBooks/DelphiXEHandbook/HEAD/03/SpinWaiting/SpinWaiting.dproj -------------------------------------------------------------------------------- /03/SpinWaiting/SpinWaiting.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoDelphiBooks/DelphiXEHandbook/HEAD/03/SpinWaiting/SpinWaiting.res -------------------------------------------------------------------------------- /03/SpinWaiting/SpinWaiting_MainForm.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoDelphiBooks/DelphiXEHandbook/HEAD/03/SpinWaiting/SpinWaiting_MainForm.dfm -------------------------------------------------------------------------------- /03/SpinWaiting/SpinWaiting_MainForm.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoDelphiBooks/DelphiXEHandbook/HEAD/03/SpinWaiting/SpinWaiting_MainForm.pas -------------------------------------------------------------------------------- /03/SpinWaiting/SpinWaiting_Threads.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoDelphiBooks/DelphiXEHandbook/HEAD/03/SpinWaiting/SpinWaiting_Threads.pas -------------------------------------------------------------------------------- /03/ThreadedQueue/ThreadedQueue.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoDelphiBooks/DelphiXEHandbook/HEAD/03/ThreadedQueue/ThreadedQueue.dpr -------------------------------------------------------------------------------- /03/ThreadedQueue/ThreadedQueue.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoDelphiBooks/DelphiXEHandbook/HEAD/03/ThreadedQueue/ThreadedQueue.dproj -------------------------------------------------------------------------------- /03/ThreadedQueue/ThreadedQueue.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoDelphiBooks/DelphiXEHandbook/HEAD/03/ThreadedQueue/ThreadedQueue.res -------------------------------------------------------------------------------- /03/ThreadedQueue/ThreadedQueue_MainForm.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoDelphiBooks/DelphiXEHandbook/HEAD/03/ThreadedQueue/ThreadedQueue_MainForm.dfm -------------------------------------------------------------------------------- /03/ThreadedQueue/ThreadedQueue_MainForm.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoDelphiBooks/DelphiXEHandbook/HEAD/03/ThreadedQueue/ThreadedQueue_MainForm.pas -------------------------------------------------------------------------------- /03/ThreadedQueue/ThreadedQueue_ThreadClasses.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoDelphiBooks/DelphiXEHandbook/HEAD/03/ThreadedQueue/ThreadedQueue_ThreadClasses.pas -------------------------------------------------------------------------------- /04/Azure101/Azure101.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoDelphiBooks/DelphiXEHandbook/HEAD/04/Azure101/Azure101.dpr -------------------------------------------------------------------------------- /04/Azure101/Azure101.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoDelphiBooks/DelphiXEHandbook/HEAD/04/Azure101/Azure101.dproj -------------------------------------------------------------------------------- /04/Azure101/Azure101.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoDelphiBooks/DelphiXEHandbook/HEAD/04/Azure101/Azure101.res -------------------------------------------------------------------------------- /04/Azure101/Azure101_MainForm.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoDelphiBooks/DelphiXEHandbook/HEAD/04/Azure101/Azure101_MainForm.dfm -------------------------------------------------------------------------------- /04/Azure101/Azure101_MainForm.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoDelphiBooks/DelphiXEHandbook/HEAD/04/Azure101/Azure101_MainForm.pas -------------------------------------------------------------------------------- /04/DelphiCloudDemo/AzureTableXmlInterfaces.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoDelphiBooks/DelphiXEHandbook/HEAD/04/DelphiCloudDemo/AzureTableXmlInterfaces.pas -------------------------------------------------------------------------------- /04/DelphiCloudDemo/CloudBrowse.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoDelphiBooks/DelphiXEHandbook/HEAD/04/DelphiCloudDemo/CloudBrowse.dpr -------------------------------------------------------------------------------- /04/DelphiCloudDemo/CloudBrowse.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoDelphiBooks/DelphiXEHandbook/HEAD/04/DelphiCloudDemo/CloudBrowse.dproj -------------------------------------------------------------------------------- /04/DelphiCloudDemo/CloudBrowse.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoDelphiBooks/DelphiXEHandbook/HEAD/04/DelphiCloudDemo/CloudBrowse.res -------------------------------------------------------------------------------- /04/DelphiCloudDemo/CloudBrowse_MainForm.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoDelphiBooks/DelphiXEHandbook/HEAD/04/DelphiCloudDemo/CloudBrowse_MainForm.dfm -------------------------------------------------------------------------------- /04/DelphiCloudDemo/CloudBrowse_MainForm.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoDelphiBooks/DelphiXEHandbook/HEAD/04/DelphiCloudDemo/CloudBrowse_MainForm.pas -------------------------------------------------------------------------------- /04/DelphiCloudDemo/CloudPublish.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoDelphiBooks/DelphiXEHandbook/HEAD/04/DelphiCloudDemo/CloudPublish.dpr -------------------------------------------------------------------------------- /04/DelphiCloudDemo/CloudPublish.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoDelphiBooks/DelphiXEHandbook/HEAD/04/DelphiCloudDemo/CloudPublish.dproj -------------------------------------------------------------------------------- /04/DelphiCloudDemo/CloudPublish.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoDelphiBooks/DelphiXEHandbook/HEAD/04/DelphiCloudDemo/CloudPublish.res -------------------------------------------------------------------------------- /04/DelphiCloudDemo/CloudPublish_MainForm.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoDelphiBooks/DelphiXEHandbook/HEAD/04/DelphiCloudDemo/CloudPublish_MainForm.dfm -------------------------------------------------------------------------------- /04/DelphiCloudDemo/CloudPublish_MainForm.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoDelphiBooks/DelphiXEHandbook/HEAD/04/DelphiCloudDemo/CloudPublish_MainForm.pas -------------------------------------------------------------------------------- /04/DelphiCloudDemo/biolife.cds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoDelphiBooks/DelphiXEHandbook/HEAD/04/DelphiCloudDemo/biolife.cds -------------------------------------------------------------------------------- /04/JsonMarshal/JsonMarshal.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoDelphiBooks/DelphiXEHandbook/HEAD/04/JsonMarshal/JsonMarshal.dpr -------------------------------------------------------------------------------- /04/JsonMarshal/JsonMarshal.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoDelphiBooks/DelphiXEHandbook/HEAD/04/JsonMarshal/JsonMarshal.dproj -------------------------------------------------------------------------------- /04/JsonMarshal/JsonMarshal.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoDelphiBooks/DelphiXEHandbook/HEAD/04/JsonMarshal/JsonMarshal.res -------------------------------------------------------------------------------- /04/JsonMarshal/JsonMarshal_MainForm.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoDelphiBooks/DelphiXEHandbook/HEAD/04/JsonMarshal/JsonMarshal_MainForm.dfm -------------------------------------------------------------------------------- /04/JsonMarshal/JsonMarshal_MainForm.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoDelphiBooks/DelphiXEHandbook/HEAD/04/JsonMarshal/JsonMarshal_MainForm.pas -------------------------------------------------------------------------------- /04/JsonTests/JsonTests_MainForm.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoDelphiBooks/DelphiXEHandbook/HEAD/04/JsonTests/JsonTests_MainForm.dfm -------------------------------------------------------------------------------- /04/JsonTests/JsonTests_MainForm.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoDelphiBooks/DelphiXEHandbook/HEAD/04/JsonTests/JsonTests_MainForm.pas -------------------------------------------------------------------------------- /04/JsonTests/jsonTests.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoDelphiBooks/DelphiXEHandbook/HEAD/04/JsonTests/jsonTests.dpr -------------------------------------------------------------------------------- /04/JsonTests/jsonTests.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoDelphiBooks/DelphiXEHandbook/HEAD/04/JsonTests/jsonTests.dproj -------------------------------------------------------------------------------- /04/JsonTests/jsonTests.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoDelphiBooks/DelphiXEHandbook/HEAD/04/JsonTests/jsonTests.res -------------------------------------------------------------------------------- /04/TranslateJson/BabelGoogle.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoDelphiBooks/DelphiXEHandbook/HEAD/04/TranslateJson/BabelGoogle.pas -------------------------------------------------------------------------------- /04/TranslateJson/Translate.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoDelphiBooks/DelphiXEHandbook/HEAD/04/TranslateJson/Translate.dpr -------------------------------------------------------------------------------- /04/TranslateJson/Translate.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoDelphiBooks/DelphiXEHandbook/HEAD/04/TranslateJson/Translate.dproj -------------------------------------------------------------------------------- /04/TranslateJson/Translate.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoDelphiBooks/DelphiXEHandbook/HEAD/04/TranslateJson/Translate.res -------------------------------------------------------------------------------- /04/TranslateJson/TranslateMainForm.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoDelphiBooks/DelphiXEHandbook/HEAD/04/TranslateJson/TranslateMainForm.dfm -------------------------------------------------------------------------------- /04/TranslateJson/TranslateMainForm.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoDelphiBooks/DelphiXEHandbook/HEAD/04/TranslateJson/TranslateMainForm.pas -------------------------------------------------------------------------------- /04/WebBrokerIndyDemo/WebIndyDemo.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoDelphiBooks/DelphiXEHandbook/HEAD/04/WebBrokerIndyDemo/WebIndyDemo.dpr -------------------------------------------------------------------------------- /04/WebBrokerIndyDemo/WebIndyDemo.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoDelphiBooks/DelphiXEHandbook/HEAD/04/WebBrokerIndyDemo/WebIndyDemo.dproj -------------------------------------------------------------------------------- /04/WebBrokerIndyDemo/WebIndyDemo.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoDelphiBooks/DelphiXEHandbook/HEAD/04/WebBrokerIndyDemo/WebIndyDemo.res -------------------------------------------------------------------------------- /04/WebBrokerIndyDemo/WebIndyDemo_MainForm.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoDelphiBooks/DelphiXEHandbook/HEAD/04/WebBrokerIndyDemo/WebIndyDemo_MainForm.dfm -------------------------------------------------------------------------------- /04/WebBrokerIndyDemo/WebIndyDemo_MainForm.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoDelphiBooks/DelphiXEHandbook/HEAD/04/WebBrokerIndyDemo/WebIndyDemo_MainForm.pas -------------------------------------------------------------------------------- /04/WebBrokerIndyDemo/WebIndyDemo_WebModule.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoDelphiBooks/DelphiXEHandbook/HEAD/04/WebBrokerIndyDemo/WebIndyDemo_WebModule.dfm -------------------------------------------------------------------------------- /04/WebBrokerIndyDemo/WebIndyDemo_WebModule.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoDelphiBooks/DelphiXEHandbook/HEAD/04/WebBrokerIndyDemo/WebIndyDemo_WebModule.pas -------------------------------------------------------------------------------- /04/WebBrokerIndyDemo/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoDelphiBooks/DelphiXEHandbook/HEAD/04/WebBrokerIndyDemo/css/main.css -------------------------------------------------------------------------------- /04/WebBrokerIndyDemo/images/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoDelphiBooks/DelphiXEHandbook/HEAD/04/WebBrokerIndyDemo/images/Thumbs.db -------------------------------------------------------------------------------- /04/WebBrokerIndyDemo/images/wintechlogo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoDelphiBooks/DelphiXEHandbook/HEAD/04/WebBrokerIndyDemo/images/wintechlogo.jpg -------------------------------------------------------------------------------- /04/WebBrokerIndyDemo/templates/Sample.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoDelphiBooks/DelphiXEHandbook/HEAD/04/WebBrokerIndyDemo/templates/Sample.html -------------------------------------------------------------------------------- /04/XmlIniTest/XmlIniTest.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoDelphiBooks/DelphiXEHandbook/HEAD/04/XmlIniTest/XmlIniTest.dpr -------------------------------------------------------------------------------- /04/XmlIniTest/XmlIniTest.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoDelphiBooks/DelphiXEHandbook/HEAD/04/XmlIniTest/XmlIniTest.dproj -------------------------------------------------------------------------------- /04/XmlIniTest/XmlIniTest.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoDelphiBooks/DelphiXEHandbook/HEAD/04/XmlIniTest/XmlIniTest.res -------------------------------------------------------------------------------- /04/XmlIniTest/XmlIniTest_MainForm.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoDelphiBooks/DelphiXEHandbook/HEAD/04/XmlIniTest/XmlIniTest_MainForm.dfm -------------------------------------------------------------------------------- /04/XmlIniTest/XmlIniTest_MainForm.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoDelphiBooks/DelphiXEHandbook/HEAD/04/XmlIniTest/XmlIniTest_MainForm.pas -------------------------------------------------------------------------------- /04/XmlIniTest/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoDelphiBooks/DelphiXEHandbook/HEAD/04/XmlIniTest/test.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoDelphiBooks/DelphiXEHandbook/HEAD/README.md -------------------------------------------------------------------------------- /epilogue/EverythingXEDemo/BabelGoogle.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoDelphiBooks/DelphiXEHandbook/HEAD/epilogue/EverythingXEDemo/BabelGoogle.pas -------------------------------------------------------------------------------- /epilogue/EverythingXEDemo/EverythingXEDemo.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoDelphiBooks/DelphiXEHandbook/HEAD/epilogue/EverythingXEDemo/EverythingXEDemo.dpr -------------------------------------------------------------------------------- /epilogue/EverythingXEDemo/EverythingXEDemo.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoDelphiBooks/DelphiXEHandbook/HEAD/epilogue/EverythingXEDemo/EverythingXEDemo.dproj -------------------------------------------------------------------------------- /epilogue/EverythingXEDemo/EverythingXEDemo.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoDelphiBooks/DelphiXEHandbook/HEAD/epilogue/EverythingXEDemo/EverythingXEDemo.res -------------------------------------------------------------------------------- /epilogue/EverythingXEDemo/EverythingXE_MainForm.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoDelphiBooks/DelphiXEHandbook/HEAD/epilogue/EverythingXEDemo/EverythingXE_MainForm.dfm -------------------------------------------------------------------------------- /epilogue/EverythingXEDemo/EverythingXE_MainForm.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoDelphiBooks/DelphiXEHandbook/HEAD/epilogue/EverythingXEDemo/EverythingXE_MainForm.pas -------------------------------------------------------------------------------- /epilogue/EverythingXEDemo/EverythingXE_PaintForm.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoDelphiBooks/DelphiXEHandbook/HEAD/epilogue/EverythingXEDemo/EverythingXE_PaintForm.dfm -------------------------------------------------------------------------------- /epilogue/EverythingXEDemo/EverythingXE_PaintForm.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoDelphiBooks/DelphiXEHandbook/HEAD/epilogue/EverythingXEDemo/EverythingXE_PaintForm.pas --------------------------------------------------------------------------------