├── .github └── FUNDING.yml ├── .gitignore ├── .gitmodules ├── 3rdParty-Samples ├── Atozed │ ├── 001-IntraWeb │ │ ├── IntraWebDemo.dpr │ │ ├── IntraWebDemo.dproj │ │ ├── ServerController.dfm │ │ ├── ServerController.pas │ │ ├── Unit1.dfm │ │ ├── Unit1.pas │ │ ├── UserSessionUnit.dfm │ │ └── UserSessionUnit.pas │ ├── 006-IntraWeb-AjaxAndJavaScript │ │ ├── IWAjaxAndJavaScript.dpr │ │ ├── IWAjaxAndJavaScript.dproj │ │ ├── ServerController.dfm │ │ ├── ServerController.pas │ │ ├── Unit1.dfm │ │ ├── Unit1.pas │ │ ├── UserSessionUnit.dfm │ │ └── UserSessionUnit.pas │ ├── AtozedSamplesGroup.groupproj │ └── README.md ├── CData │ ├── 003-CDataRSS │ │ ├── CDataRSSDemo.dpr │ │ ├── CDataRSSDemo.dproj │ │ ├── fMain.fmx │ │ ├── fMain.pas │ │ └── fMain.vlb │ ├── 004-MultiDBSample │ │ ├── MultiDBSample.dpr │ │ ├── MultiDBSample.dproj │ │ ├── fMain.fmx │ │ ├── fMain.pas │ │ └── fMain.vlb │ ├── CDataSamplesGroup.groupproj │ └── README.md ├── TMSSoftware │ ├── 013-TMSWebCore-HelloWorld │ │ ├── HelloWorld.dpr │ │ ├── HelloWorld.dproj │ │ ├── HelloWorld.html │ │ ├── PageWeb.dfm │ │ ├── PageWeb.html │ │ └── PageWeb.pas │ ├── 014-TMSWebCore-DisplayJSON │ │ ├── DisplayDelphiBooksList.html │ │ ├── PageWeb1.dfm │ │ ├── PageWeb1.html │ │ ├── PageWeb1.pas │ │ ├── TMSWebCoreDelphiBooksSample.dpr │ │ └── TMSWebCoreDelphiBooksSample.dproj │ ├── README.md │ └── TMSSoftwareSamplesGroup.groupproj └── uniGUI │ ├── 011-uniGUI │ ├── Main.dfm │ ├── Main.pas │ ├── MainModule.dfm │ ├── MainModule.pas │ ├── ServerModule.dfm │ ├── ServerModule.pas │ ├── UniGUISample.dpr │ └── UniGUISample.dproj │ ├── 012-uniGUI-Database │ ├── Main.dfm │ ├── Main.pas │ ├── MainModule.dfm │ ├── MainModule.pas │ ├── ServerModule.dfm │ ├── ServerModule.pas │ ├── UniGUIDatabaseSample.dpr │ ├── UniGUIDatabaseSample.dproj │ ├── Unit1.dfm │ ├── Unit1.pas │ ├── Unit2.dfm │ └── Unit2.pas │ ├── README.md │ └── uniGUISamplesGroup.groupproj ├── CONTRIBUTING.md ├── ChangeLog ├── 20230102-DeveloppeurPascal.md ├── 20230103-DeveloppeurPascal.md ├── 20230104-DeveloppeurPascal.md ├── 20230105-DeveloppeurPascal.md ├── 20230106-DeveloppeurPascal.md ├── 20230107-DeveloppeurPascal.md ├── 20230111-DeveloppeurPascal.md ├── 20230118-DeveloppeurPascal.md ├── 20230306-DeveloppeurPascal.md ├── 20230307-DeveloppeurPascal.md ├── 20230621-DeveloppeurPascal.md ├── 20230717-DeveloppeurPascal.md ├── 20230730-DeveloppeurPascal.md ├── 20230822-DeveloppeurPascal.md ├── 20231228-DeveloppeurPascal.md ├── 20240224-DeveloppeurPascal.md ├── 20240225-DeveloppeurPascal.md ├── 20240301-DeveloppeurPascal.md ├── 20240305-DeveloppeurPascal.md ├── 20240315-DeveloppeurPascal.md ├── 20240316-DeveloppeurPascal.md ├── 20240318-DeveloppeurPascal.md ├── 20240327-DeveloppeurPascal.md ├── 20240503-DeveloppeurPascal.md ├── 20240520-DeveloppeurPascal.md ├── 20250401-DeveloppeurPascal.md ├── 20250404-DeveloppeurPascal.md ├── 20250726-DeveloppeurPascal.md └── YYYYMMDD-User.md ├── ClientServer-Samples ├── 001-SOAP-Demo │ ├── Idemos.xml │ ├── SOAP_Demo.groupproj │ ├── client-ldemo │ │ ├── Idemos1.pas │ │ ├── SOAPClient.dpr │ │ ├── SOAPClient.dproj │ │ ├── fMain.fmx │ │ └── fMain.pas │ └── serveur │ │ ├── FormUnit1.fmx │ │ ├── FormUnit1.pas │ │ ├── SOAPServer.dpr │ │ ├── SOAPServer.dproj │ │ ├── WebModuleUnit1.dfm │ │ ├── WebModuleUnit1.pas │ │ ├── udemosImpl.pas │ │ └── udemosIntf.pas ├── 002-AppTetheringDemo │ ├── AppTetheringSample.groupproj │ ├── app-principale │ │ ├── CoursesDB.dpr │ │ ├── CoursesDB.dproj │ │ ├── fMain.fmx │ │ ├── fMain.pas │ │ └── fMain.vlb │ └── app-secondaire │ │ ├── ShowSelectedItem.dpr │ │ ├── ShowSelectedItem.dproj │ │ ├── fMain.fmx │ │ └── fMain.pas ├── 003-EnvoiPhotosParAppTethering │ ├── PriseDePhotos-FMX │ │ ├── AndroidManifest.template.xml │ │ ├── TakeAndSendPhotoWithAppTethering.dpr │ │ ├── TakeAndSendPhotoWithAppTethering.dproj │ │ ├── fMain.fmx │ │ └── fMain.pas │ ├── RecoitPhotos-FMX │ │ ├── ReceivePhotoFromAppTetheringFMX.dpr │ │ ├── ReceivePhotoFromAppTetheringFMX.dproj │ │ ├── fMain.fmx │ │ └── fMain.pas │ ├── RecoitPhotos-VCL │ │ ├── ReceivePhotoFromAppTetheringVCL.dpr │ │ ├── ReceivePhotoFromAppTetheringVCL.dproj │ │ ├── fMain.dfm │ │ └── fMain.pas │ ├── SendAndReceivePhotoWithAppTethering.groupproj │ ├── uAppTetheringSettings.pas │ ├── uDMAppTetheringReceiver.dfm │ ├── uDMAppTetheringReceiver.pas │ ├── uDMAppTetheringSender.dfm │ └── uDMAppTetheringSender.pas ├── 004-EnvoiPhotosParSocket │ ├── PriseDePhoto-FMX │ │ ├── PictureSender_FMX.dpr │ │ ├── PictureSender_FMX.dproj │ │ ├── fMain.fmx │ │ └── fMain.pas │ ├── RecoitPhoto-FMX │ │ ├── PictureReceiver_FMX.dpr │ │ ├── PictureReceiver_FMX.dproj │ │ ├── fMain.fmx │ │ └── fMain.pas │ ├── RecoitPhoto-VCL │ │ ├── PictureReceiver_VCL.dpr │ │ ├── PictureReceiver_VCL.dproj │ │ ├── fMain.dfm │ │ └── fMain.pas │ ├── SendAndReceiveAPictureWithSockets.groupproj │ ├── SendPictureOnANetworkWithSockets.smgdat │ └── SendPicturesOnANetworkWithSockets.pas └── 005-SetupAMobileAppWithQRCode │ ├── QRCodeGenerator-VCL │ ├── QRCodeGenerator_VCL.dpr │ ├── QRCodeGenerator_VCL.dproj │ ├── fMain.dfm │ └── fMain.pas │ ├── QRCodeReader-FMX │ ├── AndroidManifest.template.xml │ ├── QRCodeReader_FMX.dpr │ ├── QRCodeReader_FMX.dproj │ ├── fMain.fmx │ └── fMain.pas │ ├── QRCodeReaderAndWriter.groupproj │ └── uConsts.pas ├── Console-Samples ├── 001-HelloWorld │ ├── HelloWorldConsole.dpr │ └── HelloWorldConsole.dproj ├── 002-Menu │ ├── ConsoleMenu.dpr │ └── ConsoleMenu.dproj ├── 003-Recursivity │ ├── Recursivity.dpr │ └── Recursivity.dproj ├── 004-Loops │ ├── ForLoopSample.dpr │ └── ForLoopSample.dproj ├── 005-Structure-Prog-Console │ ├── StructureProgSample.dpr │ ├── StructureProgSample.dproj │ └── Unit1.pas ├── 006-ListOfthingsStoredInFile │ ├── ListOfThings.dpr │ ├── ListOfThings.dproj │ ├── uDatas.pas │ └── uMenu.pas ├── 007-ListOfthingsStoredInDB │ ├── ListInDB.dpr │ ├── ListInDB.dproj │ ├── uDatas.pas │ └── uMenu.pas ├── 008-Generic-TList-sort │ ├── TListSortSample.dpr │ └── TListSortSample.dproj ├── 009-TypeInferenceOnADecimalValue │ ├── TypeInferenceOnADecimalValueSample.dpr │ └── TypeInferenceOnADecimalValueSample.dproj ├── 010-StringComparison │ ├── StringComparison.dpr │ ├── StringComparison.dproj │ ├── StringComparisonTurcFrench-01.png │ ├── StringComparisonTurcFrench-02.png │ └── ToLower-ToLowerInvariant-ChatGPT-20250401.html └── 011-Goto-Beurk │ ├── GotoSample.dpr │ └── GotoSample.dproj ├── CopyrightPascalProjects.c2pp ├── DelphiSampleProjects.chm ├── FireDAC-Samples ├── 001-SQLite │ ├── FireDACSQLiteSample.dpr │ ├── FireDACSQLiteSample.dproj │ ├── fMain.fmx │ ├── fMain.pas │ └── fMain.vlb ├── 002-Interbase │ ├── InterbaseSample.dpr │ ├── InterbaseSample.dproj │ ├── fMain.dfm │ └── fMain.pas └── 005-SQLite-Blobs │ ├── SQLiteBlobsSample.dpr │ ├── SQLiteBlobsSample.dproj │ ├── fMain.fmx │ ├── fMain.pas │ └── uSQL.pas ├── FireMonkey-Samples ├── 001-HelloWorld │ ├── HelloWorldFireMonkey.dpr │ ├── HelloWorldFireMonkey.dproj │ ├── fMain.fmx │ └── fMain.pas ├── 002-UpperLowerCaseWithTransparency │ ├── UpperAndLowerCase.dpr │ ├── UpperAndLowerCase.dproj │ ├── fMain.fmx │ └── fMain.pas ├── 003-PopupMenuButton │ ├── PopupMenuOnButton.dpr │ ├── PopupMenuOnButton.dproj │ ├── fMain.fmx │ └── fMain.pas ├── 004-LiveBindingsAndPrototypeDatabase │ ├── MasterDetail.fmx │ ├── MasterDetail.ico │ ├── MasterDetail.pas │ ├── MasterDetail.vlb │ ├── MasterDetailApplication.dpr │ └── MasterDetailApplication.dproj ├── 005-FMXProjectStructure │ ├── FMXProjectStructure.dpr │ ├── FMXProjectStructure.dproj │ ├── fMain.fmx │ └── fMain.pas ├── 006-FMXStylesAnd3D │ ├── FMXStylesAnd3D.dpr │ ├── FMXStylesAnd3D.dproj │ ├── fMain.fmx │ └── fMain.pas ├── 007-EffectsAndAnimations │ ├── EffectsAndAnimations.dpr │ ├── EffectsAndAnimations.dproj │ ├── fMain.fmx │ └── fMain.pas ├── 008-ListOfthingsStoredInBdD │ ├── ListOfthingsStoredInBdD.dpr │ ├── ListOfthingsStoredInBdD.dproj │ ├── fMain.fmx │ ├── fMain.pas │ ├── fMain.vlb │ ├── uDM.dfm │ ├── uDM.pas │ └── uDM.vlb ├── 009-Android-Permissions-GPS │ ├── DemoPermissionsAndroid.dpr │ ├── DemoPermissionsAndroid.dproj │ ├── uAccueil.fmx │ └── uAccueil.pas ├── 010-Signature │ ├── SignatureFMXDemo.dpr │ ├── SignatureFMXDemo.dproj │ ├── fMain.fmx │ ├── fMain.pas │ ├── uCADSignatureFMX.fmx │ └── uCADSignatureFMX.pas ├── 011-MultiLevelList │ ├── README.md │ ├── assets │ │ ├── README.md │ │ ├── apples-on-the-table.jpg │ │ ├── slice-ripe-lemon-citrus-fruit-on-white.jpg │ │ └── tomato-slice-isolated-top-view.jpg │ ├── categories.sql │ ├── src │ │ ├── ListeArborescence.dpr │ │ ├── ListeArborescence.dproj │ │ ├── ParcourtDeLaListe.dpr │ │ ├── ParcourtDeLaListe.dproj │ │ ├── _ListeArborescenteGroup.groupproj │ │ ├── categories-de-dev.db │ │ ├── fChoisirUnTarif.fmx │ │ ├── fChoisirUnTarif.pas │ │ ├── fMain.fmx │ │ ├── fMain.pas │ │ ├── fMain.vlb │ │ ├── uConst.pas │ │ ├── uDBCategories.dfm │ │ ├── uDBCategories.pas │ │ ├── uDBCategories.vlb │ │ ├── uDBPourAffichage.dfm │ │ ├── uDBPourAffichage.pas │ │ ├── uDownloadAndGetFiles.pas │ │ ├── uFichiersEtDossiers.pas │ │ ├── uMainPourAffichage.fmx │ │ └── uMainPourAffichage.pas │ └── web │ │ ├── Categories.db │ │ ├── README.md │ │ ├── apples-on-the-table.jpg │ │ ├── slice-ripe-lemon-citrus-fruit-on-white.jpg │ │ └── tomato-slice-isolated-top-view.jpg ├── 012-ShowHideScreensAsLayout │ ├── ShowHideScreenAsLayout.dpr │ ├── ShowHideScreenAsLayout.dproj │ ├── fMain.fmx │ └── fMain.pas ├── 013-BitmapScale │ ├── BitmapScaleTests.dpr │ ├── BitmapScaleTests.dproj │ ├── fMain.fmx │ └── fMain.pas ├── 014-DialogBox │ ├── DialogFMXSample.dpr │ ├── DialogFMXSample.dproj │ ├── README.md │ ├── fFMX.fmx │ └── fFMX.pas ├── 015-FolderOrFileSelect │ ├── FolderOrFileSelect.dpr │ ├── FolderOrFileSelect.dproj │ ├── FolderOrFileSelectWithFrame.dpr │ ├── FolderOrFileSelectWithFrame.dproj │ ├── LISEZMOI.md │ ├── README.md │ ├── SelectFilesSamples.groupproj │ ├── cadFileSelectionFrame.fmx │ ├── cadFileSelectionFrame.pas │ ├── fMain.fmx │ ├── fMain.pas │ ├── fMainBis.fmx │ ├── fMainBis.pas │ ├── udmAdobeStock_13945297.dfm │ └── udmAdobeStock_13945297.pas ├── 016-TLabel_Shortcut-and-Tabulation │ ├── TLabel_Shortcut_and_Tabulation.dpr │ ├── TLabel_Shortcut_and_Tabulation.dproj │ ├── Unit1.fmx │ └── Unit1.pas ├── 017-TBiometricAuth │ ├── TBiometricAuthSample.dpr │ ├── TBiometricAuthSample.dproj │ ├── Unit1.fmx │ └── Unit1.pas ├── 018-TFlowLayout │ ├── README.md │ ├── TFlowLayoutSample.dpr │ ├── TFlowLayoutSample.dproj │ ├── Unit1.fmx │ └── Unit1.pas ├── 019-TScaledLayout │ ├── README.md │ ├── ScaledLayoutSample.dpr │ ├── ScaledLayoutSample.dproj │ ├── Unit1.fmx │ └── Unit1.pas ├── 020-LogMainFormEvents │ ├── LogMainFormEvents.dpr │ ├── LogMainFormEvents.dproj │ ├── fMain.fmx │ └── fMain.pas ├── 021-ContactSheet │ ├── ContactSheetFMXSample.dpr │ ├── ContactSheetFMXSample.dproj │ ├── fMain.fmx │ └── fMain.pas ├── 022-ShowSVGInAFolderWithSkia4Delphi │ ├── ShowSVGInAFolderWithSkia4Delphi.dpr │ ├── ShowSVGInAFolderWithSkia4Delphi.dproj │ ├── Unit1.fmx │ └── Unit1.pas ├── 023-CalendarInPopupSample │ ├── CalendarInPopupSample.dpr │ ├── CalendarInPopupSample.dproj │ ├── fMain.fmx │ └── fMain.pas ├── 024-DownloadAndOpenAPDFFile │ ├── DownloadAndOpenAPDFFile.dpr │ ├── DownloadAndOpenAPDFFile.dproj │ ├── fMain.fmx │ └── fMain.pas ├── 025-CreateAndFindComponents │ ├── PlayWithComponents.dpr │ ├── PlayWithComponents.dproj │ ├── Unit1.fmx │ └── Unit1.pas ├── 026-DragAndDrop │ ├── FMXDragAndDropSample.dpr │ ├── FMXDragAndDropSample.dproj │ ├── fMain.fmx │ └── fMain.pas ├── 027-StylesAndEXESize │ ├── StylesAndEXESizeSample.dpr │ ├── StylesAndEXESizeSample.dproj │ ├── fMain.fmx │ ├── fMain.pas │ ├── uDMStyleAndroid.dfm │ ├── uDMStyleAndroid.pas │ ├── uDMStyleWindows.dfm │ └── uDMStyleWindows.pas ├── 028-TParallel-LoopState-Break │ ├── ParallelFor.dpr │ ├── ParallelFor.dproj │ ├── UnitFormMain.fmx │ └── UnitFormMain.pas ├── 029-LoadImageFromURLWithUILock │ ├── LoadImageFromURLWithUILockSample.dpr │ ├── LoadImageFromURLWithUILockSample.dproj │ ├── Unit1.fmx │ └── Unit1.pas └── 030-MultiFormOnMobile │ ├── MultiFormOnMobile.dpr │ ├── MultiFormOnMobile.dproj │ ├── fMain.fmx │ ├── fMain.pas │ ├── fSecondForm.fmx │ ├── fSecondForm.pas │ ├── fThirdWithCallback.fmx │ └── fThirdWithCallback.pas ├── IoT-Samples ├── 001-BeaconDetect │ ├── BeaconDetector.dpr │ ├── BeaconDetector.dproj │ ├── fMain.fmx │ └── fMain.pas ├── 002-BeaconFence │ ├── BeaconFenceDemo.dpr │ ├── BeaconFenceDemo.dproj │ ├── fMain.fmx │ └── fMain.pas ├── 003-SearchBTDevices │ ├── SearchBTDevices.dpr │ ├── SearchBTDevices.dproj │ ├── fMain.fmx │ └── fMain.pas ├── 004-Arduino-Mastermind │ ├── MastermindArduino.dpr │ ├── MastermindArduino.dproj │ ├── fMain.dfm │ ├── fMain.pas │ └── keypad.owarduino ├── 005-Arduino-Joystick │ ├── JoystickViewer.dpr │ ├── JoystickViewer.dproj │ ├── Unit1.owd │ ├── fMain.fmx │ ├── fMain.pas │ ├── fMain.vlb │ └── joystick.owarduino └── 006-ShowBeaconInfos │ ├── ShowBeaconCharacteristics.dpr │ ├── ShowBeaconCharacteristics.dproj │ ├── fMain.fmx │ └── fMain.pas ├── LICENSE ├── LISEZMOI.md ├── Network-Samples ├── 01-TSocket │ ├── ClientServerSocketSample.dpr │ ├── ClientServerSocketSample.dproj │ ├── README.md │ ├── fMain.fmx │ └── fMain.pas └── 02-TURLStream │ ├── TURLStreamSample.dpr │ ├── TURLStreamSample.dproj │ ├── Unit1.fmx │ └── Unit1.pas ├── OtherDelphiSampleRepositories.md ├── README.md ├── SampleProjectGroup.diproj ├── SampleProjectGroup.groupproj ├── VCL-Samples ├── 001-HelloWorld │ ├── HelloWorldVCL.dpr │ ├── HelloWorldVCL.dproj │ ├── fMain.dfm │ └── fMain.pas ├── 002-LiveBindings │ ├── LiveBindingsCalc.dpr │ ├── LiveBindingsCalc.dproj │ ├── fMain.dfm │ ├── fMain.pas │ └── fMain.vlb ├── 003-MDI │ ├── About.dfm │ ├── ChildWin.dfm │ ├── ChildWin.pas │ ├── MDIAPP.ICO │ ├── MDIAPP.bdsproj │ ├── MDIAPP.dpr │ ├── MDIAPP.dproj │ ├── Main.dfm │ ├── Main.pas │ └── about.pas ├── 004-SDI-and-Dialog-Box │ ├── SDIWithDialogBox.dpr │ ├── SDIWithDialogBox.dproj │ ├── fDialogBox.dfm │ ├── fDialogBox.pas │ ├── fMain.dfm │ └── fMain.pas ├── 005-VCLProjectStructure │ ├── VCLProjectStructure.dpr │ ├── VCLProjectStructure.dproj │ ├── fMain.dfm │ └── fMain.pas ├── 006-LiveBindingsAndVCLStyles │ ├── LiveBindingsAndVCLStyles.dpr │ ├── LiveBindingsAndVCLStyles.dproj │ ├── fMain.dfm │ ├── fMain.pas │ └── fMain.vlb ├── 007-ListOfthingsStoredInJSON │ ├── ListOfthingsStoredInJSON.dpr │ ├── ListOfthingsStoredInJSON.dproj │ ├── fItem.dfm │ ├── fItem.pas │ ├── fMain.dfm │ └── fMain.pas ├── 008-EditToListboxSample │ ├── EditToListBoxSample.dpr │ ├── EditToListBoxSample.dproj │ ├── fMain.fmx │ └── fMain.pas ├── 009-ImageListHighDPI │ ├── ImageListHighDPI.groupproj │ ├── TImageList │ │ ├── ImageList.dpr │ │ ├── ImageList.dproj │ │ ├── fAccueil.dfm │ │ ├── fAccueil.pas │ │ ├── uDMImages.dfm │ │ └── uDMImages.pas │ ├── TVirtualImageList │ │ ├── VirtualImageList.dpr │ │ ├── VirtualImageList.dproj │ │ ├── fAccueil.dfm │ │ ├── fAccueil.pas │ │ ├── uDMImages.dfm │ │ └── uDMImages.pas │ └── images-buttons │ │ ├── 128x128 │ │ ├── 198.png │ │ ├── 199.png │ │ ├── 200.png │ │ └── 201.png │ │ ├── 16x16 │ │ ├── 198.png │ │ ├── 199.png │ │ ├── 200.png │ │ └── 201.png │ │ └── 64x64 │ │ ├── 198.png │ │ ├── 199.png │ │ ├── 200.png │ │ └── 201.png ├── 010-DialogBox │ ├── DialogVCLSample.dpr │ ├── DialogVCLSample.dproj │ ├── README.md │ ├── fVCL.dfm │ └── fVCL.pas ├── 011-TNumberBox-MinValue │ ├── TNumberBox_MinValue.dpr │ ├── TNumberBox_MinValue.dproj │ ├── Unit1.dfm │ └── Unit1.pas ├── 012-TControlList-MultiSelect │ ├── TControlList_MultiSelect.dpr │ ├── TControlList_MultiSelect.dproj │ ├── Unit1.dfm │ ├── Unit1.pas │ └── Unit1.vlb ├── 013-TTouchKeyboard-Style │ ├── TTouchKeyboard_with_Style.dpr │ ├── TTouchKeyboard_with_Style.dproj │ ├── Unit1.dfm │ ├── Unit1.pas │ ├── Unit2.dfm │ ├── Unit2.pas │ ├── Unit3.dfm │ └── Unit3.pas ├── 014-TContolList-Biolife-CDS │ ├── README.md │ ├── TControlListBiolife.dpr │ ├── TControlListBiolife.dproj │ ├── Unit1.dfm │ ├── Unit1.pas │ └── Unit1.vlb ├── 015-MVC-En-Delphi │ ├── DelphiMVCSample.dpr │ ├── DelphiMVCSample.dproj │ ├── Unit1.dfm │ ├── Unit1.pas │ ├── Unit1.vlb │ ├── Unit2.dfm │ ├── Unit2.pas │ ├── Unit3.pas │ ├── Unit4.dfm │ └── Unit4.pas ├── 016-Images-PNG-Transparentes │ ├── PNGWithAlphaLayerSample.dpr │ ├── PNGWithAlphaLayerSample.dproj │ ├── Unit1.dfm │ └── Unit1.pas └── 017-ContactSheet │ ├── ContactSheetVCLSample.dpr │ ├── ContactSheetVCLSample.dproj │ ├── fMain.dfm │ └── fMain.pas ├── Web-Samples ├── 002-WebBroker │ ├── FormUnit1.fmx │ ├── FormUnit1.pas │ ├── WebBrokerDemo.dpr │ ├── WebBrokerDemo.dproj │ ├── WebModuleUnit1.dfm │ └── WebModuleUnit1.pas ├── 003-Indy-FTP │ ├── DisplayFTPFileList.dpr │ ├── DisplayFTPFileList.dproj │ ├── fMain.fmx │ └── fMain.pas ├── 004-REST-API │ ├── FrequentationMediathequePoitierAPIViewer.dpr │ ├── FrequentationMediathequePoitierAPIViewer.dproj │ ├── RESTDebugger.json │ ├── fMain.fmx │ ├── fMain.pas │ └── fMain.vlb ├── 005-DisplayPhotosFromURL │ ├── delphi │ │ ├── DisplayImagesFromURL.dpr │ │ ├── DisplayImagesFromURL.dproj │ │ ├── fMain.fmx │ │ └── fMain.pas │ └── php │ │ ├── images │ │ └── readme.txt │ │ └── index.php ├── 007-REST-API-SNCF │ ├── RESTClientSNCF.dpr │ ├── RESTClientSNCF.dproj │ ├── fMain.fmx │ ├── fMain.pas │ ├── fMain.vlb │ └── sncf-pianos-en-gare.json ├── 008-DataSnap-RPC-REST │ ├── DataSnapRPCServer.dpr │ ├── DataSnapRPCServer.dproj │ ├── FormUnit1.fmx │ ├── FormUnit1.pas │ ├── ServerMethodsUnit1.pas │ ├── WebModuleUnit1.dfm │ ├── WebModuleUnit1.pas │ ├── css │ │ ├── main.css │ │ └── serverfunctioninvoker.css │ ├── images │ │ ├── collapse.png │ │ └── expand.png │ ├── js │ │ ├── base64-min.js │ │ ├── base64.js │ │ ├── callbackframework-min.js │ │ ├── callbackframework.js │ │ ├── connection.js │ │ ├── json2-min.js │ │ ├── json2.js │ │ ├── serverfunctionexecutor-min.js │ │ ├── serverfunctionexecutor.js │ │ ├── serverfunctioninvoker.js │ │ └── serverfunctions.js │ └── templates │ │ ├── reversestring.html │ │ └── serverfunctioninvoker.html ├── 009-WebBroker-DumpRequest │ ├── DumpRequest.dpr │ ├── DumpRequest.dproj │ ├── FormUnit1.fmx │ ├── FormUnit1.pas │ ├── WebModuleUnit1.dfm │ └── WebModuleUnit1.pas └── 010-Indy-WhoisClient │ ├── WhoisClient.dpr │ ├── WhoisClient.dproj │ ├── fMain.fmx │ └── fMain.pas ├── _LiveAndOnlinePresentationsProjectsGroups ├── 20180228-TourDeFranceBarnsten-BriveLaGaillarde-France.groupproj ├── 20180327-TourDeFranceBarnsten-Rennes-France.groupproj ├── 20180329-TourDeFranceBarnsten-Paris-France.groupproj ├── 20180607-TourDeFranceBarnsten-Lyon-France.groupproj └── 20180622-TourDeFranceBarnsten-Strasbourg-France.groupproj └── docs ├── BeaconDetector.html ├── BeaconFenceDemo.html ├── BitmapScaleTests.html ├── CDataRSSDemo.html ├── CHILDWIN.TMDIChild.FormClose.html ├── CHILDWIN.TMDIChild.Memo1.html ├── CHILDWIN.TMDIChild.html ├── CHILDWIN.html ├── CalendarInPopupSample.html ├── ClientServerSocketSample.html ├── ConsoleMenu.html ├── ContactSheetFMXSample.html ├── ContactSheetVCLSample.html ├── CoursesDB.html ├── DataSnapRPCServer.html ├── Delphi-Sample-Projects.html ├── DelphiMVCSample.html ├── DelphiSampleProjects.hhc ├── DelphiSampleProjects.hhp ├── DelphiZXIngQRCode.T2DBooleanArray.html ├── DelphiZXIngQRCode.TDelphiZXingQRCode.Columns.html ├── DelphiZXIngQRCode.TDelphiZXingQRCode.Create.html ├── DelphiZXIngQRCode.TDelphiZXingQRCode.Data.html ├── DelphiZXIngQRCode.TDelphiZXingQRCode.Encoding.html ├── DelphiZXIngQRCode.TDelphiZXingQRCode.FColumns.html ├── DelphiZXIngQRCode.TDelphiZXingQRCode.FData.html ├── DelphiZXIngQRCode.TDelphiZXingQRCode.FElements.html ├── DelphiZXIngQRCode.TDelphiZXingQRCode.FEncoding.html ├── DelphiZXIngQRCode.TDelphiZXingQRCode.FQuietZone.html ├── DelphiZXIngQRCode.TDelphiZXingQRCode.FRows.html ├── DelphiZXIngQRCode.TDelphiZXingQRCode.GetIsBlack.html ├── DelphiZXIngQRCode.TDelphiZXingQRCode.IsBlack.html ├── DelphiZXIngQRCode.TDelphiZXingQRCode.QuietZone.html ├── DelphiZXIngQRCode.TDelphiZXingQRCode.Rows.html ├── DelphiZXIngQRCode.TDelphiZXingQRCode.SetData.html ├── DelphiZXIngQRCode.TDelphiZXingQRCode.SetEncoding.html ├── DelphiZXIngQRCode.TDelphiZXingQRCode.SetQuietZone.html ├── DelphiZXIngQRCode.TDelphiZXingQRCode.Update.html ├── DelphiZXIngQRCode.TDelphiZXingQRCode.html ├── DelphiZXIngQRCode.TQRCodeEncoding.html ├── DelphiZXIngQRCode.TQRCodeEncoding.qrAlphanumeric.html ├── DelphiZXIngQRCode.TQRCodeEncoding.qrAuto.html ├── DelphiZXIngQRCode.TQRCodeEncoding.qrISO88591.html ├── DelphiZXIngQRCode.TQRCodeEncoding.qrNumeric.html ├── DelphiZXIngQRCode.TQRCodeEncoding.qrUTF8BOM.html ├── DelphiZXIngQRCode.TQRCodeEncoding.qrUTF8NoBOM.html ├── DelphiZXIngQRCode.html ├── DelphiZXIngQRCode.qrAlphanumeric.html ├── DelphiZXIngQRCode.qrAuto.html ├── DelphiZXIngQRCode.qrISO88591.html ├── DelphiZXIngQRCode.qrNumeric.html ├── DelphiZXIngQRCode.qrUTF8BOM.html ├── DelphiZXIngQRCode.qrUTF8NoBOM.html ├── DemoPermissionsAndroid.html ├── DialogFMXSample.html ├── DialogVCLSample.html ├── DisplayFTPFileList.html ├── DisplayImagesFromURL.html ├── DownloadAndOpenAPDFFile.html ├── DumpRequest.html ├── EditToListBoxSample.html ├── EffectsAndAnimations.html ├── FMXDragAndDropSample.html ├── FMXProjectStructure.html ├── FMXStylesAnd3D.html ├── FireDACSQLiteSample.html ├── FolderOrFileSelect.html ├── FolderOrFileSelectWithFrame.html ├── ForLoopSample.html ├── FormUnit1.Form1.html ├── FormUnit1.TForm1.ButtonOpenBrowser.html ├── FormUnit1.TForm1.ButtonOpenBrowserClick.html ├── FormUnit1.TForm1.ButtonStart.html ├── FormUnit1.TForm1.ButtonStartClick.html ├── FormUnit1.TForm1.ButtonStop.html ├── FormUnit1.TForm1.ButtonStopClick.html ├── FormUnit1.TForm1.EditPort.html ├── FormUnit1.TForm1.FormCreate.html ├── FormUnit1.TForm1.Label1.html ├── FormUnit1.TForm1.html ├── FormUnit1.html ├── FrequentationMediathequePoitierAPIViewer.html ├── GotoSample.html ├── HelloWorld.html ├── HelloWorldConsole.html ├── HelloWorldFireMonkey.html ├── HelloWorldVCL.html ├── IWAjaxAndJavaScript.html ├── Idemos1.GetIdemos.html ├── Idemos1.Idemos.echoDouble.html ├── Idemos1.Idemos.echoDoubleArray.html ├── Idemos1.Idemos.echoEnum.html ├── Idemos1.Idemos.echoMyEmployee.html ├── Idemos1.Idemos.html ├── Idemos1.TDoubleArray.html ├── Idemos1.TEnumTest.etAFew.html ├── Idemos1.TEnumTest.etAlot.html ├── Idemos1.TEnumTest.etNone.html ├── Idemos1.TEnumTest.etSome.html ├── Idemos1.TEnumTest.html ├── Idemos1.TMyEmployee.FirstName.html ├── Idemos1.TMyEmployee.LastName.html ├── Idemos1.TMyEmployee.Salary.html ├── Idemos1.TMyEmployee.html ├── Idemos1.html ├── ImageList.html ├── InterbaseSample.html ├── IntraWebDemo.html ├── JoystickViewer.html ├── ListInDB.html ├── ListOfThings.html ├── ListOfthingsStoredInBdD.html ├── ListOfthingsStoredInJSON.html ├── ListeArborescence.html ├── LiveBindingsAndVCLStyles.html ├── LiveBindingsCalc.html ├── LoadImageFromURLWithUILockSample.html ├── LogMainFormEvents.html ├── MAIN.TMainForm.ActionList1.html ├── MAIN.TMainForm.CopyItem.html ├── MAIN.TMainForm.CutItem.html ├── MAIN.TMainForm.Edit1.html ├── MAIN.TMainForm.EditCopy1.html ├── MAIN.TMainForm.EditCut1.html ├── MAIN.TMainForm.EditPaste1.html ├── MAIN.TMainForm.File1.html ├── MAIN.TMainForm.FileClose1.html ├── MAIN.TMainForm.FileCloseItem.html ├── MAIN.TMainForm.FileExit1.html ├── MAIN.TMainForm.FileExit1Execute.html ├── MAIN.TMainForm.FileExitItem.html ├── MAIN.TMainForm.FileNew1.html ├── MAIN.TMainForm.FileNew1Execute.html ├── MAIN.TMainForm.FileNewItem.html ├── MAIN.TMainForm.FileOpen1.html ├── MAIN.TMainForm.FileOpen1Execute.html ├── MAIN.TMainForm.FileOpenItem.html ├── MAIN.TMainForm.FileSave1.html ├── MAIN.TMainForm.FileSaveAs1.html ├── MAIN.TMainForm.FileSaveAsItem.html ├── MAIN.TMainForm.FileSaveItem.html ├── MAIN.TMainForm.Help1.html ├── MAIN.TMainForm.HelpAbout1.html ├── MAIN.TMainForm.HelpAbout1Execute.html ├── MAIN.TMainForm.HelpAboutItem.html ├── MAIN.TMainForm.ImageList1.html ├── MAIN.TMainForm.MainMenu1.html ├── MAIN.TMainForm.N1.html ├── MAIN.TMainForm.OpenDialog.html ├── MAIN.TMainForm.PasteItem.html ├── MAIN.TMainForm.StatusBar.html ├── MAIN.TMainForm.ToolBar2.html ├── MAIN.TMainForm.ToolButton1.html ├── MAIN.TMainForm.ToolButton10.html ├── MAIN.TMainForm.ToolButton11.html ├── MAIN.TMainForm.ToolButton2.html ├── MAIN.TMainForm.ToolButton3.html ├── MAIN.TMainForm.ToolButton4.html ├── MAIN.TMainForm.ToolButton5.html ├── MAIN.TMainForm.ToolButton6.html ├── MAIN.TMainForm.ToolButton7.html ├── MAIN.TMainForm.ToolButton8.html ├── MAIN.TMainForm.ToolButton9.html ├── MAIN.TMainForm.Window1.html ├── MAIN.TMainForm.WindowArrangeAll1.html ├── MAIN.TMainForm.WindowArrangeItem.html ├── MAIN.TMainForm.WindowCascade1.html ├── MAIN.TMainForm.WindowCascadeItem.html ├── MAIN.TMainForm.WindowMinimizeAll1.html ├── MAIN.TMainForm.WindowMinimizeItem.html ├── MAIN.TMainForm.WindowTileHorizontal1.html ├── MAIN.TMainForm.WindowTileItem.html ├── MAIN.TMainForm.WindowTileItem2.html ├── MAIN.TMainForm.WindowTileVertical1.html ├── MDIAPP.html ├── Main.TMainForm.UniBitBtn1.html ├── Main.TMainForm.UniBitBtn1Click.html ├── Main.TMainForm.UniButton1.html ├── Main.TMainForm.UniButton1Click.html ├── Main.TMainForm.UniDBGrid1.html ├── Main.TMainForm.UniDBNavigator1.html ├── Main.TMainForm.UniEdit1.html ├── Main.TMainForm.UniFormCreate.html ├── Main.TMainForm.UniLabel1.html ├── MainModule.TUniMainModule.html ├── MainModule.UniMainModule.html ├── MainModule.html ├── MasterDetail.MasterDetailForm.html ├── MasterDetail.TMasterDetailForm.ActionList1.html ├── MasterDetail.TMasterDetailForm.BindingsList1.html ├── MasterDetail.TMasterDetailForm.DetailLabel.html ├── MasterDetail.TMasterDetailForm.DetailToolbar.html ├── MasterDetail.TMasterDetailForm.Layout1.html ├── MasterDetail.TMasterDetailForm.Layout2.html ├── MasterDetail.TMasterDetailForm.Layout3.html ├── MasterDetail.TMasterDetailForm.LinkControlToField1.html ├── MasterDetail.TMasterDetailForm.LinkListControlToField1.html ├── MasterDetail.TMasterDetailForm.LinkPropertyToFieldBitmap.html ├── MasterDetail.TMasterDetailForm.LinkPropertyToFieldText.html ├── MasterDetail.TMasterDetailForm.LinkPropertyToFieldText2.html ├── MasterDetail.TMasterDetailForm.ListView1.html ├── MasterDetail.TMasterDetailForm.ListView1ItemClick.html ├── MasterDetail.TMasterDetailForm.LiveBindingsBindNavigateNext1.html ├── MasterDetail.TMasterDetailForm.LiveBindingsBindNavigatePrior1.html ├── MasterDetail.TMasterDetailForm.MasterButton.html ├── MasterDetail.TMasterDetailForm.MasterLabel.html ├── MasterDetail.TMasterDetailForm.MasterToolbar.html ├── MasterDetail.TMasterDetailForm.Memo1.html ├── MasterDetail.TMasterDetailForm.MultiView1.html ├── MasterDetail.TMasterDetailForm.PrototypeBindSource1.html ├── MasterDetail.TMasterDetailForm.btnDown.html ├── MasterDetail.TMasterDetailForm.btnUp.html ├── MasterDetail.TMasterDetailForm.html ├── MasterDetail.TMasterDetailForm.imgContact.html ├── MasterDetail.TMasterDetailForm.lblName.html ├── MasterDetail.TMasterDetailForm.lblTitle.html ├── MasterDetail.html ├── MasterDetailApplication.html ├── MastermindArduino.html ├── MultiDBSample.html ├── MultiFormOnMobile.html ├── Olf.FMX.Streams.LoadBitmapFromStream.html ├── Olf.FMX.Streams.SaveBitmapToStream.html ├── Olf.FMX.Streams.html ├── Olf.Net.Socket.Messaging.IOlfSMMessagesRegister.RegisterMessageToReceive.html ├── Olf.Net.Socket.Messaging.IOlfSMMessagesRegister.html ├── Olf.Net.Socket.Messaging.IOlfSocketMessagesRegister.html ├── Olf.Net.Socket.Messaging.TOlfMessageID.html ├── Olf.Net.Socket.Messaging.TOlfMessageSize.html ├── Olf.Net.Socket.Messaging.TOlfMessageSubscribers.html ├── Olf.Net.Socket.Messaging.TOlfReceivedMessageEvent.html ├── Olf.Net.Socket.Messaging.TOlfSMClient.Connect(string,word).html ├── Olf.Net.Socket.Messaging.TOlfSMClient.Connect.html ├── Olf.Net.Socket.Messaging.TOlfSMClient.Create(string,word).html ├── Olf.Net.Socket.Messaging.TOlfSMClient.Create.html ├── Olf.Net.Socket.Messaging.TOlfSMClient.Destroy.html ├── Olf.Net.Socket.Messaging.TOlfSMClient.DispatchReceivedMessage.html ├── Olf.Net.Socket.Messaging.TOlfSMClient.GetNewMessageInstance.html ├── Olf.Net.Socket.Messaging.TOlfSMClient.LockMessagesDict.html ├── Olf.Net.Socket.Messaging.TOlfSMClient.LockSubscribers.html ├── Olf.Net.Socket.Messaging.TOlfSMClient.RegisterMessageToReceive.html ├── Olf.Net.Socket.Messaging.TOlfSMClient.ServerIP.html ├── Olf.Net.Socket.Messaging.TOlfSMClient.ServerPort.html ├── Olf.Net.Socket.Messaging.TOlfSMClient.SubscribeToMessage.html ├── Olf.Net.Socket.Messaging.TOlfSMClient.UnlockMessagesDict.html ├── Olf.Net.Socket.Messaging.TOlfSMClient.UnlockSubscribers.html ├── Olf.Net.Socket.Messaging.TOlfSMClient.UnsubscribeToMessage.html ├── Olf.Net.Socket.Messaging.TOlfSMClient.html ├── Olf.Net.Socket.Messaging.TOlfSMConnectedClientEvent.html ├── Olf.Net.Socket.Messaging.TOlfSMConnectedClientProc.Invoke.html ├── Olf.Net.Socket.Messaging.TOlfSMConnectedClientProc.html ├── Olf.Net.Socket.Messaging.TOlfSMEncodeDecodeMessageEvent.html ├── Olf.Net.Socket.Messaging.TOlfSMException.html ├── Olf.Net.Socket.Messaging.TOlfSMMessage.Create.html ├── Olf.Net.Socket.Messaging.TOlfSMMessage.GetNewInstance.html ├── Olf.Net.Socket.Messaging.TOlfSMMessage.LoadFromStream.html ├── Olf.Net.Socket.Messaging.TOlfSMMessage.MessageID.html ├── Olf.Net.Socket.Messaging.TOlfSMMessage.SaveToStream.html ├── Olf.Net.Socket.Messaging.TOlfSMMessage.html ├── Olf.Net.Socket.Messaging.TOlfSMMessageID.html ├── Olf.Net.Socket.Messaging.TOlfSMMessageSize.html ├── Olf.Net.Socket.Messaging.TOlfSMMessagesDict.html ├── Olf.Net.Socket.Messaging.TOlfSMReceivedMessageEvent(T).html ├── Olf.Net.Socket.Messaging.TOlfSMReceivedMessageEvent.html ├── Olf.Net.Socket.Messaging.TOlfSMServer.Create(string,word).html ├── Olf.Net.Socket.Messaging.TOlfSMServer.Create.html ├── Olf.Net.Socket.Messaging.TOlfSMServer.Destroy.html ├── Olf.Net.Socket.Messaging.TOlfSMServer.DoClientConnected.html ├── Olf.Net.Socket.Messaging.TOlfSMServer.DoClientDisconnected.html ├── Olf.Net.Socket.Messaging.TOlfSMServer.DoClientLostConnexion.html ├── Olf.Net.Socket.Messaging.TOlfSMServer.ForEachConnectedClient(TOlfSMConnectedClientEvent,boolean).html ├── Olf.Net.Socket.Messaging.TOlfSMServer.ForEachConnectedClient(TOlfSMConnectedClientProc,boolean).html ├── Olf.Net.Socket.Messaging.TOlfSMServer.IP.html ├── Olf.Net.Socket.Messaging.TOlfSMServer.Listen(string,word).html ├── Olf.Net.Socket.Messaging.TOlfSMServer.Listen.html ├── Olf.Net.Socket.Messaging.TOlfSMServer.LockMessagesDict.html ├── Olf.Net.Socket.Messaging.TOlfSMServer.LockSubscribers.html ├── Olf.Net.Socket.Messaging.TOlfSMServer.Port.html ├── Olf.Net.Socket.Messaging.TOlfSMServer.RegisterMessageToReceive.html ├── Olf.Net.Socket.Messaging.TOlfSMServer.SendMessageToAll.html ├── Olf.Net.Socket.Messaging.TOlfSMServer.ServerLoop.html ├── Olf.Net.Socket.Messaging.TOlfSMServer.Socket.html ├── Olf.Net.Socket.Messaging.TOlfSMServer.SubscribeToMessage.html ├── Olf.Net.Socket.Messaging.TOlfSMServer.ThreadNameForDebugging.html ├── Olf.Net.Socket.Messaging.TOlfSMServer.UnlockMessagesDict.html ├── Olf.Net.Socket.Messaging.TOlfSMServer.UnlockSubscribers.html ├── Olf.Net.Socket.Messaging.TOlfSMServer.UnsubscribeToMessage.html ├── Olf.Net.Socket.Messaging.TOlfSMServer.html ├── Olf.Net.Socket.Messaging.TOlfSMServer.isConnected.html ├── Olf.Net.Socket.Messaging.TOlfSMServer.isListening.html ├── Olf.Net.Socket.Messaging.TOlfSMServer.onClientConnected.html ├── Olf.Net.Socket.Messaging.TOlfSMServer.onClientDisconnected.html ├── Olf.Net.Socket.Messaging.TOlfSMServer.onClientLostConnection.html ├── Olf.Net.Socket.Messaging.TOlfSMServer.onDecodeReceivedMessage.html ├── Olf.Net.Socket.Messaging.TOlfSMServer.onEncodeMessageToSend.html ├── Olf.Net.Socket.Messaging.TOlfSMServer.onServerConnected.html ├── Olf.Net.Socket.Messaging.TOlfSMServer.onServerDisconnected.html ├── Olf.Net.Socket.Messaging.TOlfSMServerEvent.html ├── Olf.Net.Socket.Messaging.TOlfSMSrvConnectedClient.ClientLoop.html ├── Olf.Net.Socket.Messaging.TOlfSMSrvConnectedClient.Connect.html ├── Olf.Net.Socket.Messaging.TOlfSMSrvConnectedClient.Create(TOlfSMServer,TSocket).html ├── Olf.Net.Socket.Messaging.TOlfSMSrvConnectedClient.Create.html ├── Olf.Net.Socket.Messaging.TOlfSMSrvConnectedClient.Destroy.html ├── Olf.Net.Socket.Messaging.TOlfSMSrvConnectedClient.DispatchReceivedMessage.html ├── Olf.Net.Socket.Messaging.TOlfSMSrvConnectedClient.FErrorDuringSend.html ├── Olf.Net.Socket.Messaging.TOlfSMSrvConnectedClient.GetNewMessageInstance.html ├── Olf.Net.Socket.Messaging.TOlfSMSrvConnectedClient.SendMessage.html ├── Olf.Net.Socket.Messaging.TOlfSMSrvConnectedClient.Socket.html ├── Olf.Net.Socket.Messaging.TOlfSMSrvConnectedClient.StartClientLoop.html ├── Olf.Net.Socket.Messaging.TOlfSMSrvConnectedClient.Tag.html ├── Olf.Net.Socket.Messaging.TOlfSMSrvConnectedClient.TagBool.html ├── Olf.Net.Socket.Messaging.TOlfSMSrvConnectedClient.TagFloat.html ├── Olf.Net.Socket.Messaging.TOlfSMSrvConnectedClient.TagObject.html ├── Olf.Net.Socket.Messaging.TOlfSMSrvConnectedClient.TagString.html ├── Olf.Net.Socket.Messaging.TOlfSMSrvConnectedClient.ThreadNameForDebugging.html ├── Olf.Net.Socket.Messaging.TOlfSMSrvConnectedClient.html ├── Olf.Net.Socket.Messaging.TOlfSMSrvConnectedClient.isConnected.html ├── Olf.Net.Socket.Messaging.TOlfSMSrvConnectedClient.onConnected.html ├── Olf.Net.Socket.Messaging.TOlfSMSrvConnectedClient.onDecodeReceivedMessage.html ├── Olf.Net.Socket.Messaging.TOlfSMSrvConnectedClient.onDisconnected.html ├── Olf.Net.Socket.Messaging.TOlfSMSrvConnectedClient.onEncodeMessageToSend.html ├── Olf.Net.Socket.Messaging.TOlfSMSrvConnectedClient.onLostConnection.html ├── Olf.Net.Socket.Messaging.TOlfSMSrvConnectedClientsList.html ├── Olf.Net.Socket.Messaging.TOlfSocketMessage.html ├── Olf.Net.Socket.Messaging.TOlfSocketMessagesDict.html ├── Olf.Net.Socket.Messaging.TOlfSocketMessagingClient.html ├── Olf.Net.Socket.Messaging.TOlfSocketMessagingException.html ├── Olf.Net.Socket.Messaging.TOlfSocketMessagingServer.html ├── Olf.Net.Socket.Messaging.TOlfSocketMessagingServerConnectedClient.html ├── Olf.Net.Socket.Messaging.TOlfSubscribers.html ├── Olf.Net.Socket.Messaging.html ├── Olf.RTL.Checksum.ChecksumVerif.html ├── Olf.RTL.Checksum.TChecksumVerifParamList.html ├── Olf.RTL.Checksum.TOlfChecksumVerif.check(string,TOlfChecksumVerifParamList,string,string,string,string,string).html ├── Olf.RTL.Checksum.TOlfChecksumVerif.check(string,string,string,string,string,string,string).html ├── Olf.RTL.Checksum.TOlfChecksumVerif.get(TOlfChecksumVerifParamList,string,string,string,string,string).html ├── Olf.RTL.Checksum.TOlfChecksumVerif.get(string,string,string,string,string,string).html ├── Olf.RTL.Checksum.TOlfChecksumVerif.html ├── Olf.RTL.Checksum.TOlfChecksumVerifParamList.addParam.html ├── Olf.RTL.Checksum.TOlfChecksumVerifParamList.html ├── Olf.RTL.Checksum.html ├── Olf.RTL.FileBuffer.TOlfFileBuffer.Create.html ├── Olf.RTL.FileBuffer.TOlfFileBuffer.Destroy.html ├── Olf.RTL.FileBuffer.TOlfFileBuffer.LoadFromFile.html ├── Olf.RTL.FileBuffer.TOlfFileBuffer.LoadFromStream.html ├── Olf.RTL.FileBuffer.TOlfFileBuffer.SaveToFile.html ├── Olf.RTL.FileBuffer.TOlfFileBuffer.SaveToStream.html ├── Olf.RTL.FileBuffer.TOlfFileBuffer.Size.html ├── Olf.RTL.FileBuffer.TOlfFileBuffer.html ├── Olf.RTL.FileBuffer.html ├── Olf.RTL.GenRandomID.TOlfRandomIDGenerator.SetDefaultSize.html ├── Olf.RTL.GenRandomID.TOlfRandomIDGenerator.getID.html ├── Olf.RTL.GenRandomID.TOlfRandomIDGenerator.getIDBase10.html ├── Olf.RTL.GenRandomID.TOlfRandomIDGenerator.getIDBase2.html ├── Olf.RTL.GenRandomID.TOlfRandomIDGenerator.getIDBase36.html ├── Olf.RTL.GenRandomID.TOlfRandomIDGenerator.getIDBase62.html ├── Olf.RTL.GenRandomID.TOlfRandomIDGenerator.html ├── Olf.RTL.GenRandomID.html ├── Olf.RTL.Params.TParams.AsJSONObject.html ├── Olf.RTL.Params.TParams.BeginUpdate.html ├── Olf.RTL.Params.TParams.Cancel.html ├── Olf.RTL.Params.TParams.Clear.html ├── Olf.RTL.Params.TParams.Delete.html ├── Olf.RTL.Params.TParams.EndUpdate.html ├── Olf.RTL.Params.TParams.HasChanged.html ├── Olf.RTL.Params.TParams.InitDefaultFileNameV2.html ├── Olf.RTL.Params.TParams.Load.html ├── Olf.RTL.Params.TParams.MoveToFilePath.html ├── Olf.RTL.Params.TParams.PortableMode.html ├── Olf.RTL.Params.TParams.Remove.html ├── Olf.RTL.Params.TParams.Save.html ├── Olf.RTL.Params.TParams.ToJSON.html ├── Olf.RTL.Params.TParams.getFilePath.html ├── Olf.RTL.Params.TParams.getValue(string,TDateTime).html ├── Olf.RTL.Params.TParams.getValue(string,TJSONValue).html ├── Olf.RTL.Params.TParams.getValue(string,boolean).html ├── Olf.RTL.Params.TParams.getValue(string,cardinal).html ├── Olf.RTL.Params.TParams.getValue(string,integer).html ├── Olf.RTL.Params.TParams.getValue(string,single).html ├── Olf.RTL.Params.TParams.getValue(string,string).html ├── Olf.RTL.Params.TParams.html ├── Olf.RTL.Params.TParams.onAfterLoadEvent.html ├── Olf.RTL.Params.TParams.onAfterLoadProc.html ├── Olf.RTL.Params.TParams.onAfterSaveEvent.html ├── Olf.RTL.Params.TParams.onAfterSaveProc.html ├── Olf.RTL.Params.TParams.onBeforeLoadEvent.html ├── Olf.RTL.Params.TParams.onBeforeLoadProc.html ├── Olf.RTL.Params.TParams.onBeforeSaveEvent.html ├── Olf.RTL.Params.TParams.onBeforeSaveProc.html ├── Olf.RTL.Params.TParams.onCryptEvent.html ├── Olf.RTL.Params.TParams.onCryptProc.html ├── Olf.RTL.Params.TParams.onDecryptEvent.html ├── Olf.RTL.Params.TParams.onDecryptProc.html ├── Olf.RTL.Params.TParams.setFilePath.html ├── Olf.RTL.Params.TParams.setFolderName.html ├── Olf.RTL.Params.TParams.setValue(string,TDateTime).html ├── Olf.RTL.Params.TParams.setValue(string,TJSONValue).html ├── Olf.RTL.Params.TParams.setValue(string,boolean).html ├── Olf.RTL.Params.TParams.setValue(string,cardinal).html ├── Olf.RTL.Params.TParams.setValue(string,integer).html ├── Olf.RTL.Params.TParams.setValue(string,single).html ├── Olf.RTL.Params.TParams.setValue(string,string).html ├── Olf.RTL.Params.TParamsCryptEvent.html ├── Olf.RTL.Params.TParamsCryptProc.Invoke.html ├── Olf.RTL.Params.TParamsCryptProc.html ├── Olf.RTL.Params.TParamsDecryptEvent.html ├── Olf.RTL.Params.TParamsDecryptProc.Invoke.html ├── Olf.RTL.Params.TParamsDecryptProc.html ├── Olf.RTL.Params.TParamsFile.AsJSONObject.html ├── Olf.RTL.Params.TParamsFile.BeginUpdate.html ├── Olf.RTL.Params.TParamsFile.Cancel.html ├── Olf.RTL.Params.TParamsFile.Clear.html ├── Olf.RTL.Params.TParamsFile.Create(string).html ├── Olf.RTL.Params.TParamsFile.Create.html ├── Olf.RTL.Params.TParamsFile.Delete.html ├── Olf.RTL.Params.TParamsFile.Destroy.html ├── Olf.RTL.Params.TParamsFile.EndUpdate.html ├── Olf.RTL.Params.TParamsFile.HasChanged.html ├── Olf.RTL.Params.TParamsFile.InitDefaultFileNameV2.html ├── Olf.RTL.Params.TParamsFile.Load.html ├── Olf.RTL.Params.TParamsFile.MoveToFilePath.html ├── Olf.RTL.Params.TParamsFile.PortableMode.html ├── Olf.RTL.Params.TParamsFile.Remove.html ├── Olf.RTL.Params.TParamsFile.Save.html ├── Olf.RTL.Params.TParamsFile.ToJSON.html ├── Olf.RTL.Params.TParamsFile.getFilePath.html ├── Olf.RTL.Params.TParamsFile.getParamValue.html ├── Olf.RTL.Params.TParamsFile.getParamsFileName.html ├── Olf.RTL.Params.TParamsFile.getValue(string,TDateTime).html ├── Olf.RTL.Params.TParamsFile.getValue(string,TJSONValue).html ├── Olf.RTL.Params.TParamsFile.getValue(string,boolean).html ├── Olf.RTL.Params.TParamsFile.getValue(string,cardinal).html ├── Olf.RTL.Params.TParamsFile.getValue(string,integer).html ├── Olf.RTL.Params.TParamsFile.getValue(string,single).html ├── Olf.RTL.Params.TParamsFile.getValue(string,string).html ├── Olf.RTL.Params.TParamsFile.html ├── Olf.RTL.Params.TParamsFile.onAfterLoadEvent.html ├── Olf.RTL.Params.TParamsFile.onAfterLoadProc.html ├── Olf.RTL.Params.TParamsFile.onAfterSaveEvent.html ├── Olf.RTL.Params.TParamsFile.onAfterSaveProc.html ├── Olf.RTL.Params.TParamsFile.onBeforeLoadEvent.html ├── Olf.RTL.Params.TParamsFile.onBeforeLoadProc.html ├── Olf.RTL.Params.TParamsFile.onBeforeSaveEvent.html ├── Olf.RTL.Params.TParamsFile.onBeforeSaveProc.html ├── Olf.RTL.Params.TParamsFile.onCryptEvent.html ├── Olf.RTL.Params.TParamsFile.onCryptProc.html ├── Olf.RTL.Params.TParamsFile.onDecryptEvent.html ├── Olf.RTL.Params.TParamsFile.onDecryptProc.html ├── Olf.RTL.Params.TParamsFile.setFilePath.html ├── Olf.RTL.Params.TParamsFile.setFolderName.html ├── Olf.RTL.Params.TParamsFile.setParamValue.html ├── Olf.RTL.Params.TParamsFile.setValue(string,TDateTime).html ├── Olf.RTL.Params.TParamsFile.setValue(string,TJSONValue).html ├── Olf.RTL.Params.TParamsFile.setValue(string,boolean).html ├── Olf.RTL.Params.TParamsFile.setValue(string,cardinal).html ├── Olf.RTL.Params.TParamsFile.setValue(string,integer).html ├── Olf.RTL.Params.TParamsFile.setValue(string,single).html ├── Olf.RTL.Params.TParamsFile.setValue(string,string).html ├── Olf.RTL.Params.TParamsLoadSaveEvent.html ├── Olf.RTL.Params.TParamsLoadSaveProc.Invoke.html ├── Olf.RTL.Params.TParamsLoadSaveProc.html ├── Olf.RTL.Params.html ├── Olf.VCL.Streams.LoadBitmapFromStream.html ├── Olf.VCL.Streams.SaveBitmapToStream.html ├── Olf.VCL.Streams.html ├── PNGWithAlphaLayerSample.html ├── PageWeb.Form1.html ├── PageWeb.TForm1.WebButton1.html ├── PageWeb.TForm1.WebButton1Click.html ├── PageWeb.TForm1.html ├── PageWeb.html ├── PageWeb1.Form1.html ├── PageWeb1.TForm1.WebClientConnection1.html ├── PageWeb1.TForm1.WebClientDataSet1.html ├── PageWeb1.TForm1.WebDBGrid1.html ├── PageWeb1.TForm1.WebDataSource1.html ├── PageWeb1.TForm1.WebDataSource1DataChange.html ├── PageWeb1.TForm1.WebImageControl1.html ├── PageWeb1.TForm1.html ├── PageWeb1.html ├── ParallelFor.html ├── ParcourtDeLaListe.html ├── PictureReceiver_FMX.html ├── PictureReceiver_VCL.html ├── PictureSender_FMX.html ├── PlayWithComponents.html ├── PopupMenuOnButton.html ├── QRCodeGenerator_VCL.html ├── QRCodeReader_FMX.html ├── RESTClientSNCF.html ├── ReceivePhotoFromAppTetheringFMX.html ├── ReceivePhotoFromAppTetheringVCL.html ├── Recursivity.html ├── SDIWithDialogBox.html ├── SOAPClient.html ├── SOAPServer.html ├── SQLiteBlobsSample.html ├── ScaledLayoutSample.html ├── SearchBTDevices.html ├── SendPicturesOnANetworkWithSockets.RegisterMessagesReceivedByTheClient.html ├── SendPicturesOnANetworkWithSockets.RegisterMessagesReceivedByTheServer.html ├── SendPicturesOnANetworkWithSockets.TSPNAskForImageFilesInsteadOfFMXBitmapMessage.Create.html ├── SendPicturesOnANetworkWithSockets.TSPNAskForImageFilesInsteadOfFMXBitmapMessage.GetNewInstance.html ├── SendPicturesOnANetworkWithSockets.TSPNAskForImageFilesInsteadOfFMXBitmapMessage.LoadFromStream.html ├── SendPicturesOnANetworkWithSockets.TSPNAskForImageFilesInsteadOfFMXBitmapMessage.SaveToStream.html ├── SendPicturesOnANetworkWithSockets.TSPNAskForImageFilesInsteadOfFMXBitmapMessage.html ├── SendPicturesOnANetworkWithSockets.TSPNSendABitmapMessage.Bitmap.html ├── SendPicturesOnANetworkWithSockets.TSPNSendABitmapMessage.Create.html ├── SendPicturesOnANetworkWithSockets.TSPNSendABitmapMessage.Destroy.html ├── SendPicturesOnANetworkWithSockets.TSPNSendABitmapMessage.GetNewInstance.html ├── SendPicturesOnANetworkWithSockets.TSPNSendABitmapMessage.LoadFromStream.html ├── SendPicturesOnANetworkWithSockets.TSPNSendABitmapMessage.SaveToStream.html ├── SendPicturesOnANetworkWithSockets.TSPNSendABitmapMessage.html ├── SendPicturesOnANetworkWithSockets.TSPNSendAnImageFileMessage.Create.html ├── SendPicturesOnANetworkWithSockets.TSPNSendAnImageFileMessage.Destroy.html ├── SendPicturesOnANetworkWithSockets.TSPNSendAnImageFileMessage.FileContent.html ├── SendPicturesOnANetworkWithSockets.TSPNSendAnImageFileMessage.FileExtension.html ├── SendPicturesOnANetworkWithSockets.TSPNSendAnImageFileMessage.GetNewInstance.html ├── SendPicturesOnANetworkWithSockets.TSPNSendAnImageFileMessage.LoadFromStream.html ├── SendPicturesOnANetworkWithSockets.TSPNSendAnImageFileMessage.SaveToStream.html ├── SendPicturesOnANetworkWithSockets.TSPNSendAnImageFileMessage.html ├── SendPicturesOnANetworkWithSockets.TSendPicturesOnANetworkWithSocketsClient.Create.html ├── SendPicturesOnANetworkWithSockets.TSendPicturesOnANetworkWithSocketsClient.html ├── SendPicturesOnANetworkWithSockets.TSendPicturesOnANetworkWithSocketsClient.onReceiveMessage1.html ├── SendPicturesOnANetworkWithSockets.TSendPicturesOnANetworkWithSocketsClient.onReceiveMessage2.html ├── SendPicturesOnANetworkWithSockets.TSendPicturesOnANetworkWithSocketsClient.onReceiveSPNSendABitmapMessage.html ├── SendPicturesOnANetworkWithSockets.TSendPicturesOnANetworkWithSocketsClient.onReceiveSPNSendAnImageFileMessage.html ├── SendPicturesOnANetworkWithSockets.TSendPicturesOnANetworkWithSocketsServer.Create.html ├── SendPicturesOnANetworkWithSockets.TSendPicturesOnANetworkWithSocketsServer.html ├── SendPicturesOnANetworkWithSockets.TSendPicturesOnANetworkWithSocketsServer.onReceiveMessage3.html ├── SendPicturesOnANetworkWithSockets.TSendPicturesOnANetworkWithSocketsServer.onReceiveSPNAskForImageFilesInsteadOfFMXBitmapMessage.html ├── SendPicturesOnANetworkWithSockets.html ├── ServerController.IWServerController.html ├── ServerController.TIWServerController.IWServerControllerBaseNewSession.html ├── ServerController.TIWServerController.html ├── ServerController.UserSession.html ├── ServerController.html ├── ServerMethodsUnit1.TServerMethods1.EchoString.html ├── ServerMethodsUnit1.TServerMethods1.ReverseString.html ├── ServerMethodsUnit1.TServerMethods1.html ├── ServerMethodsUnit1.html ├── ServerModule.TUniServerModule.FirstInit.html ├── ServerModule.TUniServerModule.UniGUIServerModuleServerStartup.html ├── ServerModule.TUniServerModule.html ├── ServerModule.UniServerModule.html ├── ServerModule.html ├── ShowBeaconCharacteristics.html ├── ShowHideScreenAsLayout.html ├── ShowSVGInAFolderWithSkia4Delphi.html ├── ShowSelectedItem.html ├── SignatureFMXDemo.html ├── StringComparison.html ├── StructureProgSample.html ├── StylesAndEXESizeSample.html ├── TBiometricAuthSample.html ├── TControlListBiolife.html ├── TControlList_MultiSelect.html ├── TFlowLayoutSample.html ├── TLabel_Shortcut_and_Tabulation.html ├── TListSortSample.html ├── TMSWebCoreDelphiBooksSample.html ├── TNumberBox_MinValue.html ├── TTouchKeyboard_with_Style.html ├── TURLStreamSample.html ├── TakeAndSendPhotoWithAppTethering.html ├── TypeInferenceOnADecimalValueSample.html ├── UniGUIDatabaseSample.html ├── UniGUISample.html ├── Unit1.DataModule1.html ├── Unit1.Form1.html ├── Unit1.TDataModule1.DataModuleCreate.html ├── Unit1.TDataModule1.DataSource1.html ├── Unit1.TDataModule1.EmployeeConnection.html ├── Unit1.TDataModule1.EmployeeTable.html ├── Unit1.TDataModule1.html ├── Unit1.TForm1.BindNavigator2.html ├── Unit1.TForm1.BindNavigator2Click.html ├── Unit1.TForm1.BindSourceDB1.html ├── Unit1.TForm1.BindingsList1.html ├── Unit1.TForm1.BiometricAuth1.html ├── Unit1.TForm1.BiometricAuth1AuthenticateFail.html ├── Unit1.TForm1.BiometricAuth1AuthenticateSuccess.html ├── Unit1.TForm1.Button1.html ├── Unit1.TForm1.Button10.html ├── Unit1.TForm1.Button11.html ├── Unit1.TForm1.Button12.html ├── Unit1.TForm1.Button13.html ├── Unit1.TForm1.Button14.html ├── Unit1.TForm1.Button1Click.html ├── Unit1.TForm1.Button2.html ├── Unit1.TForm1.Button2Click.html ├── Unit1.TForm1.Button3.html ├── Unit1.TForm1.Button3Click.html ├── Unit1.TForm1.Button4.html ├── Unit1.TForm1.Button4Click.html ├── Unit1.TForm1.Button5.html ├── Unit1.TForm1.Button5Click.html ├── Unit1.TForm1.Button6.html ├── Unit1.TForm1.Button7.html ├── Unit1.TForm1.Button8.html ├── Unit1.TForm1.Button9.html ├── Unit1.TForm1.CheckBox1.html ├── Unit1.TForm1.CheckBox1Click.html ├── Unit1.TForm1.ClientDataSet1.html ├── Unit1.TForm1.ControlList1.html ├── Unit1.TForm1.ControlList1ItemClick.html ├── Unit1.TForm1.Create.html ├── Unit1.TForm1.CustomersTable.html ├── Unit1.TForm1.Edit1.html ├── Unit1.TForm1.Edit1Enter.html ├── Unit1.TForm1.Edit2.html ├── Unit1.TForm1.Edit3.html ├── Unit1.TForm1.FlowLayout1.html ├── Unit1.TForm1.FormCreate.html ├── Unit1.TForm1.FormResize.html ├── Unit1.TForm1.FormShow.html ├── Unit1.TForm1.Image1.html ├── Unit1.TForm1.ImageCollection1.html ├── Unit1.TForm1.ImageList1.html ├── Unit1.TForm1.Label1.html ├── Unit1.TForm1.Label2.html ├── Unit1.TForm1.Label3.html ├── Unit1.TForm1.Label4.html ├── Unit1.TForm1.Layout1.html ├── Unit1.TForm1.LinkControlToField1.html ├── Unit1.TForm1.LinkGridToDataSourceBindSourceDB1.html ├── Unit1.TForm1.LinkPropertyToFieldCaption.html ├── Unit1.TForm1.ListBox1.html ├── Unit1.TForm1.ListBox1Change.html ├── Unit1.TForm1.Memo1.html ├── Unit1.TForm1.NbPlusPlus.html ├── Unit1.TForm1.NumberBox1.html ├── Unit1.TForm1.Rectangle1.html ├── Unit1.TForm1.ScaledLayout1.html ├── Unit1.TForm1.Sqlite_demoConnection.html ├── Unit1.TForm1.StringGrid1.html ├── Unit1.TForm1.ToolBar1.html ├── Unit1.TForm1.ToolButton1.html ├── Unit1.TForm1.ToolButton2.html ├── Unit1.TForm1.ToolButton3.html ├── Unit1.TForm1.TouchKeyboard1.html ├── Unit1.TForm1.TrackBar1.html ├── Unit1.TForm1.TrackBar1Tracking.html ├── Unit1.TForm1.TrackBar2.html ├── Unit1.TForm1.TrackBar2Tracking.html ├── Unit1.TForm1.VertScrollBox1.html ├── Unit1.TForm1.VirtualImage1.html ├── Unit1.TForm1.VirtualImageList1.html ├── Unit1.TForm1.h.html ├── Unit1.TForm1.html ├── Unit1.TForm1.w.html ├── Unit1.TIWForm1.IWButton1.html ├── Unit1.TIWForm1.IWButton1Click.html ├── Unit1.TIWForm1.IWButton2.html ├── Unit1.TIWForm1.IWButton3.html ├── Unit1.TIWForm1.IWButton4.html ├── Unit1.TIWForm1.IWEdit1.html ├── Unit1.TIWForm1.IWLabel1.html ├── Unit1.TIWForm1.IWLabel2.html ├── Unit1.TIWForm1.IWURL1.html ├── Unit1.TIWForm1.html ├── Unit1.TLockAndExecuteCallbackProc.html ├── Unit1.helloworld.html ├── Unit1.html ├── Unit2.DataModule2.html ├── Unit2.Form2.html ├── Unit2.TDataModule2.EmployeesTable.html ├── Unit2.TDataModule2.Sqlite_demoConnection.html ├── Unit2.TDataModule2.html ├── Unit2.TForm2.Button1.html ├── Unit2.TForm2.Button1Click.html ├── Unit2.TForm2.TouchKeyboard1.html ├── Unit2.TForm2.html ├── Unit2.TUniForm2.UniBitBtn1.html ├── Unit2.TUniForm2.UniBitBtn1Click.html ├── Unit2.TUniForm2.UniBitBtn2.html ├── Unit2.TUniForm2.UniBitBtn2Click.html ├── Unit2.TUniForm2.UniDBEdit1.html ├── Unit2.TUniForm2.UniImageList1.html ├── Unit2.TUniForm2.html ├── Unit2.UniForm2.html ├── Unit2.html ├── Unit3.Form3.html ├── Unit3.TForm3.Button1.html ├── Unit3.TForm3.Button1Click.html ├── Unit3.TForm3.TouchKeyboard1.html ├── Unit3.TForm3.html ├── Unit3.TraitementDeLaBase.html ├── Unit3.html ├── Unit4.DataModule4.html ├── Unit4.TDataModule4.ImageCollection1.html ├── Unit4.TDataModule4.html ├── Unit4.html ├── UnitFormMain.FormMain.html ├── UnitFormMain.TFormMain.ButtonStartParallelFor.html ├── UnitFormMain.TFormMain.ButtonStartParallelForClick.html ├── UnitFormMain.TFormMain.Memo1.html ├── UnitFormMain.TFormMain.html ├── UnitFormMain.html ├── UpperAndLowerCase.html ├── UserSessionUnit.TIWUserSession.html ├── UserSessionUnit.html ├── VCLProjectStructure.html ├── VirtualImageList.html ├── WebBrokerDemo.html ├── WebModuleUnit1.TWebModule1.DSHTTPWebDispatcher1.html ├── WebModuleUnit1.TWebModule1.DSProxyGenerator1.html ├── WebModuleUnit1.TWebModule1.DSServer1.html ├── WebModuleUnit1.TWebModule1.DSServerClass1.html ├── WebModuleUnit1.TWebModule1.DSServerClass1GetClass.html ├── WebModuleUnit1.TWebModule1.DSServerMetaDataProvider1.html ├── WebModuleUnit1.TWebModule1.HTTPSoapDispatcher1.html ├── WebModuleUnit1.TWebModule1.HTTPSoapPascalInvoker1.html ├── WebModuleUnit1.TWebModule1.ReverseString.html ├── WebModuleUnit1.TWebModule1.ServerFunctionInvoker.html ├── WebModuleUnit1.TWebModule1.ServerFunctionInvokerHTMLTag.html ├── WebModuleUnit1.TWebModule1.WSDLHTMLPublish1.html ├── WebModuleUnit1.TWebModule1.WebFileDispatcher1.html ├── WebModuleUnit1.TWebModule1.WebFileDispatcher1BeforeDispatch.html ├── WebModuleUnit1.TWebModule1.WebModule1DefaultHandlerAction.html ├── WebModuleUnit1.TWebModule1.WebModule1WebActionItem1Action.html ├── WebModuleUnit1.TWebModule1.WebModuleBeforeDispatch.html ├── WebModuleUnit1.TWebModule1.WebModuleCreate.html ├── WebModuleUnit1.TWebModule1.WebModuleDefaultAction.html ├── WebModuleUnit1.TWebModule1.html ├── WebModuleUnit1.WebModuleClass.html ├── WebModuleUnit1.html ├── WhoisClient.html ├── ZXIng.ByteSegments.ByteSegmentsCreate.html ├── ZXIng.ByteSegments.IByteSegments.Add.html ├── ZXIng.ByteSegments.IByteSegments.Capacity.html ├── ZXIng.ByteSegments.IByteSegments.Clear.html ├── ZXIng.ByteSegments.IByteSegments.Count.html ├── ZXIng.ByteSegments.IByteSegments.Get.html ├── ZXIng.ByteSegments.IByteSegments.GetCapacity.html ├── ZXIng.ByteSegments.IByteSegments.SetCapacity.html ├── ZXIng.ByteSegments.IByteSegments.html ├── ZXIng.ByteSegments.html ├── ZXing.BarcodeFormat.AZTEC.html ├── ZXing.BarcodeFormat.Auto.html ├── ZXing.BarcodeFormat.CODABAR.html ├── ZXing.BarcodeFormat.CODE_128.html ├── ZXing.BarcodeFormat.CODE_39.html ├── ZXing.BarcodeFormat.CODE_93.html ├── ZXing.BarcodeFormat.DATA_MATRIX.html ├── ZXing.BarcodeFormat.EAN_13.html ├── ZXing.BarcodeFormat.EAN_8.html ├── ZXing.BarcodeFormat.ITF.html ├── ZXing.BarcodeFormat.MAXICODE.html ├── ZXing.BarcodeFormat.MSI.html ├── ZXing.BarcodeFormat.PDF_417.html ├── ZXing.BarcodeFormat.PLESSEY.html ├── ZXing.BarcodeFormat.QR_CODE.html ├── ZXing.BarcodeFormat.RSS_14.html ├── ZXing.BarcodeFormat.RSS_EXPANDED.html ├── ZXing.BarcodeFormat.TBarcodeFormat.AZTEC.html ├── ZXing.BarcodeFormat.TBarcodeFormat.Auto.html ├── ZXing.BarcodeFormat.TBarcodeFormat.CODABAR.html ├── ZXing.BarcodeFormat.TBarcodeFormat.CODE_128.html ├── ZXing.BarcodeFormat.TBarcodeFormat.CODE_39.html ├── ZXing.BarcodeFormat.TBarcodeFormat.CODE_93.html ├── ZXing.BarcodeFormat.TBarcodeFormat.DATA_MATRIX.html ├── ZXing.BarcodeFormat.TBarcodeFormat.EAN_13.html ├── ZXing.BarcodeFormat.TBarcodeFormat.EAN_8.html ├── ZXing.BarcodeFormat.TBarcodeFormat.ITF.html ├── ZXing.BarcodeFormat.TBarcodeFormat.MAXICODE.html ├── ZXing.BarcodeFormat.TBarcodeFormat.MSI.html ├── ZXing.BarcodeFormat.TBarcodeFormat.PDF_417.html ├── ZXing.BarcodeFormat.TBarcodeFormat.PLESSEY.html ├── ZXing.BarcodeFormat.TBarcodeFormat.QR_CODE.html ├── ZXing.BarcodeFormat.TBarcodeFormat.RSS_14.html ├── ZXing.BarcodeFormat.TBarcodeFormat.RSS_EXPANDED.html ├── ZXing.BarcodeFormat.TBarcodeFormat.UPC_A.html ├── ZXing.BarcodeFormat.TBarcodeFormat.UPC_E.html ├── ZXing.BarcodeFormat.TBarcodeFormat.UPC_EAN_EXTENSION.html ├── ZXing.BarcodeFormat.TBarcodeFormat.html ├── ZXing.BarcodeFormat.UPC_A.html ├── ZXing.BarcodeFormat.UPC_E.html ├── ZXing.BarcodeFormat.UPC_EAN_EXTENSION.html ├── ZXing.BarcodeFormat.html ├── ZXing.BaseLuminanceSource.TBaseLuminanceSource.BChannelWeight.html ├── ZXing.BaseLuminanceSource.TBaseLuminanceSource.ChannelWeight.html ├── ZXing.BaseLuminanceSource.TBaseLuminanceSource.Create(Integer,Integer).html ├── ZXing.BaseLuminanceSource.TBaseLuminanceSource.Create(TArray(Byte),Integer,Integer).html ├── ZXing.BaseLuminanceSource.TBaseLuminanceSource.CreateLuminanceSource.html ├── ZXing.BaseLuminanceSource.TBaseLuminanceSource.CropSupported.html ├── ZXing.BaseLuminanceSource.TBaseLuminanceSource.GChannelWeight.html ├── ZXing.BaseLuminanceSource.TBaseLuminanceSource.InversionSupported.html ├── ZXing.BaseLuminanceSource.TBaseLuminanceSource.Matrix.html ├── ZXing.BaseLuminanceSource.TBaseLuminanceSource.RChannelWeight.html ├── ZXing.BaseLuminanceSource.TBaseLuminanceSource.RotateSupported.html ├── ZXing.BaseLuminanceSource.TBaseLuminanceSource.crop.html ├── ZXing.BaseLuminanceSource.TBaseLuminanceSource.getRow.html ├── ZXing.BaseLuminanceSource.TBaseLuminanceSource.html ├── ZXing.BaseLuminanceSource.TBaseLuminanceSource.invert.html ├── ZXing.BaseLuminanceSource.TBaseLuminanceSource.luminances.html ├── ZXing.BaseLuminanceSource.TBaseLuminanceSource.rotateCounterClockwise.html ├── ZXing.BaseLuminanceSource.TBaseLuminanceSource.rotateCounterClockwise45.html ├── ZXing.BaseLuminanceSource.html ├── ZXing.Binarizer.TBinarizer.BlackMatrix.html ├── ZXing.Binarizer.TBinarizer.Create.html ├── ZXing.Binarizer.TBinarizer.Destroy.html ├── ZXing.Binarizer.TBinarizer.GetBlackRow.html ├── ZXing.Binarizer.TBinarizer.Height.html ├── ZXing.Binarizer.TBinarizer.LuminanceSource.html ├── ZXing.Binarizer.TBinarizer.Width.html ├── ZXing.Binarizer.TBinarizer.createBinarizer.html ├── ZXing.Binarizer.TBinarizer.html ├── ZXing.Binarizer.html ├── ZXing.BinaryBitmap.TBinaryBitmap.BlackMatrix.html ├── ZXing.BinaryBitmap.TBinaryBitmap.Create.html ├── ZXing.BinaryBitmap.TBinaryBitmap.Destroy.html ├── ZXing.BinaryBitmap.TBinaryBitmap.Height.html ├── ZXing.BinaryBitmap.TBinaryBitmap.RotateSupported.html ├── ZXing.BinaryBitmap.TBinaryBitmap.Width.html ├── ZXing.BinaryBitmap.TBinaryBitmap.getBlackRow.html ├── ZXing.BinaryBitmap.TBinaryBitmap.html ├── ZXing.BinaryBitmap.TBinaryBitmap.rotateCounterClockwise.html ├── ZXing.BinaryBitmap.html ├── ZXing.BitSource.TBitSource.BitOffset.html ├── ZXing.BitSource.TBitSource.ByteOffset.html ├── ZXing.BitSource.TBitSource.Create.html ├── ZXing.BitSource.TBitSource.available.html ├── ZXing.BitSource.TBitSource.html ├── ZXing.BitSource.TBitSource.readBits.html ├── ZXing.BitSource.html ├── ZXing.CharacterSetECI.TCharacterSetECI.encodingName.html ├── ZXing.CharacterSetECI.TCharacterSetECI.getCharacterSetECIByName.html ├── ZXing.CharacterSetECI.TCharacterSetECI.getCharacterSetECIByValue.html ├── ZXing.CharacterSetECI.TCharacterSetECI.html ├── ZXing.CharacterSetECI.TECI.getECIByValue.html ├── ZXing.CharacterSetECI.TECI.html ├── ZXing.CharacterSetECI.TECI.value.html ├── ZXing.CharacterSetECI.html ├── ZXing.Common.BitArray.IBitArray.Bits.html ├── ZXing.Common.BitArray.IBitArray.GetBit.html ├── ZXing.Common.BitArray.IBitArray.GetBits.html ├── ZXing.Common.BitArray.IBitArray.Reverse.html ├── ZXing.Common.BitArray.IBitArray.Self.html ├── ZXing.Common.BitArray.IBitArray.SetBit.html ├── ZXing.Common.BitArray.IBitArray.Size.html ├── ZXing.Common.BitArray.IBitArray.SizeInBytes.html ├── ZXing.Common.BitArray.IBitArray.appendBit.html ├── ZXing.Common.BitArray.IBitArray.clear.html ├── ZXing.Common.BitArray.IBitArray.getNextSet.html ├── ZXing.Common.BitArray.IBitArray.getNextUnset.html ├── ZXing.Common.BitArray.IBitArray.html ├── ZXing.Common.BitArray.IBitArray.isRange.html ├── ZXing.Common.BitArray.IBitArray.setBulk.html ├── ZXing.Common.BitArray.IBitArray.setRange.html ├── ZXing.Common.BitArray.TBitArrayHelpers.CreateBitArray(Integer).html ├── ZXing.Common.BitArray.TBitArrayHelpers.CreateBitArray.html ├── ZXing.Common.BitArray.TBitArrayHelpers.html ├── ZXing.Common.BitArray.html ├── ZXing.Common.BitArrayImplementation.NewBitArray(Integer).html ├── ZXing.Common.BitArrayImplementation.NewBitArray.html ├── ZXing.Common.BitArrayImplementation.html ├── ZXing.Common.BitMatrix.TBitMatrix.Clone.html ├── ZXing.Common.BitMatrix.TBitMatrix.Create(Integer).html ├── ZXing.Common.BitMatrix.TBitMatrix.Create(Integer,Integer).html ├── ZXing.Common.BitMatrix.TBitMatrix.Destroy.html ├── ZXing.Common.BitMatrix.TBitMatrix.Equals.html ├── ZXing.Common.BitMatrix.TBitMatrix.GetHashCode.html ├── ZXing.Common.BitMatrix.TBitMatrix.Matrix.html ├── ZXing.Common.BitMatrix.TBitMatrix.Rotate180.html ├── ZXing.Common.BitMatrix.TBitMatrix.ToBitmap(TBarcodeFormat,string).html ├── ZXing.Common.BitMatrix.TBitMatrix.ToBitmap.html ├── ZXing.Common.BitMatrix.TBitMatrix.ToString.html ├── ZXing.Common.BitMatrix.TBitMatrix.clear.html ├── ZXing.Common.BitMatrix.TBitMatrix.flip.html ├── ZXing.Common.BitMatrix.TBitMatrix.getBottomRightOnBit.html ├── ZXing.Common.BitMatrix.TBitMatrix.getEnclosingRectangle.html ├── ZXing.Common.BitMatrix.TBitMatrix.getRow.html ├── ZXing.Common.BitMatrix.TBitMatrix.getTopLeftOnBit.html ├── ZXing.Common.BitMatrix.TBitMatrix.height.html ├── ZXing.Common.BitMatrix.TBitMatrix.html ├── ZXing.Common.BitMatrix.TBitMatrix.setRegion.html ├── ZXing.Common.BitMatrix.TBitMatrix.setRow.html ├── ZXing.Common.BitMatrix.TBitMatrix.width.html ├── ZXing.Common.BitMatrix.html ├── ZXing.Common.Detector.MathUtils.TMathUtils.Asr.html ├── ZXing.Common.Detector.MathUtils.TMathUtils.distance.html ├── ZXing.Common.Detector.MathUtils.TMathUtils.html ├── ZXing.Common.Detector.MathUtils.TMathUtils.round.html ├── ZXing.Common.Detector.MathUtils.html ├── ZXing.Common.Detector.WhiteRectangleDetector.TWhiteRectangleDetector.New(TBitMatrix).html ├── ZXing.Common.Detector.WhiteRectangleDetector.TWhiteRectangleDetector.New(TBitMatrix,Integer,Integer,Integer).html ├── ZXing.Common.Detector.WhiteRectangleDetector.TWhiteRectangleDetector.detect.html ├── ZXing.Common.Detector.WhiteRectangleDetector.TWhiteRectangleDetector.html ├── ZXing.Common.Detector.WhiteRectangleDetector.html ├── ZXing.Common.DetectorResult.TDetectorResult.Create.html ├── ZXing.Common.DetectorResult.TDetectorResult.Destroy.html ├── ZXing.Common.DetectorResult.TDetectorResult.bits.html ├── ZXing.Common.DetectorResult.TDetectorResult.html ├── ZXing.Common.DetectorResult.TDetectorResult.points.html ├── ZXing.Common.DetectorResult.html ├── ZXing.Common.GridSampler.TGridSampler.Create.html ├── ZXing.Common.GridSampler.TGridSampler.Instance.html ├── ZXing.Common.GridSampler.TGridSampler.checkAndNudgePoints.html ├── ZXing.Common.GridSampler.TGridSampler.html ├── ZXing.Common.GridSampler.TGridSampler.sampleGrid(TBitMatrix,Integer,Integer,Single,Single,Single,Single,Single,Single,Single,Single,Single,Single,Single,Single,Single,Single,Single,Single).html ├── ZXing.Common.GridSampler.TGridSampler.sampleGrid(TBitMatrix,Integer,Integer,TPerspectiveTransform).html ├── ZXing.Common.GridSampler.TGridSampler.setGridSampler.html ├── ZXing.Common.GridSampler.html ├── ZXing.Common.PerspectiveTransform.TPerspectiveTransform.Create.html ├── ZXing.Common.PerspectiveTransform.TPerspectiveTransform.html ├── ZXing.Common.PerspectiveTransform.TPerspectiveTransform.quadrilateralToQuadrilateral.html ├── ZXing.Common.PerspectiveTransform.TPerspectiveTransform.quadrilateralToSquare.html ├── ZXing.Common.PerspectiveTransform.TPerspectiveTransform.squareToQuadrilateral.html ├── ZXing.Common.PerspectiveTransform.TPerspectiveTransform.transformPoints(TArray(Single)).html ├── ZXing.Common.PerspectiveTransform.TPerspectiveTransform.transformPoints(TArray(Single),TArray(Single)).html ├── ZXing.Common.PerspectiveTransform.html ├── ZXing.Common.ReedSolomon.GenericGF.IGenericGFPoly.Field.html ├── ZXing.Common.ReedSolomon.GenericGF.IGenericGFPoly.ToString.html ├── ZXing.Common.ReedSolomon.GenericGF.IGenericGFPoly.addOrSubtract.html ├── ZXing.Common.ReedSolomon.GenericGF.IGenericGFPoly.coefficients.html ├── ZXing.Common.ReedSolomon.GenericGF.IGenericGFPoly.degree.html ├── ZXing.Common.ReedSolomon.GenericGF.IGenericGFPoly.divide.html ├── ZXing.Common.ReedSolomon.GenericGF.IGenericGFPoly.evaluateAt.html ├── ZXing.Common.ReedSolomon.GenericGF.IGenericGFPoly.getCoefficient.html ├── ZXing.Common.ReedSolomon.GenericGF.IGenericGFPoly.get_Degree.html ├── ZXing.Common.ReedSolomon.GenericGF.IGenericGFPoly.get_coefficients.html ├── ZXing.Common.ReedSolomon.GenericGF.IGenericGFPoly.get_field.html ├── ZXing.Common.ReedSolomon.GenericGF.IGenericGFPoly.get_isZero.html ├── ZXing.Common.ReedSolomon.GenericGF.IGenericGFPoly.html ├── ZXing.Common.ReedSolomon.GenericGF.IGenericGFPoly.isZero.html ├── ZXing.Common.ReedSolomon.GenericGF.IGenericGFPoly.multiply(IGenericGFPoly).html ├── ZXing.Common.ReedSolomon.GenericGF.IGenericGFPoly.multiply(Integer).html ├── ZXing.Common.ReedSolomon.GenericGF.IGenericGFPoly.multiplyByMonomial.html ├── ZXing.Common.ReedSolomon.GenericGF.TGenericGF.AZTEC_DATA_10.html ├── ZXing.Common.ReedSolomon.GenericGF.TGenericGF.AZTEC_DATA_12.html ├── ZXing.Common.ReedSolomon.GenericGF.TGenericGF.AZTEC_DATA_6.html ├── ZXing.Common.ReedSolomon.GenericGF.TGenericGF.AZTEC_DATA_8.html ├── ZXing.Common.ReedSolomon.GenericGF.TGenericGF.AZTEC_PARAM.html ├── ZXing.Common.ReedSolomon.GenericGF.TGenericGF.Create.html ├── ZXing.Common.ReedSolomon.GenericGF.TGenericGF.DATA_MATRIX_FIELD_256.html ├── ZXing.Common.ReedSolomon.GenericGF.TGenericGF.Destroy.html ├── ZXing.Common.ReedSolomon.GenericGF.TGenericGF.GeneratorBase.html ├── ZXing.Common.ReedSolomon.GenericGF.TGenericGF.MAXICODE_FIELD_64.html ├── ZXing.Common.ReedSolomon.GenericGF.TGenericGF.One.html ├── ZXing.Common.ReedSolomon.GenericGF.TGenericGF.QR_CODE_FIELD_256.html ├── ZXing.Common.ReedSolomon.GenericGF.TGenericGF.ToString.html ├── ZXing.Common.ReedSolomon.GenericGF.TGenericGF.Zero.html ├── ZXing.Common.ReedSolomon.GenericGF.TGenericGF.addOrSubtract.html ├── ZXing.Common.ReedSolomon.GenericGF.TGenericGF.buildMonomial.html ├── ZXing.Common.ReedSolomon.GenericGF.TGenericGF.exp.html ├── ZXing.Common.ReedSolomon.GenericGF.TGenericGF.html ├── ZXing.Common.ReedSolomon.GenericGF.TGenericGF.inverse.html ├── ZXing.Common.ReedSolomon.GenericGF.TGenericGF.log.html ├── ZXing.Common.ReedSolomon.GenericGF.TGenericGF.multiply.html ├── ZXing.Common.ReedSolomon.GenericGF.TGenericGF.size.html ├── ZXing.Common.ReedSolomon.GenericGF.TGenericGFPoly.Create.html ├── ZXing.Common.ReedSolomon.GenericGF.TGenericGFPoly.Destroy.html ├── ZXing.Common.ReedSolomon.GenericGF.TGenericGFPoly.Field.html ├── ZXing.Common.ReedSolomon.GenericGF.TGenericGFPoly.ToString.html ├── ZXing.Common.ReedSolomon.GenericGF.TGenericGFPoly.addOrSubtract.html ├── ZXing.Common.ReedSolomon.GenericGF.TGenericGFPoly.coefficients.html ├── ZXing.Common.ReedSolomon.GenericGF.TGenericGFPoly.degree.html ├── ZXing.Common.ReedSolomon.GenericGF.TGenericGFPoly.divide.html ├── ZXing.Common.ReedSolomon.GenericGF.TGenericGFPoly.evaluateAt.html ├── ZXing.Common.ReedSolomon.GenericGF.TGenericGFPoly.getCoefficient.html ├── ZXing.Common.ReedSolomon.GenericGF.TGenericGFPoly.get_Degree.html ├── ZXing.Common.ReedSolomon.GenericGF.TGenericGFPoly.get_coefficients.html ├── ZXing.Common.ReedSolomon.GenericGF.TGenericGFPoly.get_field.html ├── ZXing.Common.ReedSolomon.GenericGF.TGenericGFPoly.get_isZero.html ├── ZXing.Common.ReedSolomon.GenericGF.TGenericGFPoly.html ├── ZXing.Common.ReedSolomon.GenericGF.TGenericGFPoly.isZero.html ├── ZXing.Common.ReedSolomon.GenericGF.TGenericGFPoly.multiply(IGenericGFPoly).html ├── ZXing.Common.ReedSolomon.GenericGF.TGenericGFPoly.multiply(Integer).html ├── ZXing.Common.ReedSolomon.GenericGF.TGenericGFPoly.multiplyByMonomial.html ├── ZXing.Common.ReedSolomon.GenericGF.html ├── ZXing.Common.ReedSolomon.ReedSolomonDecoder.TReedSolomonDecoder.Create.html ├── ZXing.Common.ReedSolomon.ReedSolomonDecoder.TReedSolomonDecoder.decode.html ├── ZXing.Common.ReedSolomon.ReedSolomonDecoder.TReedSolomonDecoder.html ├── ZXing.Common.ReedSolomon.ReedSolomonDecoder.html ├── ZXing.Datamatrix.DataMatrixReader.TDataMatrixReader.Create.html ├── ZXing.Datamatrix.DataMatrixReader.TDataMatrixReader.Destroy.html ├── ZXing.Datamatrix.DataMatrixReader.TDataMatrixReader.decode(TBinaryBitmap).html ├── ZXing.Datamatrix.DataMatrixReader.TDataMatrixReader.decode(TBinaryBitmap,TDictionary(TDecodeHintType,-TObject)).html ├── ZXing.Datamatrix.DataMatrixReader.TDataMatrixReader.html ├── ZXing.Datamatrix.DataMatrixReader.TDataMatrixReader.reset.html ├── ZXing.Datamatrix.DataMatrixReader.html ├── ZXing.Datamatrix.Internal.BitMatrixParser.TBitMatrixParser.Create.html ├── ZXing.Datamatrix.Internal.BitMatrixParser.TBitMatrixParser.Destroy.html ├── ZXing.Datamatrix.Internal.BitMatrixParser.TBitMatrixParser.Version.html ├── ZXing.Datamatrix.Internal.BitMatrixParser.TBitMatrixParser.extractDataRegion.html ├── ZXing.Datamatrix.Internal.BitMatrixParser.TBitMatrixParser.html ├── ZXing.Datamatrix.Internal.BitMatrixParser.TBitMatrixParser.readCodewords.html ├── ZXing.Datamatrix.Internal.BitMatrixParser.html ├── ZXing.Datamatrix.Internal.DataBlock.TDataBlock.Create.html ├── ZXing.Datamatrix.Internal.DataBlock.TDataBlock.Destroy.html ├── ZXing.Datamatrix.Internal.DataBlock.TDataBlock.NumDataCodewords.html ├── ZXing.Datamatrix.Internal.DataBlock.TDataBlock.codewords.html ├── ZXing.Datamatrix.Internal.DataBlock.TDataBlock.getDataBlocks.html ├── ZXing.Datamatrix.Internal.DataBlock.TDataBlock.html ├── ZXing.Datamatrix.Internal.DataBlock.html ├── ZXing.Datamatrix.Internal.DecodedBitStreamParser.ANSIX12_ENCODE.html ├── ZXing.Datamatrix.Internal.DecodedBitStreamParser.ASCII_ENCODE.html ├── ZXing.Datamatrix.Internal.DecodedBitStreamParser.BASE256_ENCODE.html ├── ZXing.Datamatrix.Internal.DecodedBitStreamParser.C40_ENCODE.html ├── ZXing.Datamatrix.Internal.DecodedBitStreamParser.EDIFACT_ENCODE.html ├── ZXing.Datamatrix.Internal.DecodedBitStreamParser.PAD_ENCODE.html ├── ZXing.Datamatrix.Internal.DecodedBitStreamParser.TDecodedBitStreamParser.TMode.ANSIX12_ENCODE.html ├── ZXing.Datamatrix.Internal.DecodedBitStreamParser.TDecodedBitStreamParser.TMode.ASCII_ENCODE.html ├── ZXing.Datamatrix.Internal.DecodedBitStreamParser.TDecodedBitStreamParser.TMode.BASE256_ENCODE.html ├── ZXing.Datamatrix.Internal.DecodedBitStreamParser.TDecodedBitStreamParser.TMode.C40_ENCODE.html ├── ZXing.Datamatrix.Internal.DecodedBitStreamParser.TDecodedBitStreamParser.TMode.EDIFACT_ENCODE.html ├── ZXing.Datamatrix.Internal.DecodedBitStreamParser.TDecodedBitStreamParser.TMode.PAD_ENCODE.html ├── ZXing.Datamatrix.Internal.DecodedBitStreamParser.TDecodedBitStreamParser.TMode.TEXT_ENCODE.html ├── ZXing.Datamatrix.Internal.DecodedBitStreamParser.TDecodedBitStreamParser.TMode.html ├── ZXing.Datamatrix.Internal.DecodedBitStreamParser.TDecodedBitStreamParser.decode.html ├── ZXing.Datamatrix.Internal.DecodedBitStreamParser.TDecodedBitStreamParser.html ├── ZXing.Datamatrix.Internal.DecodedBitStreamParser.TEXT_ENCODE.html ├── ZXing.Datamatrix.Internal.DecodedBitStreamParser.html ├── ZXing.Datamatrix.Internal.Decoder.TDataMatrixDecoder.Create.html ├── ZXing.Datamatrix.Internal.Decoder.TDataMatrixDecoder.Destroy.html ├── ZXing.Datamatrix.Internal.Decoder.TDataMatrixDecoder.correctErrors.html ├── ZXing.Datamatrix.Internal.Decoder.TDataMatrixDecoder.decode(TArray(TArray(boolean))).html ├── ZXing.Datamatrix.Internal.Decoder.TDataMatrixDecoder.decode(TBitMatrix).html ├── ZXing.Datamatrix.Internal.Decoder.TDataMatrixDecoder.html ├── ZXing.Datamatrix.Internal.Decoder.html ├── ZXing.Datamatrix.Internal.Detector.TDataMatrixDetector.Create.html ├── ZXing.Datamatrix.Internal.Detector.TDataMatrixDetector.Destroy.html ├── ZXing.Datamatrix.Internal.Detector.TDataMatrixDetector.correctTopRight.html ├── ZXing.Datamatrix.Internal.Detector.TDataMatrixDetector.correctTopRightRectangular.html ├── ZXing.Datamatrix.Internal.Detector.TDataMatrixDetector.detect.html ├── ZXing.Datamatrix.Internal.Detector.TDataMatrixDetector.distance.html ├── ZXing.Datamatrix.Internal.Detector.TDataMatrixDetector.html ├── ZXing.Datamatrix.Internal.Detector.TDataMatrixDetector.increment.html ├── ZXing.Datamatrix.Internal.Detector.TDataMatrixDetector.isValid.html ├── ZXing.Datamatrix.Internal.Detector.TDataMatrixDetector.sampleGrid.html ├── ZXing.Datamatrix.Internal.Detector.TDataMatrixDetector.transitionsBetween.html ├── ZXing.Datamatrix.Internal.Detector.html ├── ZXing.Datamatrix.Internal.Version.TVersion.Destroy.html ├── ZXing.Datamatrix.Internal.Version.TVersion.TECB.Create.html ├── ZXing.Datamatrix.Internal.Version.TVersion.TECB.count.html ├── ZXing.Datamatrix.Internal.Version.TVersion.TECB.dataCodewords.html ├── ZXing.Datamatrix.Internal.Version.TVersion.TECB.html ├── ZXing.Datamatrix.Internal.Version.TVersion.TECBlocks.Create(Integer,TECB).html ├── ZXing.Datamatrix.Internal.Version.TVersion.TECBlocks.Create(Integer,TECB,TECB).html ├── ZXing.Datamatrix.Internal.Version.TVersion.TECBlocks.Destroy.html ├── ZXing.Datamatrix.Internal.Version.TVersion.TECBlocks.ECBBlocksValue.html ├── ZXing.Datamatrix.Internal.Version.TVersion.TECBlocks.ECCodewords.html ├── ZXing.Datamatrix.Internal.Version.TVersion.TECBlocks.html ├── ZXing.Datamatrix.Internal.Version.TVersion.ToString.html ├── ZXing.Datamatrix.Internal.Version.TVersion.dataRegionSizeColumns.html ├── ZXing.Datamatrix.Internal.Version.TVersion.dataRegionSizeRows.html ├── ZXing.Datamatrix.Internal.Version.TVersion.ecBlocks.html ├── ZXing.Datamatrix.Internal.Version.TVersion.getVersionForDimensions.html ├── ZXing.Datamatrix.Internal.Version.TVersion.html ├── ZXing.Datamatrix.Internal.Version.TVersion.symbolSizeColumns.html ├── ZXing.Datamatrix.Internal.Version.TVersion.symbolSizeRows.html ├── ZXing.Datamatrix.Internal.Version.TVersion.totalCodewords.html ├── ZXing.Datamatrix.Internal.Version.TVersion.versionNumber.html ├── ZXing.Datamatrix.Internal.Version.html ├── ZXing.DecodeHintType.ALLOWED_EAN_EXTENSIONS.html ├── ZXing.DecodeHintType.ALLOWED_LENGTHS.html ├── ZXing.DecodeHintType.ASSUME_CODE_39_CHECK_DIGIT.html ├── ZXing.DecodeHintType.ASSUME_GS1.html ├── ZXing.DecodeHintType.ASSUME_MSI_CHECK_DIGIT.html ├── ZXing.DecodeHintType.CHARACTER_SET.html ├── ZXing.DecodeHintType.ENABLE_INVERSION.html ├── ZXing.DecodeHintType.NEED_RESULT_POINT_CALLBACK.html ├── ZXing.DecodeHintType.OTHER.html ├── ZXing.DecodeHintType.POSSIBLE_FORMATS.html ├── ZXing.DecodeHintType.PURE_BARCODE.html ├── ZXing.DecodeHintType.RELAXED_CODE_39_EXTENDED_MODE.html ├── ZXing.DecodeHintType.RETURN_CODABAR_START_END.html ├── ZXing.DecodeHintType.TDecodeHintType.ALLOWED_EAN_EXTENSIONS.html ├── ZXing.DecodeHintType.TDecodeHintType.ALLOWED_LENGTHS.html ├── ZXing.DecodeHintType.TDecodeHintType.ASSUME_CODE_39_CHECK_DIGIT.html ├── ZXing.DecodeHintType.TDecodeHintType.ASSUME_GS1.html ├── ZXing.DecodeHintType.TDecodeHintType.ASSUME_MSI_CHECK_DIGIT.html ├── ZXing.DecodeHintType.TDecodeHintType.CHARACTER_SET.html ├── ZXing.DecodeHintType.TDecodeHintType.ENABLE_INVERSION.html ├── ZXing.DecodeHintType.TDecodeHintType.NEED_RESULT_POINT_CALLBACK.html ├── ZXing.DecodeHintType.TDecodeHintType.OTHER.html ├── ZXing.DecodeHintType.TDecodeHintType.POSSIBLE_FORMATS.html ├── ZXing.DecodeHintType.TDecodeHintType.PURE_BARCODE.html ├── ZXing.DecodeHintType.TDecodeHintType.RELAXED_CODE_39_EXTENDED_MODE.html ├── ZXing.DecodeHintType.TDecodeHintType.RETURN_CODABAR_START_END.html ├── ZXing.DecodeHintType.TDecodeHintType.TRY_HARDER.html ├── ZXing.DecodeHintType.TDecodeHintType.TRY_HARDER_WITHOUT_ROTATION.html ├── ZXing.DecodeHintType.TDecodeHintType.USE_CODE_39_EXTENDED_MODE.html ├── ZXing.DecodeHintType.TDecodeHintType.html ├── ZXing.DecodeHintType.TRY_HARDER.html ├── ZXing.DecodeHintType.TRY_HARDER_WITHOUT_ROTATION.html ├── ZXing.DecodeHintType.USE_CODE_39_EXTENDED_MODE.html ├── ZXing.DecodeHintType.html ├── ZXing.DecoderResult.TDecoderResult.ByteSegments.html ├── ZXing.DecoderResult.TDecoderResult.Create(TArray(Byte),string,IByteSegments,string).html ├── ZXing.DecoderResult.TDecoderResult.Create(TArray(Byte),string,IByteSegments,string,Integer,Integer).html ├── ZXing.DecoderResult.TDecoderResult.Destroy.html ├── ZXing.DecoderResult.TDecoderResult.ECLevel.html ├── ZXing.DecoderResult.TDecoderResult.Erasures.html ├── ZXing.DecoderResult.TDecoderResult.ErrorsCorrected.html ├── ZXing.DecoderResult.TDecoderResult.Other.html ├── ZXing.DecoderResult.TDecoderResult.RawBytes.html ├── ZXing.DecoderResult.TDecoderResult.StructuredAppend.html ├── ZXing.DecoderResult.TDecoderResult.StructuredAppendParity.html ├── ZXing.DecoderResult.TDecoderResult.StructuredAppendSequenceNumber.html ├── ZXing.DecoderResult.TDecoderResult.Text.html ├── ZXing.DecoderResult.TDecoderResult.html ├── ZXing.DecoderResult.html ├── ZXing.DefaultGridSampler.TDefaultGridSampler.Instance.html ├── ZXing.DefaultGridSampler.TDefaultGridSampler.checkAndNudgePoints.html ├── ZXing.DefaultGridSampler.TDefaultGridSampler.html ├── ZXing.DefaultGridSampler.TDefaultGridSampler.sampleGrid(TBitMatrix,Integer,Integer,Single,Single,Single,Single,Single,Single,Single,Single,Single,Single,Single,Single,Single,Single,Single,Single).html ├── ZXing.DefaultGridSampler.TDefaultGridSampler.sampleGrid(TBitMatrix,Integer,Integer,TPerspectiveTransform).html ├── ZXing.DefaultGridSampler.TDefaultGridSampler.setGridSampler.html ├── ZXing.DefaultGridSampler.html ├── ZXing.EncodeHintType.AZTEC_LAYERS.html ├── ZXing.EncodeHintType.CHARACTER_SET.html ├── ZXing.EncodeHintType.CODE128_FORCE_CODESET_B.html ├── ZXing.EncodeHintType.DATA_MATRIX_DEFAULT_ENCODATION.html ├── ZXing.EncodeHintType.DATA_MATRIX_SHAPE.html ├── ZXing.EncodeHintType.DISABLE_ECI.html ├── ZXing.EncodeHintType.ERROR_CORRECTION.html ├── ZXing.EncodeHintType.HEIGHT.html ├── ZXing.EncodeHintType.MARGIN.html ├── ZXing.EncodeHintType.MAX_SIZE.html ├── ZXing.EncodeHintType.MIN_SIZE.html ├── ZXing.EncodeHintType.PDF417_COMPACTION.html ├── ZXing.EncodeHintType.PDF417_DIMENSIONS.html ├── ZXing.EncodeHintType.PURE_BARCODE.html ├── ZXing.EncodeHintType.TEncodeHintType.AZTEC_LAYERS.html ├── ZXing.EncodeHintType.TEncodeHintType.CHARACTER_SET.html ├── ZXing.EncodeHintType.TEncodeHintType.CODE128_FORCE_CODESET_B.html ├── ZXing.EncodeHintType.TEncodeHintType.DATA_MATRIX_DEFAULT_ENCODATION.html ├── ZXing.EncodeHintType.TEncodeHintType.DATA_MATRIX_SHAPE.html ├── ZXing.EncodeHintType.TEncodeHintType.DISABLE_ECI.html ├── ZXing.EncodeHintType.TEncodeHintType.ERROR_CORRECTION.html ├── ZXing.EncodeHintType.TEncodeHintType.HEIGHT.html ├── ZXing.EncodeHintType.TEncodeHintType.MARGIN.html ├── ZXing.EncodeHintType.TEncodeHintType.MAX_SIZE.html ├── ZXing.EncodeHintType.TEncodeHintType.MIN_SIZE.html ├── ZXing.EncodeHintType.TEncodeHintType.PDF417_COMPACTION.html ├── ZXing.EncodeHintType.TEncodeHintType.PDF417_DIMENSIONS.html ├── ZXing.EncodeHintType.TEncodeHintType.PURE_BARCODE.html ├── ZXing.EncodeHintType.TEncodeHintType.WIDTH.html ├── ZXing.EncodeHintType.TEncodeHintType.html ├── ZXing.EncodeHintType.WIDTH.html ├── ZXing.EncodeHintType.html ├── ZXing.GlobalHistogramBinarizer.TGlobalHistogramBinarizer.Create.html ├── ZXing.GlobalHistogramBinarizer.TGlobalHistogramBinarizer.GetBlackRow.html ├── ZXing.GlobalHistogramBinarizer.TGlobalHistogramBinarizer.html ├── ZXing.GlobalHistogramBinarizer.html ├── ZXing.Helpers.TArray.Clone.html ├── ZXing.Helpers.TArray.CopyInSameArray.html ├── ZXing.Helpers.TArray.html ├── ZXing.Helpers.html ├── ZXing.HybridBinarizer.TArrayIntOfInt.html ├── ZXing.HybridBinarizer.THybridBinarizer.BlackMatrix.html ├── ZXing.HybridBinarizer.THybridBinarizer.Create.html ├── ZXing.HybridBinarizer.THybridBinarizer.createBinarizer.html ├── ZXing.HybridBinarizer.THybridBinarizer.html ├── ZXing.HybridBinarizer.html ├── ZXing.InvertedLuminanceSource.TInvertedLuminanceSource.Create.html ├── ZXing.InvertedLuminanceSource.TInvertedLuminanceSource.CropSupported.html ├── ZXing.InvertedLuminanceSource.TInvertedLuminanceSource.Matrix.html ├── ZXing.InvertedLuminanceSource.TInvertedLuminanceSource.RotateSupported.html ├── ZXing.InvertedLuminanceSource.TInvertedLuminanceSource.crop.html ├── ZXing.InvertedLuminanceSource.TInvertedLuminanceSource.getRow.html ├── ZXing.InvertedLuminanceSource.TInvertedLuminanceSource.html ├── ZXing.InvertedLuminanceSource.TInvertedLuminanceSource.invert.html ├── ZXing.InvertedLuminanceSource.TInvertedLuminanceSource.rotateCounterClockwise.html ├── ZXing.InvertedLuminanceSource.TInvertedLuminanceSource.rotateCounterClockwise45.html ├── ZXing.InvertedLuminanceSource.html ├── ZXing.LuminanceSource.TLuminanceSource.Create.html ├── ZXing.LuminanceSource.TLuminanceSource.CropSupported.html ├── ZXing.LuminanceSource.TLuminanceSource.FHeight.html ├── ZXing.LuminanceSource.TLuminanceSource.FWidth.html ├── ZXing.LuminanceSource.TLuminanceSource.Height.html ├── ZXing.LuminanceSource.TLuminanceSource.InversionSupported.html ├── ZXing.LuminanceSource.TLuminanceSource.Matrix.html ├── ZXing.LuminanceSource.TLuminanceSource.RotateSupported.html ├── ZXing.LuminanceSource.TLuminanceSource.ToString.html ├── ZXing.LuminanceSource.TLuminanceSource.Width.html ├── ZXing.LuminanceSource.TLuminanceSource.crop.html ├── ZXing.LuminanceSource.TLuminanceSource.getRow.html ├── ZXing.LuminanceSource.TLuminanceSource.html ├── ZXing.LuminanceSource.TLuminanceSource.invert.html ├── ZXing.LuminanceSource.TLuminanceSource.rotateCounterClockwise.html ├── ZXing.LuminanceSource.TLuminanceSource.rotateCounterClockwise45.html ├── ZXing.LuminanceSource.html ├── ZXing.MultiFormatReader.TMultiFormatReader.DecodeWithState.html ├── ZXing.MultiFormatReader.TMultiFormatReader.Destroy.html ├── ZXing.MultiFormatReader.TMultiFormatReader.FreeReaders.html ├── ZXing.MultiFormatReader.TMultiFormatReader.Reset.html ├── ZXing.MultiFormatReader.TMultiFormatReader.decode(TBinaryBitmap).html ├── ZXing.MultiFormatReader.TMultiFormatReader.decode(TBinaryBitmap,Boolean).html ├── ZXing.MultiFormatReader.TMultiFormatReader.decode(TBinaryBitmap,TDictionary(TDecodeHintType,-TObject)).html ├── ZXing.MultiFormatReader.TMultiFormatReader.hints.html ├── ZXing.MultiFormatReader.TMultiFormatReader.html ├── ZXing.MultiFormatReader.html ├── ZXing.OneD.Code128Reader.TCode128Reader.decodeRow.html ├── ZXing.OneD.Code128Reader.TCode128Reader.html ├── ZXing.OneD.Code128Reader.html ├── ZXing.OneD.Code39Reader.TCode39Reader.Create.html ├── ZXing.OneD.Code39Reader.TCode39Reader.Destroy.html ├── ZXing.OneD.Code39Reader.TCode39Reader.decodeRow.html ├── ZXing.OneD.Code39Reader.TCode39Reader.html ├── ZXing.OneD.Code39Reader.html ├── ZXing.OneD.Code93Reader.TCode93Reader.Create.html ├── ZXing.OneD.Code93Reader.TCode93Reader.Destroy.html ├── ZXing.OneD.Code93Reader.TCode93Reader.decodeRow.html ├── ZXing.OneD.Code93Reader.TCode93Reader.html ├── ZXing.OneD.Code93Reader.html ├── ZXing.OneD.EAN13Reader.TEAN13Reader.BarcodeFormat.html ├── ZXing.OneD.EAN13Reader.TEAN13Reader.DecodeMiddle.html ├── ZXing.OneD.EAN13Reader.TEAN13Reader.html ├── ZXing.OneD.EAN13Reader.html ├── ZXing.OneD.EAN8Reader.TEAN8Reader.BarcodeFormat.html ├── ZXing.OneD.EAN8Reader.TEAN8Reader.DecodeMiddle.html ├── ZXing.OneD.EAN8Reader.TEAN8Reader.html ├── ZXing.OneD.EAN8Reader.html ├── ZXing.OneD.EANManufacturerOrgSupport.TEANManufacturerOrgSupport.Create.html ├── ZXing.OneD.EANManufacturerOrgSupport.TEANManufacturerOrgSupport.Destroy.html ├── ZXing.OneD.EANManufacturerOrgSupport.TEANManufacturerOrgSupport.html ├── ZXing.OneD.EANManufacturerOrgSupport.TEANManufacturerOrgSupport.lookupCountryIdentifier.html ├── ZXing.OneD.EANManufacturerOrgSupport.html ├── ZXing.OneD.ITFReader.TITFReader.decodeRow.html ├── ZXing.OneD.ITFReader.TITFReader.html ├── ZXing.OneD.ITFReader.html ├── ZXing.OneD.OneDReader.TOneDPattern.html ├── ZXing.OneD.OneDReader.TOneDPatterns.html ├── ZXing.OneD.OneDReader.TOneDReader.INTEGER_MATH_SHIFT.html ├── ZXing.OneD.OneDReader.TOneDReader.RecordPatternInReverse.html ├── ZXing.OneD.OneDReader.TOneDReader.decode(TBinaryBitmap).html ├── ZXing.OneD.OneDReader.TOneDReader.decode(TBinaryBitmap,TDictionary(TDecodeHintType,-TObject)).html ├── ZXing.OneD.OneDReader.TOneDReader.decodeRow.html ├── ZXing.OneD.OneDReader.TOneDReader.html ├── ZXing.OneD.OneDReader.TOneDReader.patternMatchVariance.html ├── ZXing.OneD.OneDReader.TOneDReader.recordPattern.html ├── ZXing.OneD.OneDReader.TOneDReader.reset.html ├── ZXing.OneD.OneDReader.html ├── ZXing.OneD.UPCAReader.TUPCAReader.BarcodeFormat.html ├── ZXing.OneD.UPCAReader.TUPCAReader.Create.html ├── ZXing.OneD.UPCAReader.TUPCAReader.DecodeMiddle.html ├── ZXing.OneD.UPCAReader.TUPCAReader.Destroy.html ├── ZXing.OneD.UPCAReader.TUPCAReader.decode.html ├── ZXing.OneD.UPCAReader.TUPCAReader.decodeRow(Integer,IBitArray,TArray(Integer),TDictionary(TDecodeHintType,-TObject)).html ├── ZXing.OneD.UPCAReader.TUPCAReader.decodeRow(Integer,IBitArray,TDictionary(TDecodeHintType,-TObject)).html ├── ZXing.OneD.UPCAReader.TUPCAReader.html ├── ZXing.OneD.UPCAReader.html ├── ZXing.OneD.UPCEANExtension2Support.TUPCEANExtension2Support.decodeRow.html ├── ZXing.OneD.UPCEANExtension2Support.TUPCEANExtension2Support.html ├── ZXing.OneD.UPCEANExtension2Support.html ├── ZXing.OneD.UPCEANExtension5Support.TUPCEANExtension5Support.decodeRow.html ├── ZXing.OneD.UPCEANExtension5Support.TUPCEANExtension5Support.html ├── ZXing.OneD.UPCEANExtension5Support.html ├── ZXing.OneD.UPCEANExtensionSupport.TUPCEANExtensionSupport.Create.html ├── ZXing.OneD.UPCEANExtensionSupport.TUPCEANExtensionSupport.Destroy.html ├── ZXing.OneD.UPCEANExtensionSupport.TUPCEANExtensionSupport.decodeRow.html ├── ZXing.OneD.UPCEANExtensionSupport.TUPCEANExtensionSupport.html ├── ZXing.OneD.UPCEANExtensionSupport.html ├── ZXing.OneD.UPCEANReader.TUPCEANReader.BarcodeFormat.html ├── ZXing.OneD.UPCEANReader.TUPCEANReader.Create.html ├── ZXing.OneD.UPCEANReader.TUPCEANReader.DecodeMiddle.html ├── ZXing.OneD.UPCEANReader.TUPCEANReader.Destroy.html ├── ZXing.OneD.UPCEANReader.TUPCEANReader.DoDecodeRow.html ├── ZXing.OneD.UPCEANReader.TUPCEANReader.G_PATTERNS.html ├── ZXing.OneD.UPCEANReader.TUPCEANReader.L_PATTERNS.html ├── ZXing.OneD.UPCEANReader.TUPCEANReader.MAX_AVG_VARIANCE.html ├── ZXing.OneD.UPCEANReader.TUPCEANReader.MAX_INDIVIDUAL_VARIANCE.html ├── ZXing.OneD.UPCEANReader.TUPCEANReader.MIDDLE_PATTERN.html ├── ZXing.OneD.UPCEANReader.TUPCEANReader.START_END_PATTERN.html ├── ZXing.OneD.UPCEANReader.TUPCEANReader.checkChecksum.html ├── ZXing.OneD.UPCEANReader.TUPCEANReader.decodeDigit.html ├── ZXing.OneD.UPCEANReader.TUPCEANReader.decodeEnd.html ├── ZXing.OneD.UPCEANReader.TUPCEANReader.decodeRow.html ├── ZXing.OneD.UPCEANReader.TUPCEANReader.findGuardPattern(IBitArray,Integer,Boolean,TOneDPattern).html ├── ZXing.OneD.UPCEANReader.TUPCEANReader.findStartGuardPattern.html ├── ZXing.OneD.UPCEANReader.TUPCEANReader.html ├── ZXing.OneD.UPCEANReader.html ├── ZXing.OneD.UPCEReader.T2DIntArray.html ├── ZXing.OneD.UPCEReader.TUPCEReader.BarcodeFormat.html ├── ZXing.OneD.UPCEReader.TUPCEReader.DecodeMiddle.html ├── ZXing.OneD.UPCEReader.TUPCEReader.checkChecksum.html ├── ZXing.OneD.UPCEReader.TUPCEReader.convertUPCEtoUPCA.html ├── ZXing.OneD.UPCEReader.TUPCEReader.decodeEnd.html ├── ZXing.OneD.UPCEReader.TUPCEReader.html ├── ZXing.OneD.UPCEReader.html ├── ZXing.PlanarYUVLuminanceSource.TPlanarYUVLuminanceSource.Create(TArray(Byte),Integer,Integer).html ├── ZXing.PlanarYUVLuminanceSource.TPlanarYUVLuminanceSource.Create(TArray(Byte),Integer,Integer,Integer,Integer,Integer,Integer,Boolean).html ├── ZXing.PlanarYUVLuminanceSource.TPlanarYUVLuminanceSource.CreateLuminanceSource.html ├── ZXing.PlanarYUVLuminanceSource.TPlanarYUVLuminanceSource.CropSupported.html ├── ZXing.PlanarYUVLuminanceSource.TPlanarYUVLuminanceSource.Matrix.html ├── ZXing.PlanarYUVLuminanceSource.TPlanarYUVLuminanceSource.ThumbnailHeight.html ├── ZXing.PlanarYUVLuminanceSource.TPlanarYUVLuminanceSource.ThumbnailWidth.html ├── ZXing.PlanarYUVLuminanceSource.TPlanarYUVLuminanceSource.crop.html ├── ZXing.PlanarYUVLuminanceSource.TPlanarYUVLuminanceSource.getRow.html ├── ZXing.PlanarYUVLuminanceSource.TPlanarYUVLuminanceSource.html ├── ZXing.PlanarYUVLuminanceSource.TPlanarYUVLuminanceSource.renderThumbnail.html ├── ZXing.PlanarYUVLuminanceSource.html ├── ZXing.QrCode.Internal.AlignmentPattern.IAlignmentPattern.aboutEquals.html ├── ZXing.QrCode.Internal.AlignmentPattern.IAlignmentPattern.combineEstimate.html ├── ZXing.QrCode.Internal.AlignmentPattern.IAlignmentPattern.html ├── ZXing.QrCode.Internal.AlignmentPattern.TAlignmentPatternHelpers.CreateAlignmentPattern.html ├── ZXing.QrCode.Internal.AlignmentPattern.TAlignmentPatternHelpers.html ├── ZXing.QrCode.Internal.AlignmentPattern.html ├── ZXing.QrCode.Internal.AlignmentPatternFinder.TAlignmentPatternFinder.Create.html ├── ZXing.QrCode.Internal.AlignmentPatternFinder.TAlignmentPatternFinder.Destroy.html ├── ZXing.QrCode.Internal.AlignmentPatternFinder.TAlignmentPatternFinder.find.html ├── ZXing.QrCode.Internal.AlignmentPatternFinder.TAlignmentPatternFinder.html ├── ZXing.QrCode.Internal.AlignmentPatternFinder.html ├── ZXing.QrCode.Internal.AlignmentPatternImplementation.NewAlignmentPattern.html ├── ZXing.QrCode.Internal.AlignmentPatternImplementation.html ├── ZXing.QrCode.Internal.BitMatrixParser.TBitMatrixParser.Create.html ├── ZXing.QrCode.Internal.BitMatrixParser.TBitMatrixParser.createBitMatrixParser.html ├── ZXing.QrCode.Internal.BitMatrixParser.TBitMatrixParser.html ├── ZXing.QrCode.Internal.BitMatrixParser.TBitMatrixParser.mirror.html ├── ZXing.QrCode.Internal.BitMatrixParser.TBitMatrixParser.parsedFormatInfo.html ├── ZXing.QrCode.Internal.BitMatrixParser.TBitMatrixParser.readCodewords.html ├── ZXing.QrCode.Internal.BitMatrixParser.TBitMatrixParser.readFormatInformation.html ├── ZXing.QrCode.Internal.BitMatrixParser.TBitMatrixParser.readVersion.html ├── ZXing.QrCode.Internal.BitMatrixParser.TBitMatrixParser.remask.html ├── ZXing.QrCode.Internal.BitMatrixParser.TBitMatrixParser.setMirror.html ├── ZXing.QrCode.Internal.BitMatrixParser.html ├── ZXing.QrCode.Internal.DataBlock.TDataBlock.Create.html ├── ZXing.QrCode.Internal.DataBlock.TDataBlock.Destroy.html ├── ZXing.QrCode.Internal.DataBlock.TDataBlock.codewords.html ├── ZXing.QrCode.Internal.DataBlock.TDataBlock.getDataBlocks.html ├── ZXing.QrCode.Internal.DataBlock.TDataBlock.html ├── ZXing.QrCode.Internal.DataBlock.TDataBlock.numDataCodewords.html ├── ZXing.QrCode.Internal.DataBlock.html ├── ZXing.QrCode.Internal.DataMask.TDataMask.forReference.html ├── ZXing.QrCode.Internal.DataMask.TDataMask.html ├── ZXing.QrCode.Internal.DataMask.TDataMask.unmaskBitMatrix.html ├── ZXing.QrCode.Internal.DataMask.TDataMask000.html ├── ZXing.QrCode.Internal.DataMask.TDataMask001.html ├── ZXing.QrCode.Internal.DataMask.TDataMask010.html ├── ZXing.QrCode.Internal.DataMask.TDataMask011.html ├── ZXing.QrCode.Internal.DataMask.TDataMask100.html ├── ZXing.QrCode.Internal.DataMask.TDataMask101.html ├── ZXing.QrCode.Internal.DataMask.TDataMask110.html ├── ZXing.QrCode.Internal.DataMask.TDataMask111.html ├── ZXing.QrCode.Internal.DataMask.html ├── ZXing.QrCode.Internal.DecodedBitStreamParser.TDecodedBitStreamParser.decode.html ├── ZXing.QrCode.Internal.DecodedBitStreamParser.TDecodedBitStreamParser.html ├── ZXing.QrCode.Internal.DecodedBitStreamParser.html ├── ZXing.QrCode.Internal.Decoder.TQRDecoder.Create.html ├── ZXing.QrCode.Internal.Decoder.TQRDecoder.Destroy.html ├── ZXing.QrCode.Internal.Decoder.TQRDecoder.decode(TArray(TArray(Boolean)),TDictionary(TDecodeHintType,-TObject)).html ├── ZXing.QrCode.Internal.Decoder.TQRDecoder.decode(TBitMatrix,TDictionary(TDecodeHintType,-TObject)).html ├── ZXing.QrCode.Internal.Decoder.TQRDecoder.html ├── ZXing.QrCode.Internal.Decoder.html ├── ZXing.QrCode.Internal.Detector.TDetector.Create.html ├── ZXing.QrCode.Internal.Detector.TDetector.Destroy.html ├── ZXing.QrCode.Internal.Detector.TDetector.ResultPointCallback.html ├── ZXing.QrCode.Internal.Detector.TDetector.calculateModuleSize.html ├── ZXing.QrCode.Internal.Detector.TDetector.detect(TDictionary(TDecodeHintType,-TObject)).html ├── ZXing.QrCode.Internal.Detector.TDetector.detect.html ├── ZXing.QrCode.Internal.Detector.TDetector.findAlignmentInRegion.html ├── ZXing.QrCode.Internal.Detector.TDetector.html ├── ZXing.QrCode.Internal.Detector.TDetector.image.html ├── ZXing.QrCode.Internal.Detector.TDetector.processFinderPatternInfo.html ├── ZXing.QrCode.Internal.Detector.html ├── ZXing.QrCode.Internal.ErrorCorrectionLevel.TErrorCorrectionLevel.Bits.html ├── ZXing.QrCode.Internal.ErrorCorrectionLevel.TErrorCorrectionLevel.Create.html ├── ZXing.QrCode.Internal.ErrorCorrectionLevel.TErrorCorrectionLevel.H.html ├── ZXing.QrCode.Internal.ErrorCorrectionLevel.TErrorCorrectionLevel.L.html ├── ZXing.QrCode.Internal.ErrorCorrectionLevel.TErrorCorrectionLevel.M.html ├── ZXing.QrCode.Internal.ErrorCorrectionLevel.TErrorCorrectionLevel.Name.html ├── ZXing.QrCode.Internal.ErrorCorrectionLevel.TErrorCorrectionLevel.Q.html ├── ZXing.QrCode.Internal.ErrorCorrectionLevel.TErrorCorrectionLevel.ToString.html ├── ZXing.QrCode.Internal.ErrorCorrectionLevel.TErrorCorrectionLevel.forBits.html ├── ZXing.QrCode.Internal.ErrorCorrectionLevel.TErrorCorrectionLevel.html ├── ZXing.QrCode.Internal.ErrorCorrectionLevel.TErrorCorrectionLevel.ordinal.html ├── ZXing.QrCode.Internal.ErrorCorrectionLevel.html ├── ZXing.QrCode.Internal.FinderPattern.IFinderPattern.GetCount.html ├── ZXing.QrCode.Internal.FinderPattern.IFinderPattern.SetCount.html ├── ZXing.QrCode.Internal.FinderPattern.IFinderPattern.aboutEquals.html ├── ZXing.QrCode.Internal.FinderPattern.IFinderPattern.combineEstimate.html ├── ZXing.QrCode.Internal.FinderPattern.IFinderPattern.count.html ├── ZXing.QrCode.Internal.FinderPattern.IFinderPattern.estimatedModuleSize.html ├── ZXing.QrCode.Internal.FinderPattern.IFinderPattern.html ├── ZXing.QrCode.Internal.FinderPattern.TFinderPatternHelpers.CreateFinderPattern(Single,Single,Single).html ├── ZXing.QrCode.Internal.FinderPattern.TFinderPatternHelpers.CreateFinderPattern(Single,Single,Single,Integer).html ├── ZXing.QrCode.Internal.FinderPattern.TFinderPatternHelpers.html ├── ZXing.QrCode.Internal.FinderPattern.TFinderPatternHelpers.orderBestPatterns.html ├── ZXing.QrCode.Internal.FinderPattern.html ├── ZXing.QrCode.Internal.FinderPatternFinder.TCenterComparator.Compare.html ├── ZXing.QrCode.Internal.FinderPatternFinder.TCenterComparator.Create.html ├── ZXing.QrCode.Internal.FinderPatternFinder.TCenterComparator.html ├── ZXing.QrCode.Internal.FinderPatternFinder.TFinderPatternFinder.Create(TBitMatrix).html ├── ZXing.QrCode.Internal.FinderPatternFinder.TFinderPatternFinder.Create(TBitMatrix,TResultPointCallback).html ├── ZXing.QrCode.Internal.FinderPatternFinder.TFinderPatternFinder.Destroy.html ├── ZXing.QrCode.Internal.FinderPatternFinder.TFinderPatternFinder.MAX_MODULES.html ├── ZXing.QrCode.Internal.FinderPatternFinder.TFinderPatternFinder.MIN_SKIP.html ├── ZXing.QrCode.Internal.FinderPatternFinder.TFinderPatternFinder.find.html ├── ZXing.QrCode.Internal.FinderPatternFinder.TFinderPatternFinder.foundPatternCross.html ├── ZXing.QrCode.Internal.FinderPatternFinder.TFinderPatternFinder.handlePossibleCenter.html ├── ZXing.QrCode.Internal.FinderPatternFinder.TFinderPatternFinder.html ├── ZXing.QrCode.Internal.FinderPatternFinder.TFinderPatternFinder.image.html ├── ZXing.QrCode.Internal.FinderPatternFinder.TFurthestFromAverageComparator.Compare.html ├── ZXing.QrCode.Internal.FinderPatternFinder.TFurthestFromAverageComparator.Create.html ├── ZXing.QrCode.Internal.FinderPatternFinder.TFurthestFromAverageComparator.html ├── ZXing.QrCode.Internal.FinderPatternFinder.html ├── ZXing.QrCode.Internal.FinderPatternImplementation.NewFinderPattern(Single,Single,Single).html ├── ZXing.QrCode.Internal.FinderPatternImplementation.NewFinderPattern(Single,Single,Single,Integer).html ├── ZXing.QrCode.Internal.FinderPatternImplementation.html ├── ZXing.QrCode.Internal.FinderPatternInfo.TFinderPatternInfo.Create.html ├── ZXing.QrCode.Internal.FinderPatternInfo.TFinderPatternInfo.bottomLeft.html ├── ZXing.QrCode.Internal.FinderPatternInfo.TFinderPatternInfo.html ├── ZXing.QrCode.Internal.FinderPatternInfo.TFinderPatternInfo.topLeft.html ├── ZXing.QrCode.Internal.FinderPatternInfo.TFinderPatternInfo.topRight.html ├── ZXing.QrCode.Internal.FinderPatternInfo.html ├── ZXing.QrCode.Internal.FormatInformation.TFormatInformation.Create.html ├── ZXing.QrCode.Internal.FormatInformation.TFormatInformation.DataMask.html ├── ZXing.QrCode.Internal.FormatInformation.TFormatInformation.Equals.html ├── ZXing.QrCode.Internal.FormatInformation.TFormatInformation.ErrorCorrectionLevel.html ├── ZXing.QrCode.Internal.FormatInformation.TFormatInformation.GetHashCode.html ├── ZXing.QrCode.Internal.FormatInformation.TFormatInformation.decodeFormatInformation.html ├── ZXing.QrCode.Internal.FormatInformation.TFormatInformation.html ├── ZXing.QrCode.Internal.FormatInformation.TFormatInformation.numBitsDiffering.html ├── ZXing.QrCode.Internal.FormatInformation.html ├── ZXing.QrCode.Internal.Mode.TMode.ALPHANUMERIC.html ├── ZXing.QrCode.Internal.Mode.TMode.BYTE.html ├── ZXing.QrCode.Internal.Mode.TMode.Bits.html ├── ZXing.QrCode.Internal.Mode.TMode.Create(TArray(Integer),Integer,string).html ├── ZXing.QrCode.Internal.Mode.TMode.ECI.html ├── ZXing.QrCode.Internal.Mode.TMode.FNC1_FIRST_POSITION.html ├── ZXing.QrCode.Internal.Mode.TMode.FNC1_SECOND_POSITION.html ├── ZXing.QrCode.Internal.Mode.TMode.HANZI.html ├── ZXing.QrCode.Internal.Mode.TMode.KANJI.html ├── ZXing.QrCode.Internal.Mode.TMode.NUMERIC.html ├── ZXing.QrCode.Internal.Mode.TMode.Name.html ├── ZXing.QrCode.Internal.Mode.TMode.STRUCTURED_APPEND.html ├── ZXing.QrCode.Internal.Mode.TMode.TERMINATOR.html ├── ZXing.QrCode.Internal.Mode.TMode.ToString.html ├── ZXing.QrCode.Internal.Mode.TMode.forBits.html ├── ZXing.QrCode.Internal.Mode.TMode.getCharacterCountBits.html ├── ZXing.QrCode.Internal.Mode.TMode.html ├── ZXing.QrCode.Internal.Mode.html ├── ZXing.QrCode.Internal.QRCodeDecoderMetaData.TQRCodeDecoderMetaData.Create.html ├── ZXing.QrCode.Internal.QRCodeDecoderMetaData.TQRCodeDecoderMetaData.IsMirrored.html ├── ZXing.QrCode.Internal.QRCodeDecoderMetaData.TQRCodeDecoderMetaData.applyMirroredCorrection.html ├── ZXing.QrCode.Internal.QRCodeDecoderMetaData.TQRCodeDecoderMetaData.html ├── ZXing.QrCode.Internal.QRCodeDecoderMetaData.html ├── ZXing.QrCode.Internal.Version.TVersion.Create.html ├── ZXing.QrCode.Internal.Version.TVersion.Destroy.html ├── ZXing.QrCode.Internal.Version.TVersion.DimensionForVersion.html ├── ZXing.QrCode.Internal.Version.TVersion.TECB.Create.html ├── ZXing.QrCode.Internal.Version.TVersion.TECB.count.html ├── ZXing.QrCode.Internal.Version.TVersion.TECB.dataCodewords.html ├── ZXing.QrCode.Internal.Version.TVersion.TECB.html ├── ZXing.QrCode.Internal.Version.TVersion.TECBlocks.Create.html ├── ZXing.QrCode.Internal.Version.TVersion.TECBlocks.Destroy.html ├── ZXing.QrCode.Internal.Version.TVersion.TECBlocks.NumBlocks.html ├── ZXing.QrCode.Internal.Version.TVersion.TECBlocks.TotalECCodewords.html ├── ZXing.QrCode.Internal.Version.TVersion.TECBlocks.ecCodewordsPerBlock.html ├── ZXing.QrCode.Internal.Version.TVersion.TECBlocks.getECBlocks.html ├── ZXing.QrCode.Internal.Version.TVersion.TECBlocks.html ├── ZXing.QrCode.Internal.Version.TVersion.ToString.html ├── ZXing.QrCode.Internal.Version.TVersion.TotalCodewords.html ├── ZXing.QrCode.Internal.Version.TVersion.alignmentPatternCenters.html ├── ZXing.QrCode.Internal.Version.TVersion.buildFunctionPattern.html ├── ZXing.QrCode.Internal.Version.TVersion.decodeVersionInformation.html ├── ZXing.QrCode.Internal.Version.TVersion.getECBlocksForLevel.html ├── ZXing.QrCode.Internal.Version.TVersion.getProvisionalVersionForDimension.html ├── ZXing.QrCode.Internal.Version.TVersion.getVersionForNumber.html ├── ZXing.QrCode.Internal.Version.TVersion.html ├── ZXing.QrCode.Internal.Version.TVersion.versionNumber.html ├── ZXing.QrCode.Internal.Version.html ├── ZXing.QrCode.QRCodeReader.TQRCodeReader.Create.html ├── ZXing.QrCode.QRCodeReader.TQRCodeReader.Decoder.html ├── ZXing.QrCode.QRCodeReader.TQRCodeReader.Destroy.html ├── ZXing.QrCode.QRCodeReader.TQRCodeReader.decode(TBinaryBitmap).html ├── ZXing.QrCode.QRCodeReader.TQRCodeReader.decode(TBinaryBitmap,TDictionary(TDecodeHintType,-TObject)).html ├── ZXing.QrCode.QRCodeReader.TQRCodeReader.html ├── ZXing.QrCode.QRCodeReader.TQRCodeReader.reset.html ├── ZXing.QrCode.QRCodeReader.html ├── ZXing.RGBLuminanceSource.ARGB32.html ├── ZXing.RGBLuminanceSource.BGR24.html ├── ZXing.RGBLuminanceSource.BGR32.html ├── ZXing.RGBLuminanceSource.BGRA32.html ├── ZXing.RGBLuminanceSource.Gray8.html ├── ZXing.RGBLuminanceSource.RGB24.html ├── ZXing.RGBLuminanceSource.RGB32.html ├── ZXing.RGBLuminanceSource.RGB565.html ├── ZXing.RGBLuminanceSource.RGBA32.html ├── ZXing.RGBLuminanceSource.TBitmapFormat.ARGB32.html ├── ZXing.RGBLuminanceSource.TBitmapFormat.BGR24.html ├── ZXing.RGBLuminanceSource.TBitmapFormat.BGR32.html ├── ZXing.RGBLuminanceSource.TBitmapFormat.BGRA32.html ├── ZXing.RGBLuminanceSource.TBitmapFormat.Gray8.html ├── ZXing.RGBLuminanceSource.TBitmapFormat.RGB24.html ├── ZXing.RGBLuminanceSource.TBitmapFormat.RGB32.html ├── ZXing.RGBLuminanceSource.TBitmapFormat.RGB565.html ├── ZXing.RGBLuminanceSource.TBitmapFormat.RGBA32.html ├── ZXing.RGBLuminanceSource.TBitmapFormat.Unknown.html ├── ZXing.RGBLuminanceSource.TBitmapFormat.html ├── ZXing.RGBLuminanceSource.TRGBLuminanceSource.BitmapFormat.html ├── ZXing.RGBLuminanceSource.TRGBLuminanceSource.CalculateLuminance.html ├── ZXing.RGBLuminanceSource.TRGBLuminanceSource.Create(Integer,Integer).html ├── ZXing.RGBLuminanceSource.TRGBLuminanceSource.Create(TArray(Byte),Integer,Integer).html ├── ZXing.RGBLuminanceSource.TRGBLuminanceSource.Create(TArray(Byte),Integer,Integer,TBitmapFormat).html ├── ZXing.RGBLuminanceSource.TRGBLuminanceSource.CreateFromBitmap.html ├── ZXing.RGBLuminanceSource.TRGBLuminanceSource.CreateLuminanceSource.html ├── ZXing.RGBLuminanceSource.TRGBLuminanceSource.html ├── ZXing.RGBLuminanceSource.Unknown.html ├── ZXing.RGBLuminanceSource.html ├── ZXing.ReadResult.IByteSegmentsMetadata.Value.html ├── ZXing.ReadResult.IByteSegmentsMetadata.html ├── ZXing.ReadResult.IIntegerMetadata.Value.html ├── ZXing.ReadResult.IIntegerMetadata.html ├── ZXing.ReadResult.IMetaData.html ├── ZXing.ReadResult.IStringMetadata.Value.html ├── ZXing.ReadResult.IStringMetadata.html ├── ZXing.ReadResult.TReadResult.BarcodeFormat.html ├── ZXing.ReadResult.TReadResult.Create(string,TArray(Byte),TArray(IResultPoint),TBarcodeFormat).html ├── ZXing.ReadResult.TReadResult.Create(string,TArray(Byte),TArray(IResultPoint),TBarcodeFormat,TDateTime).html ├── ZXing.ReadResult.TReadResult.Destroy.html ├── ZXing.ReadResult.TReadResult.ResultMetaData.html ├── ZXing.ReadResult.TReadResult.ToString.html ├── ZXing.ReadResult.TReadResult.addResultPoints.html ├── ZXing.ReadResult.TReadResult.html ├── ZXing.ReadResult.TReadResult.putAllMetaData.html ├── ZXing.ReadResult.TReadResult.putMetadata.html ├── ZXing.ReadResult.TReadResult.rawBytes.html ├── ZXing.ReadResult.TReadResult.resultPoints.html ├── ZXing.ReadResult.TReadResult.text.html ├── ZXing.ReadResult.TReadResult.timeStamp.html ├── ZXing.ReadResult.TResultMetaData.Create.html ├── ZXing.ReadResult.TResultMetaData.CreateByteSegmentsMetadata.html ├── ZXing.ReadResult.TResultMetaData.CreateIntegerMetadata.html ├── ZXing.ReadResult.TResultMetaData.CreateStringMetadata.html ├── ZXing.ReadResult.TResultMetaData.html ├── ZXing.ReadResult.html ├── ZXing.Reader.IReader.Reset.html ├── ZXing.Reader.IReader.decode(TBinaryBitmap).html ├── ZXing.Reader.IReader.decode(TBinaryBitmap,TDictionary(TDecodeHintType,-TObject)).html ├── ZXing.Reader.IReader.html ├── ZXing.Reader.html ├── ZXing.ResultMetadataType.AZTEC_EXTRA_METADATA.html ├── ZXing.ResultMetadataType.BYTE_SEGMENTS.html ├── ZXing.ResultMetadataType.ERROR_CORRECTION_LEVEL.html ├── ZXing.ResultMetadataType.ISSUE_NUMBER.html ├── ZXing.ResultMetadataType.ORIENTATION.html ├── ZXing.ResultMetadataType.OTHER.html ├── ZXing.ResultMetadataType.PDF417_EXTRA_METADATA.html ├── ZXing.ResultMetadataType.POSSIBLE_COUNTRY.html ├── ZXing.ResultMetadataType.STRUCTURED_APPEND_PARITY.html ├── ZXing.ResultMetadataType.STRUCTURED_APPEND_SEQUENCE.html ├── ZXing.ResultMetadataType.SUGGESTED_PRICE.html ├── ZXing.ResultMetadataType.TResultMetadataType.AZTEC_EXTRA_METADATA.html ├── ZXing.ResultMetadataType.TResultMetadataType.BYTE_SEGMENTS.html ├── ZXing.ResultMetadataType.TResultMetadataType.ERROR_CORRECTION_LEVEL.html ├── ZXing.ResultMetadataType.TResultMetadataType.ISSUE_NUMBER.html ├── ZXing.ResultMetadataType.TResultMetadataType.ORIENTATION.html ├── ZXing.ResultMetadataType.TResultMetadataType.OTHER.html ├── ZXing.ResultMetadataType.TResultMetadataType.PDF417_EXTRA_METADATA.html ├── ZXing.ResultMetadataType.TResultMetadataType.POSSIBLE_COUNTRY.html ├── ZXing.ResultMetadataType.TResultMetadataType.STRUCTURED_APPEND_PARITY.html ├── ZXing.ResultMetadataType.TResultMetadataType.STRUCTURED_APPEND_SEQUENCE.html ├── ZXing.ResultMetadataType.TResultMetadataType.SUGGESTED_PRICE.html ├── ZXing.ResultMetadataType.TResultMetadataType.UPC_EAN_EXTENSION.html ├── ZXing.ResultMetadataType.TResultMetadataType.html ├── ZXing.ResultMetadataType.UPC_EAN_EXTENSION.html ├── ZXing.ResultMetadataType.html ├── ZXing.ResultPoint.IResultPoint.Equals.html ├── ZXing.ResultPoint.IResultPoint.GetHashCode.html ├── ZXing.ResultPoint.IResultPoint.GetX.html ├── ZXing.ResultPoint.IResultPoint.GetY.html ├── ZXing.ResultPoint.IResultPoint.SetX.html ├── ZXing.ResultPoint.IResultPoint.SetY.html ├── ZXing.ResultPoint.IResultPoint.ToString.html ├── ZXing.ResultPoint.IResultPoint.html ├── ZXing.ResultPoint.IResultPoint.x.html ├── ZXing.ResultPoint.IResultPoint.y.html ├── ZXing.ResultPoint.TResultPointCallback.html ├── ZXing.ResultPoint.TResultPointEventObject.Create.html ├── ZXing.ResultPoint.TResultPointEventObject.Event.html ├── ZXing.ResultPoint.TResultPointEventObject.html ├── ZXing.ResultPoint.TResultPointHelpers.CreateResultPoint(Single,Single).html ├── ZXing.ResultPoint.TResultPointHelpers.CreateResultPoint.html ├── ZXing.ResultPoint.TResultPointHelpers.crossProductZ.html ├── ZXing.ResultPoint.TResultPointHelpers.distance.html ├── ZXing.ResultPoint.TResultPointHelpers.html ├── ZXing.ResultPoint.TResultPointHelpers.orderBestPatterns.html ├── ZXing.ResultPoint.html ├── ZXing.ResultPointImplementation.NewResultPoint(Single,Single).html ├── ZXing.ResultPointImplementation.NewResultPoint.html ├── ZXing.ResultPointImplementation.TResultPoint.Create(Single,Single).html ├── ZXing.ResultPointImplementation.TResultPoint.Create.html ├── ZXing.ResultPointImplementation.TResultPoint.Destroy.html ├── ZXing.ResultPointImplementation.TResultPoint.Equals.html ├── ZXing.ResultPointImplementation.TResultPoint.GetHashCode.html ├── ZXing.ResultPointImplementation.TResultPoint.ToString.html ├── ZXing.ResultPointImplementation.TResultPoint.html ├── ZXing.ResultPointImplementation.TResultPoint.x.html ├── ZXing.ResultPointImplementation.TResultPoint.y.html ├── ZXing.ResultPointImplementation.html ├── ZXing.ScanManager.TScanManager.Create.html ├── ZXing.ScanManager.TScanManager.Destroy.html ├── ZXing.ScanManager.TScanManager.OnResultPoint.html ├── ZXing.ScanManager.TScanManager.Scan.html ├── ZXing.ScanManager.TScanManager.html ├── ZXing.ScanManager.html ├── ZXing.StringUtils.TStringUtils.ASSUME_SHIFT_JIS.html ├── ZXing.StringUtils.TStringUtils.ClassInit.html ├── ZXing.StringUtils.TStringUtils.EUC_JP.html ├── ZXing.StringUtils.TStringUtils.GB2312.html ├── ZXing.StringUtils.TStringUtils.ISO88591.html ├── ZXing.StringUtils.TStringUtils.PLATFORM_DEFAULT_ENCODING.html ├── ZXing.StringUtils.TStringUtils.SHIFT_JIS.html ├── ZXing.StringUtils.TStringUtils.UTF8.html ├── ZXing.StringUtils.TStringUtils.guessEncoding.html ├── ZXing.StringUtils.TStringUtils.html ├── ZXing.StringUtils.html ├── about.AboutBox.html ├── about.TAboutBox.Comments.html ├── about.TAboutBox.Copyright.html ├── about.TAboutBox.OKButton.html ├── about.TAboutBox.Panel1.html ├── about.TAboutBox.ProductName.html ├── about.TAboutBox.ProgramIcon.html ├── about.TAboutBox.Version.html ├── about.TAboutBox.html ├── about.html ├── cadFileSelectionFrame.TFileSelectionFrame.FolderAndFileList.html ├── cadFileSelectionFrame.TFileSelectionFrame.FolderAndFileListDblClick.html ├── cadFileSelectionFrame.TFileSelectionFrame.SelectFile(string,string,TSelectFileEvent).html ├── cadFileSelectionFrame.TFileSelectionFrame.SelectFile(string,string,TSelectFileProc).html ├── cadFileSelectionFrame.TFileSelectionFrame.SelectedFile.html ├── cadFileSelectionFrame.TFileSelectionFrame.html ├── cadFileSelectionFrame.TSelectFileEvent.html ├── cadFileSelectionFrame.TSelectFileProc.Invoke.html ├── cadFileSelectionFrame.TSelectFileProc.html ├── cadFileSelectionFrame.html ├── fAccueil.TfrmAccueil.ActionList1.html ├── fAccueil.TfrmAccueil.Actions1.html ├── fAccueil.TfrmAccueil.BitBtn1.html ├── fAccueil.TfrmAccueil.BitBtn2.html ├── fAccueil.TfrmAccueil.Bouton1.html ├── fAccueil.TfrmAccueil.Button1.html ├── fAccueil.TfrmAccueil.Fichier1.html ├── fAccueil.TfrmAccueil.MainMenu1.html ├── fAccueil.TfrmAccueil.Quitter1.html ├── fAccueil.TfrmAccueil.SpeedButton1.html ├── fAccueil.TfrmAccueil.SpeedButton2.html ├── fAccueil.TfrmAccueil.VirtualImageList1.html ├── fAccueil.TfrmAccueil.actBitBtn.html ├── fAccueil.TfrmAccueil.actBitBtnExecute.html ├── fAccueil.TfrmAccueil.actButton.html ├── fAccueil.TfrmAccueil.actButtonExecute.html ├── fAccueil.TfrmAccueil.actQuitter.html ├── fAccueil.TfrmAccueil.actQuitterExecute.html ├── fAccueil.TfrmAccueil.actSpeedButton.html ├── fAccueil.TfrmAccueil.actSpeedButtonExecute.html ├── fAccueil.TfrmAccueil.html ├── fAccueil.frmAccueil.html ├── fAccueil.html ├── fChoisirUnTarif.TCallbackChoisirUnTarifEvent.html ├── fChoisirUnTarif.TCallbackChoisirUnTarifProc.Invoke.html ├── fChoisirUnTarif.TCallbackChoisirUnTarifProc.html ├── fChoisirUnTarif.TChoisirUnTarif.Execute(TCallbackChoisirUnTarifEvent).html ├── fChoisirUnTarif.TChoisirUnTarif.Execute(TCallbackChoisirUnTarifProc).html ├── fChoisirUnTarif.TChoisirUnTarif.FormCreate.html ├── fChoisirUnTarif.TChoisirUnTarif.FormResize.html ├── fChoisirUnTarif.TChoisirUnTarif.ListeLignes.html ├── fChoisirUnTarif.TChoisirUnTarif.ListeLignesItemClick.html ├── fChoisirUnTarif.TChoisirUnTarif.html ├── fChoisirUnTarif.TChoisirUnTarif.zoneCategories.html ├── fChoisirUnTarif.TChoisirUnTarif.zoneCategoriesListe.html ├── fChoisirUnTarif.html ├── fDialogBox.Form2.html ├── fDialogBox.TForm2.Button1.html ├── fDialogBox.TForm2.Button1Click.html ├── fDialogBox.TForm2.Label1.html ├── fDialogBox.TForm2.html ├── fDialogBox.html ├── fFMX.Form2.html ├── fFMX.TForm2.Button1.html ├── fFMX.TForm2.Button1Click.html ├── fFMX.TForm2.html ├── fFMX.html ├── fItem.TLigne.CheckBox1.html ├── fItem.TLigne.btnModifier.html ├── fItem.TLigne.btnModifierClick.html ├── fItem.TLigne.btnSupprimer.html ├── fItem.TLigne.btnSupprimerClick.html ├── fItem.TLigne.html ├── fItem.html ├── fMain.Form1.html ├── fMain.Form2.html ├── fMain.TForm1.ApdComPort1.html ├── fMain.TForm1.ApdComPort1TriggerAvail.html ├── fMain.TForm1.BandsEffect1.html ├── fMain.TForm1.Beacon1.html ├── fMain.TForm1.Beacon1BeaconEnter.html ├── fMain.TForm1.Beacon1BeaconError.html ├── fMain.TForm1.Beacon1BeaconExit.html ├── fMain.TForm1.Beacon1BeaconProximity.html ├── fMain.TForm1.Beacon1ParseServiceData.html ├── fMain.TForm1.BeaconMapFencing1.html ├── fMain.TForm1.BindNavigator1.html ├── fMain.TForm1.BindNavigator1Click.html ├── fMain.TForm1.BindNavigator2.html ├── fMain.TForm1.BindSourceDB1.html ├── fMain.TForm1.BindSourceDB2.html ├── fMain.TForm1.BindSourceDB3.html ├── fMain.TForm1.BindingsList1.html ├── fMain.TForm1.BitBtn1.html ├── fMain.TForm1.BitBtn1Click.html ├── fMain.TForm1.BitmapListAnimation1.html ├── fMain.TForm1.Bluetooth1.html ├── fMain.TForm1.BluetoothLE1.html ├── fMain.TForm1.BluetoothLE1CharacteristicRead.html ├── fMain.TForm1.BluetoothLE1CharacteristicReadRequest.html ├── fMain.TForm1.BluetoothLE1CharacteristicSubscribed.html ├── fMain.TForm1.BluetoothLE1CharacteristicUnSubscribed.html ├── fMain.TForm1.BluetoothLE1CharacteristicWrite.html ├── fMain.TForm1.BluetoothLE1CharacteristicWriteRequest.html ├── fMain.TForm1.BluetoothLE1Connect.html ├── fMain.TForm1.BluetoothLE1ConnectedDevice.html ├── fMain.TForm1.BluetoothLE1DescriptorRead.html ├── fMain.TForm1.BluetoothLE1DescriptorWrite.html ├── fMain.TForm1.BluetoothLE1Disconnect.html ├── fMain.TForm1.BluetoothLE1DisconnectDevice.html ├── fMain.TForm1.BluetoothLE1DiscoverLEDevice.html ├── fMain.TForm1.BluetoothLE1EndDiscoverDevices.html ├── fMain.TForm1.BluetoothLE1EndDiscoverServices.html ├── fMain.TForm1.BluetoothLE1ReadRSSI.html ├── fMain.TForm1.BluetoothLE1ReliableWriteCompleted.html ├── fMain.TForm1.BluetoothLE1ServiceAdded.html ├── fMain.TForm1.BluetoothLE1ServicesDiscovered.html ├── fMain.TForm1.Button1.html ├── fMain.TForm1.Button1Click.html ├── fMain.TForm1.Button2.html ├── fMain.TForm1.Button2Click.html ├── fMain.TForm1.Button3.html ├── fMain.TForm1.Button3Click.html ├── fMain.TForm1.Button4.html ├── fMain.TForm1.Button4Click.html ├── fMain.TForm1.Button5.html ├── fMain.TForm1.Button5Click.html ├── fMain.TForm1.Button6.html ├── fMain.TForm1.Button6Click.html ├── fMain.TForm1.CLComPort1.html ├── fMain.TForm1.CLUnpacket1.html ├── fMain.TForm1.CalcPicturesPositionInScrollBox.html ├── fMain.TForm1.Calendar1.html ├── fMain.TForm1.Calendar1DateSelected.html ├── fMain.TForm1.CategoriesTable.html ├── fMain.TForm1.CheckBox1.html ├── fMain.TForm1.ClickSurImage.html ├── fMain.TForm1.Client.html ├── fMain.TForm1.ClientConnected.html ├── fMain.TForm1.ComboBox1.html ├── fMain.TForm1.ComboBox1Change.html ├── fMain.TForm1.DBGrid1.html ├── fMain.TForm1.DBGrid2.html ├── fMain.TForm1.DBNavigator1.html ├── fMain.TForm1.DataSource1.html ├── fMain.TForm1.DataSource2.html ├── fMain.TForm1.DataSource3.html ├── fMain.TForm1.DbdemosConnection.html ├── fMain.TForm1.DeveloppeurpascalConnection.html ├── fMain.TForm1.DisplaySize.html ├── fMain.TForm1.DrawOnImage.html ├── fMain.TForm1.DropDownEditButton1.html ├── fMain.TForm1.DropDownEditButton1Click.html ├── fMain.TForm1.Edit1.html ├── fMain.TForm1.Edit1Change.html ├── fMain.TForm1.Edit1Click.html ├── fMain.TForm1.Edit2.html ├── fMain.TForm1.Edit3.html ├── fMain.TForm1.Edit4.html ├── fMain.TForm1.Edit5.html ├── fMain.TForm1.EditButton1.html ├── fMain.TForm1.EditButton1Click.html ├── fMain.TForm1.EmployeeConnection.html ├── fMain.TForm1.EmployeeTable.html ├── fMain.TForm1.Employee_projectTable.html ├── fMain.TForm1.FDConnection1.html ├── fMain.TForm1.FDConnection1AfterConnect.html ├── fMain.TForm1.FDConnection1BeforeConnect.html ├── fMain.TForm1.FDConnectionLocale.html ├── fMain.TForm1.FDLocalSQL.html ├── fMain.TForm1.FDMemTable.html ├── fMain.TForm1.FDMemTable1.html ├── fMain.TForm1.FDMemTable1CalcFields.html ├── fMain.TForm1.FDMemTable1datasetid.html ├── fMain.TForm1.FDMemTable1fields.html ├── fMain.TForm1.FDMemTable1gare.html ├── fMain.TForm1.FDMemTable1pianos.html ├── fMain.TForm1.FDMemTable1record_timestamp.html ├── fMain.TForm1.FDMemTable1recordid.html ├── fMain.TForm1.FDMemTableliste_tables.html ├── fMain.TForm1.FDPhysCDataRSSDriverLink1.html ├── fMain.TForm1.FDPhysIBDriverLink1.html ├── fMain.TForm1.FDPhysMSAccessDriverLink1.html ├── fMain.TForm1.FDPhysSQLiteDriverLink1.html ├── fMain.TForm1.FDQuery1.html ├── fMain.TForm1.FDQuery1FeedDescription.html ├── fMain.TForm1.FDQuery1FeedImageLink.html ├── fMain.TForm1.FDQuery1FeedImageTitle.html ├── fMain.TForm1.FDQuery1FeedImageUrl.html ├── fMain.TForm1.FDQuery1FeedLanguage.html ├── fMain.TForm1.FDQuery1FeedLastBuildDate.html ├── fMain.TForm1.FDQuery1FeedLink.html ├── fMain.TForm1.FDQuery1FeedLinkHref.html ├── fMain.TForm1.FDQuery1FeedLinkRel.html ├── fMain.TForm1.FDQuery1FeedLinkType.html ├── fMain.TForm1.FDQuery1FeedTitle.html ├── fMain.TForm1.FDQuery1Guid.html ├── fMain.TForm1.FDQuery1Link.html ├── fMain.TForm1.FDQuery1PubDate.html ├── fMain.TForm1.FDQuery1Title.html ├── fMain.TForm1.FDQuery2.html ├── fMain.TForm1.FDQuery2AfterClose.html ├── fMain.TForm1.FDTable1.html ├── fMain.TForm1.FlowLayout1.html ├── fMain.TForm1.FolderAndFileList.html ├── fMain.TForm1.FolderAndFileListDblClick.html ├── fMain.TForm1.FormActivate.html ├── fMain.TForm1.FormClose.html ├── fMain.TForm1.FormCloseQuery.html ├── fMain.TForm1.FormCreate.html ├── fMain.TForm1.FormDeactivate.html ├── fMain.TForm1.FormDestroy.html ├── fMain.TForm1.FormHide.html ├── fMain.TForm1.FormPaint.html ├── fMain.TForm1.FormResize.html ├── fMain.TForm1.FormSaveState.html ├── fMain.TForm1.FormShow.html ├── fMain.TForm1.GridPanelLayout1.html ├── fMain.TForm1.GridPanelLayout2.html ├── fMain.TForm1.GridPanelLayout3.html ├── fMain.TForm1.GroupBox1.html ├── fMain.TForm1.IdFTP1.html ├── fMain.TForm1.IdFTP1AfterClientLogin.html ├── fMain.TForm1.IdFTP1AfterGet.html ├── fMain.TForm1.IdFTP1AfterPut.html ├── fMain.TForm1.IdFTP1BannerAfterLogin.html ├── fMain.TForm1.IdFTP1BannerBeforeLogin.html ├── fMain.TForm1.IdFTP1BannerWarning.html ├── fMain.TForm1.IdFTP1BeforeGet.html ├── fMain.TForm1.IdFTP1BeforePut.html ├── fMain.TForm1.IdFTP1Connected.html ├── fMain.TForm1.IdFTP1CreateFTPList.html ├── fMain.TForm1.IdFTP1CustomFTPProxy.html ├── fMain.TForm1.IdFTP1DataChannelCreate.html ├── fMain.TForm1.IdFTP1DataChannelDestroy.html ├── fMain.TForm1.IdFTP1DirParseEnd.html ├── fMain.TForm1.IdFTP1DirParseStart.html ├── fMain.TForm1.IdFTP1Disconnected.html ├── fMain.TForm1.IdFTP1NeedAccount.html ├── fMain.TForm1.IdFTP1RetrievedDir.html ├── fMain.TForm1.IdFTP1Status.html ├── fMain.TForm1.IdFTP1TLSNotAvailable.html ├── fMain.TForm1.IdFTP1Work.html ├── fMain.TForm1.IdFTP1WorkBegin.html ├── fMain.TForm1.IdFTP1WorkEnd.html ├── fMain.TForm1.IdWhois1.html ├── fMain.TForm1.Image1.html ├── fMain.TForm1.Image1MouseDown.html ├── fMain.TForm1.Image1MouseMove.html ├── fMain.TForm1.Image1Tap.html ├── fMain.TForm1.Image2.html ├── fMain.TForm1.ImageList1.html ├── fMain.TForm1.ImageViewer1.html ├── fMain.TForm1.Label1.html ├── fMain.TForm1.Label2.html ├── fMain.TForm1.Label3.html ├── fMain.TForm1.Label4.html ├── fMain.TForm1.Label5.html ├── fMain.TForm1.LabeledEdit1.html ├── fMain.TForm1.LabeledEdit2.html ├── fMain.TForm1.Layout1.html ├── fMain.TForm1.Layout2.html ├── fMain.TForm1.Layout3.html ├── fMain.TForm1.LinkControlToField1.html ├── fMain.TForm1.LinkControlToField2.html ├── fMain.TForm1.LinkControlToPropertyCaption.html ├── fMain.TForm1.LinkControlToPropertyCaption2.html ├── fMain.TForm1.LinkControlToPropertyliste_tables.html ├── fMain.TForm1.LinkFillControlToPropertyCaption.html ├── fMain.TForm1.LinkGridToDataSourceBindSourceDB1.html ├── fMain.TForm1.LinkGridToDataSourceBindSourceDB2.html ├── fMain.TForm1.LinkPropertyToFieldText.html ├── fMain.TForm1.LinkPropertyToFieldText2.html ├── fMain.TForm1.LinkPropertyToFieldText3.html ├── fMain.TForm1.LinkPropertyToFieldText4.html ├── fMain.TForm1.LinkPropertyToFieldText5.html ├── fMain.TForm1.LinkPropertyToFieldURL.html ├── fMain.TForm1.ListBox1.html ├── fMain.TForm1.ListView1.html ├── fMain.TForm1.LoadFolder.html ├── fMain.TForm1.Memo1.html ├── fMain.TForm1.Memo2.html ├── fMain.TForm1.Memo3.html ├── fMain.TForm1.MenuItem1.html ├── fMain.TForm1.MenuItem2.html ├── fMain.TForm1.MenuItem3.html ├── fMain.TForm1.OldEdit1Value.html ├── fMain.TForm1.Panel1.html ├── fMain.TForm1.Panel2.html ├── fMain.TForm1.Popup1.html ├── fMain.TForm1.PopupMenu1.html ├── fMain.TForm1.ProductsTable.html ├── fMain.TForm1.ProjectTable.html ├── fMain.TForm1.RESTClient1.html ├── fMain.TForm1.RESTRequest1.html ├── fMain.TForm1.RESTRequest1AfterExecute.html ├── fMain.TForm1.RESTResponse1.html ├── fMain.TForm1.RESTResponseDataSetAdapter1.html ├── fMain.TForm1.ReceiveSPNSendAnImageFileMessage.html ├── fMain.TForm1.Rectangle1.html ├── fMain.TForm1.Rectangle2.html ├── fMain.TForm1.ReflectionEffect1.html ├── fMain.TForm1.SLGenericRealValue1.html ├── fMain.TForm1.SLGenericRealValue1ProcessData.html ├── fMain.TForm1.SLGenericRealValue2.html ├── fMain.TForm1.SLGenericRealValue2ProcessData.html ├── fMain.TForm1.SLGenericRealValueGen1Generate.html ├── fMain.TForm1.ScrollBox1.html ├── fMain.TForm1.ScrollBox1DragDrop.html ├── fMain.TForm1.ScrollBox1DragOver.html ├── fMain.TForm1.ScrollBox1Resize.html ├── fMain.TForm1.ShowTableContent.html ├── fMain.TForm1.SignatureFMX1.html ├── fMain.TForm1.Sphere1.html ├── fMain.TForm1.Splitter1.html ├── fMain.TForm1.Sqlite_demoConnection.html ├── fMain.TForm1.StatusBar1.html ├── fMain.TForm1.StringGrid1.html ├── fMain.TForm1.StringGrid1CellClick.html ├── fMain.TForm1.StringGrid1SelChanged.html ├── fMain.TForm1.StringGrid2.html ├── fMain.TForm1.StyleBook1.html ├── fMain.TForm1.StyleBook2.html ├── fMain.TForm1.StyleBook3.html ├── fMain.TForm1.StyleBook4.html ├── fMain.TForm1.SuppliersTable.html ├── fMain.TForm1.Switch1.html ├── fMain.TForm1.Switch1Switch.html ├── fMain.TForm1.TabControl1.html ├── fMain.TForm1.TabItem1.html ├── fMain.TForm1.TabItem2.html ├── fMain.TForm1.TabItem3.html ├── fMain.TForm1.TabItem4.html ├── fMain.TForm1.TabItem5.html ├── fMain.TForm1.TetheringAppProfile1.html ├── fMain.TForm1.TetheringAppProfile1AcceptResource.html ├── fMain.TForm1.TetheringAppProfile1ResourceReceived.html ├── fMain.TForm1.TetheringManager1.html ├── fMain.TForm1.TetheringManager1EndAutoConnect.html ├── fMain.TForm1.TextureMaterialSource1.html ├── fMain.TForm1.TilerEffect1.html ├── fMain.TForm1.Timer1.html ├── fMain.TForm1.Timer1Timer.html ├── fMain.TForm1.ToolBar1.html ├── fMain.TForm1.TreeView1.html ├── fMain.TForm1.TreeViewItem1.html ├── fMain.TForm1.TreeViewItem10.html ├── fMain.TForm1.TreeViewItem11.html ├── fMain.TForm1.TreeViewItem12.html ├── fMain.TForm1.TreeViewItem13.html ├── fMain.TForm1.TreeViewItem14.html ├── fMain.TForm1.TreeViewItem15.html ├── fMain.TForm1.TreeViewItem16.html ├── fMain.TForm1.TreeViewItem17.html ├── fMain.TForm1.TreeViewItem18.html ├── fMain.TForm1.TreeViewItem19.html ├── fMain.TForm1.TreeViewItem2.html ├── fMain.TForm1.TreeViewItem20.html ├── fMain.TForm1.TreeViewItem21.html ├── fMain.TForm1.TreeViewItem22.html ├── fMain.TForm1.TreeViewItem23.html ├── fMain.TForm1.TreeViewItem24.html ├── fMain.TForm1.TreeViewItem25.html ├── fMain.TForm1.TreeViewItem26.html ├── fMain.TForm1.TreeViewItem27.html ├── fMain.TForm1.TreeViewItem3.html ├── fMain.TForm1.TreeViewItem4.html ├── fMain.TForm1.TreeViewItem5.html ├── fMain.TForm1.TreeViewItem6.html ├── fMain.TForm1.TreeViewItem7.html ├── fMain.TForm1.TreeViewItem8.html ├── fMain.TForm1.TreeViewItem9.html ├── fMain.TForm1.VertScrollBox1.html ├── fMain.TForm1.Viewport3D1.html ├── fMain.TForm1.WebBrowser1.html ├── fMain.TForm1.addlog.html ├── fMain.TForm1.btnAjouter.html ├── fMain.TForm1.btnAjouterClick.html ├── fMain.TForm1.btnCancel.html ├── fMain.TForm1.btnCancelClick.html ├── fMain.TForm1.btnChargeImages.html ├── fMain.TForm1.btnChargeImagesClick.html ├── fMain.TForm1.btnClose.html ├── fMain.TForm1.btnCloseClick.html ├── fMain.TForm1.btnFermer2.html ├── fMain.TForm1.btnOk.html ├── fMain.TForm1.btnOkClick.html ├── fMain.TForm1.btnQuitter.html ├── fMain.TForm1.btnQuitterClick.html ├── fMain.TForm1.btnReload.html ├── fMain.TForm1.btnReloadClick.html ├── fMain.TForm1.btnSQL.html ├── fMain.TForm1.btnSQLClick.html ├── fMain.TForm1.btnSaveImage.html ├── fMain.TForm1.btnSaveImageClick.html ├── fMain.TForm1.btnShowSelected.html ├── fMain.TForm1.btnShowSelectedClick.html ├── fMain.TForm1.btnStart.html ├── fMain.TForm1.btnStartClick.html ├── fMain.TForm1.btnStop.html ├── fMain.TForm1.btnStopClick.html ├── fMain.TForm1.btnTable.html ├── fMain.TForm1.btnTableClick.html ├── fMain.TForm1.gbAjout.html ├── fMain.TForm1.gbListe.html ├── fMain.TForm1.getLogFileName.html ├── fMain.TForm1.html ├── fMain.TForm1.lblAppSize.html ├── fMain.TForm1.lblBitmapScale.html ├── fMain.TForm1.lblDisplaysScale.html ├── fMain.TForm1.lblImageBitmapCanvasSize.html ├── fMain.TForm1.lblImageBitmapSize.html ├── fMain.TForm1.lblImageSize.html ├── fMain.TForm1.lblMouseXY.html ├── fMain.TForm1.lblScreenSize.html ├── fMain.TForm1.lblStatus.html ├── fMain.TForm1.lblTapXY.html ├── fMain.TForm1.listeModifiee.html ├── fMain.TForm1.num.html ├── fMain.TForm1.stick.html ├── fMain.TForm2.Button1.html ├── fMain.TForm2.Button1Click.html ├── fMain.TForm2.CalcFlowLayoutHeight.html ├── fMain.TForm2.ClickSurImage.html ├── fMain.TForm2.FlowLayout1.html ├── fMain.TForm2.VertScrollBox1.html ├── fMain.TForm2.VertScrollBox1Resize.html ├── fMain.TForm2.html ├── fMain.TGameScreen.Credit.html ├── fMain.TGameScreen.Game.html ├── fMain.TGameScreen.Home.html ├── fMain.TGameScreen.Options.html ├── fMain.TGameScreen.html ├── fMain.TfmrMain.FormClose.html ├── fMain.TfmrMain.FormCreate.html ├── fMain.TfmrMain.FormDestroy.html ├── fMain.TfmrMain.ImageControl1.html ├── fMain.TfmrMain.ImageIndex.html ├── fMain.TfmrMain.ImageList.html ├── fMain.TfmrMain.Timer1.html ├── fMain.TfmrMain.Timer1Timer.html ├── fMain.TfmrMain.btnSendThisPicture.html ├── fMain.TfmrMain.btnSendThisPictureClick.html ├── fMain.TfmrMain.html ├── fMain.TfrmMain.AniIndicator1.html ├── fMain.TfrmMain.ApplicationEventChangedHandler.html ├── fMain.TfrmMain.Background.html ├── fMain.TfrmMain.BindSourceDB1.html ├── fMain.TfrmMain.BindingsList1.html ├── fMain.TfrmMain.BlocAttenteChargement.html ├── fMain.TfrmMain.BlocAttenteChargementAnimation.html ├── fMain.TfrmMain.Button1.html ├── fMain.TfrmMain.Button1Click.html ├── fMain.TfrmMain.Button2.html ├── fMain.TfrmMain.Button2Click.html ├── fMain.TfrmMain.Button3.html ├── fMain.TfrmMain.Button3Click.html ├── fMain.TfrmMain.Button4.html ├── fMain.TfrmMain.Button4Click.html ├── fMain.TfrmMain.CameraComponent1.html ├── fMain.TfrmMain.CameraComponent1SampleBufferReady.html ├── fMain.TfrmMain.DisplayScreen.html ├── fMain.TfrmMain.FormCreate.html ├── fMain.TfrmMain.FormDestroy.html ├── fMain.TfrmMain.GetBitmapStream.html ├── fMain.TfrmMain.GridPanelLayout1.html ├── fMain.TfrmMain.GridPanelLayout2.html ├── fMain.TfrmMain.Image1.html ├── fMain.TfrmMain.ImageControl1.html ├── fMain.TfrmMain.Label1.html ├── fMain.TfrmMain.Label2.html ├── fMain.TfrmMain.Label3.html ├── fMain.TfrmMain.Label4.html ├── fMain.TfrmMain.Layout1.html ├── fMain.TfrmMain.LinkControlToField1.html ├── fMain.TfrmMain.LinkControlToField2.html ├── fMain.TfrmMain.LinkControlToField3.html ├── fMain.TfrmMain.Memo1.html ├── fMain.TfrmMain.PDFPath.html ├── fMain.TfrmMain.Panel1.html ├── fMain.TfrmMain.Rectangle1.html ├── fMain.TfrmMain.Rectangle2.html ├── fMain.TfrmMain.ScanEnCours.html ├── fMain.TfrmMain.ScreenCredit.html ├── fMain.TfrmMain.ScreenGame.html ├── fMain.TfrmMain.ScreenHome.html ├── fMain.TfrmMain.ScreenSettings.html ├── fMain.TfrmMain.Splitter1.html ├── fMain.TfrmMain.StartCamera.html ├── fMain.TfrmMain.UpdateCameraStatus.html ├── fMain.TfrmMain.animHideScreen.html ├── fMain.TfrmMain.animHideScreenFinish.html ├── fMain.TfrmMain.animShowScreen.html ├── fMain.TfrmMain.animShowScreenFinish.html ├── fMain.TfrmMain.btnAjouteDescendant.html ├── fMain.TfrmMain.btnAjouteDescendantClick.html ├── fMain.TfrmMain.btnAjouteFrere.html ├── fMain.TfrmMain.btnAjouteFrereClick.html ├── fMain.TfrmMain.btnCancel.html ├── fMain.TfrmMain.btnCancelClick.html ├── fMain.TfrmMain.btnDownloadAPDF.html ├── fMain.TfrmMain.btnDownloadAPDFClick.html ├── fMain.TfrmMain.btnOk.html ├── fMain.TfrmMain.btnOkClick.html ├── fMain.TfrmMain.btnOpenAndClose.html ├── fMain.TfrmMain.btnOpenAndCloseClick.html ├── fMain.TfrmMain.btnOpenThePDF.html ├── fMain.TfrmMain.btnOpenThePDFClick.html ├── fMain.TfrmMain.btnOpenWithACallback.html ├── fMain.TfrmMain.btnOpenWithACallbackClick.html ├── fMain.TfrmMain.btnOpenWithACallbackClickCallback.html ├── fMain.TfrmMain.btnSendPhoto.html ├── fMain.TfrmMain.btnSendPhotoClick.html ├── fMain.TfrmMain.btnStartCamera.html ├── fMain.TfrmMain.btnStartCameraClick.html ├── fMain.TfrmMain.btnStartStopCapture.html ├── fMain.TfrmMain.btnStartStopCaptureClick.html ├── fMain.TfrmMain.btnSupprimeAvecSesDescendants.html ├── fMain.TfrmMain.btnSupprimeAvecSesDescendantsClick.html ├── fMain.TfrmMain.btnUseTheStyleBook.html ├── fMain.TfrmMain.btnUseTheStyleBookClick.html ├── fMain.TfrmMain.edtLibelle.html ├── fMain.TfrmMain.edtNomFichier.html ├── fMain.TfrmMain.edtPrix.html ├── fMain.TfrmMain.html ├── fMain.TfrmMain.isCameraStarted.html ├── fMain.TfrmMain.isQRCaptureOn.html ├── fMain.TfrmMain.lblEndOfGame.html ├── fMain.TfrmMain.lblLibelle.html ├── fMain.TfrmMain.lblNomFichier.html ├── fMain.TfrmMain.lblPrix.html ├── fMain.TfrmMain.tvArborescence.html ├── fMain.TfrmMain.tvArborescenceChange.html ├── fMain.TfrmMain.zoneDeSaisie.html ├── fMain.fmrMain.html ├── fMain.frmMain.html ├── fMain.html ├── fMainBis.Form2.html ├── fMainBis.TForm2.FileSelectionFrame1.html ├── fMainBis.TForm2.FormCreate.html ├── fMainBis.TForm2.Memo1.html ├── fMainBis.TForm2.html ├── fMainBis.html ├── fSecondForm.TfrmSecondForm.FormClose.html ├── fSecondForm.TfrmSecondForm.btnClose.html ├── fSecondForm.TfrmSecondForm.btnCloseClick.html ├── fSecondForm.TfrmSecondForm.html ├── fSecondForm.html ├── fThirdWithCallback.TThirdWithCallBackCloseEvent.html ├── fThirdWithCallback.TfrmThirdWithCallBack.Create.html ├── fThirdWithCallback.TfrmThirdWithCallBack.FormClose.html ├── fThirdWithCallback.TfrmThirdWithCallBack.Layout1.html ├── fThirdWithCallback.TfrmThirdWithCallBack.OnThirdWithCallBackCloseEvent.html ├── fThirdWithCallback.TfrmThirdWithCallBack.btnCancel.html ├── fThirdWithCallback.TfrmThirdWithCallBack.btnCancelClick.html ├── fThirdWithCallback.TfrmThirdWithCallBack.btnOk.html ├── fThirdWithCallback.TfrmThirdWithCallBack.btnOkClick.html ├── fThirdWithCallback.TfrmThirdWithCallBack.html ├── fThirdWithCallback.html ├── fVCL.Form1.html ├── fVCL.TForm1.Button1.html ├── fVCL.TForm1.Button1Click.html ├── fVCL.TForm1.html ├── fVCL.html ├── index.html ├── main.MainForm.html ├── main.TMainForm.html ├── main.html ├── themes └── legacy │ ├── css │ ├── compact.css │ ├── csshover3.htc │ ├── dynatree │ │ ├── 0.png │ │ ├── 1.png │ │ ├── 10.png │ │ ├── 11.png │ │ ├── 12.png │ │ ├── 13.png │ │ ├── 14.png │ │ ├── 15.png │ │ ├── 16.png │ │ ├── 17.png │ │ ├── 18.png │ │ ├── 19.png │ │ ├── 2.png │ │ ├── 20.png │ │ ├── 21.png │ │ ├── 22.png │ │ ├── 23.png │ │ ├── 24.png │ │ ├── 25.png │ │ ├── 26.png │ │ ├── 27.png │ │ ├── 28.png │ │ ├── 29.png │ │ ├── 3.png │ │ ├── 30.png │ │ ├── 31.png │ │ ├── 32.png │ │ ├── 33.png │ │ ├── 34.png │ │ ├── 35.png │ │ ├── 36.png │ │ ├── 37.png │ │ ├── 38.png │ │ ├── 39.png │ │ ├── 4.png │ │ ├── 40.png │ │ ├── 41.png │ │ ├── 5.png │ │ ├── 6.png │ │ ├── 7.png │ │ ├── 8.png │ │ ├── 9.png │ │ ├── icons.gif │ │ ├── loading.gif │ │ ├── ui.dynatree.css │ │ └── vline.gif │ ├── editor.css │ ├── highlighter.css │ ├── ielte8.css │ ├── presentation.css │ ├── reset.css │ ├── smoothness │ │ ├── images │ │ │ ├── animated-overlay.gif │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ │ ├── ui-icons_222222_256x240.png │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ ├── ui-icons_454545_256x240.png │ │ │ ├── ui-icons_888888_256x240.png │ │ │ └── ui-icons_cd0a0a_256x240.png │ │ └── jquery-ui.css │ └── toc.css │ ├── images │ ├── Caution.gif │ ├── ImageSprite.png │ ├── LastChild.gif │ ├── alert_caution.gif │ ├── alert_note.gif │ ├── alert_security.gif │ ├── book-closed.png │ ├── book.png │ ├── box.gif │ ├── circle.gif │ ├── collall.gif │ ├── collapse.gif │ ├── collapse_all.gif │ ├── collapsing.png │ ├── copycode.gif │ ├── copycodeHighlight.gif │ ├── dropdown.gif │ ├── dropdownHover.gif │ ├── drpdown.gif │ ├── drpdown_orange.gif │ ├── drpdown_orange_up.gif │ ├── drpup.gif │ ├── exp.gif │ ├── expall.gif │ ├── expand.gif │ ├── expand_all.gif │ ├── expanding.png │ ├── filter1a.gif │ ├── filter1c.gif │ ├── footer-bg.png │ ├── footer.gif │ ├── gradient.gif │ ├── greencheck.gif │ ├── greychck.gif │ ├── header-bg.png │ ├── hmtoggle_plus0.gif │ ├── hmtoggle_plus1.gif │ ├── iconErrorTop.png │ ├── load.gif │ ├── load_hover.gif │ ├── namespace.png │ ├── note.gif │ ├── note.png │ ├── privclass.gif │ ├── privdelegate.gif │ ├── privenum.gif │ ├── privenumeration.gif │ ├── privenummember.png │ ├── privevent.gif │ ├── privextension.gif │ ├── privfield.gif │ ├── privinterface.gif │ ├── privmethod.gif │ ├── privproperty.gif │ ├── privstructure.gif │ ├── protclass.gif │ ├── protdelegate.gif │ ├── protenum.gif │ ├── protenumeration.gif │ ├── protenummember.png │ ├── protevent.gif │ ├── protextension.gif │ ├── protfield.gif │ ├── protinterface.gif │ ├── protmethod.gif │ ├── protoperator.gif │ ├── protproperty.gif │ ├── protstructure.gif │ ├── pubclass.gif │ ├── pubdelegate.gif │ ├── pubenum.gif │ ├── pubenumeration.gif │ ├── pubenummember.png │ ├── pubevent.gif │ ├── pubextension.gif │ ├── pubfield.gif │ ├── pubinterface.gif │ ├── pubmethod.gif │ ├── puboperator.gif │ ├── pubproperty.gif │ ├── pubstructure.gif │ ├── requirements1a.gif │ ├── requirements1c.gif │ ├── save.gif │ ├── save_hover.gif │ ├── security.gif │ ├── seealso1a.gif │ ├── seealso1c.gif │ ├── static.gif │ ├── topic.png │ ├── ui-bg_glass_65_ffffff_1x400.png │ ├── uiTabsArrow.png │ └── vgrabber.gif │ └── js │ ├── di.designer.js │ ├── di.js │ ├── di.toc.js │ ├── highlight.min.js │ ├── jquery-migrate.min.js │ ├── jquery-ui.min.js │ ├── jquery.cookie.js │ ├── jquery.dynatree.min.js │ ├── jquery.min.js │ ├── jquery.textchange.min.js │ └── splitter.js ├── toc.html ├── toc.js ├── uAccueil.Form1.html ├── uAccueil.TForm1.Button1.html ├── uAccueil.TForm1.Button1Click.html ├── uAccueil.TForm1.LocationSensor1.html ├── uAccueil.TForm1.LocationSensor1LocationChanged.html ├── uAccueil.TForm1.html ├── uAccueil.html ├── uAppTetheringSettings.CAppTetheringManagerGroupName.html ├── uAppTetheringSettings.CAppTetheringManagerPassword.html ├── uAppTetheringSettings.CAppTetheringProfileName.html ├── uAppTetheringSettings.CAppTetheringReceiverProfileText.html ├── uAppTetheringSettings.CAppTetheringSenderProfileText.html ├── uAppTetheringSettings.html ├── uCADSignatureFMX.TSignatureFMX.Bitmap.html ├── uCADSignatureFMX.TSignatureFMX.Create.html ├── uCADSignatureFMX.TSignatureFMX.LoadFromFile.html ├── uCADSignatureFMX.TSignatureFMX.LoadFromStream.html ├── uCADSignatureFMX.TSignatureFMX.SaveToFile.html ├── uCADSignatureFMX.TSignatureFMX.SaveToStream.html ├── uCADSignatureFMX.TSignatureFMX.html ├── uCADSignatureFMX.TSignatureFMX.imgSignature.html ├── uCADSignatureFMX.TSignatureFMX.imgSignatureMouseLeave.html ├── uCADSignatureFMX.TSignatureFMX.imgSignatureMouseMove.html ├── uCADSignatureFMX.TSignatureFMX.imgSignatureMouseUp.html ├── uCADSignatureFMX.TSignatureFMX.imgSignatureResize.html ├── uCADSignatureFMX.html ├── uConst.TFichiersExternes.dbCategories.html ├── uConst.TFichiersExternes.html ├── uConst.TFichiersExternes.imgAutre.html ├── uConst.TFichiersExternes.imgLogoApp.html ├── uConst.TFichiersExternes.txtBidules.html ├── uConst.TFichiersExternes.txtTraductions.html ├── uConst._URL_DOWNLOAD.html ├── uConst.html ├── uConsts.CPrivateChecksumSalt1.html ├── uConsts.CPrivateChecksumSalt2.html ├── uConsts.html ├── uDBCategories.TdmDBCategories.AjouteCategorie.html ├── uDBCategories.TdmDBCategories.DataModuleCreate.html ├── uDBCategories.TdmDBCategories.dbCategories.html ├── uDBCategories.TdmDBCategories.dbCategoriesAfterConnect.html ├── uDBCategories.TdmDBCategories.html ├── uDBCategories.TdmDBCategories.tabCategories.html ├── uDBCategories.TdmDBCategories.tabCategoriescategorie_mere_code.html ├── uDBCategories.TdmDBCategories.tabCategoriescode.html ├── uDBCategories.TdmDBCategories.tabCategorieslibelle.html ├── uDBCategories.TdmDBCategories.tabCategoriesnom_fichier_image.html ├── uDBCategories.TdmDBCategories.tabCategoriesprix_unitaire.html ├── uDBCategories.dmDBCategories.html ├── uDBCategories.html ├── uDBPourAffichage.TdmDBPourAffichage.DataModuleCreate.html ├── uDBPourAffichage.TdmDBPourAffichage.dbCategories.html ├── uDBPourAffichage.TdmDBPourAffichage.html ├── uDBPourAffichage.dmDBPourAffichage.html ├── uDBPourAffichage.html ├── uDM.DataModule2.html ├── uDM.TDataModule2.DataModuleCreate.html ├── uDM.TDataModule2.DataModuleDestroy.html ├── uDM.TDataModule2.FDMemTable1.html ├── uDM.TDataModule2.FDMemTable1coche.html ├── uDM.TDataModule2.FDMemTable1id.html ├── uDM.TDataModule2.FDMemTable1libelle.html ├── uDM.TDataModule2.FDStanStorageXMLLink1.html ├── uDM.TDataModule2.html ├── uDM.TDataModule2.valider_modification_en_cours.html ├── uDM.html ├── uDMAppTetheringReceiver.TReceiveBitmapStream.html ├── uDMAppTetheringReceiver.TdmAppTetheringReceiver.DataModuleCreate.html ├── uDMAppTetheringReceiver.TdmAppTetheringReceiver.TetheringAppProfile1.html ├── uDMAppTetheringReceiver.TdmAppTetheringReceiver.TetheringAppProfile1AcceptResource.html ├── uDMAppTetheringReceiver.TdmAppTetheringReceiver.TetheringAppProfile1ResourceReceived.html ├── uDMAppTetheringReceiver.TdmAppTetheringReceiver.TetheringManager1.html ├── uDMAppTetheringReceiver.TdmAppTetheringReceiver.html ├── uDMAppTetheringReceiver.TdmAppTetheringReceiver.onReceiveBitmapStream.html ├── uDMAppTetheringReceiver.dmAppTetheringReceiver.html ├── uDMAppTetheringReceiver.html ├── uDMAppTetheringSender.TdmAppTetheringSender.DataModuleCreate.html ├── uDMAppTetheringSender.TdmAppTetheringSender.SendABitmapStream.html ├── uDMAppTetheringSender.TdmAppTetheringSender.TetheringAppProfile1.html ├── uDMAppTetheringSender.TdmAppTetheringSender.TetheringManager1.html ├── uDMAppTetheringSender.TdmAppTetheringSender.html ├── uDMAppTetheringSender.dmAppTetheringSender.html ├── uDMAppTetheringSender.html ├── uDMImages.TdmImages.ImageCollection1.html ├── uDMImages.TdmImages.ImageList1.html ├── uDMImages.TdmImages.html ├── uDMImages.dmImages.html ├── uDMImages.html ├── uDMStyleAndroid.html ├── uDMStyleWindows.GStyleWindows.html ├── uDMStyleWindows.TdmStyleWindows.StyleBook1.html ├── uDMStyleWindows.TdmStyleWindows.html ├── uDMStyleWindows.html ├── uDatas.TElem.coche.html ├── uDatas.TElem.html ├── uDatas.TElem.id.html ├── uDatas.TElem.libelle.html ├── uDatas.TListe.html ├── uDatas.ajouter.html ├── uDatas.cocher.html ├── uDatas.decocher.html ├── uDatas.estCoche.html ├── uDatas.html ├── uDatas.lister.html ├── uDatas.modifier.html ├── uDatas.supprimer.html ├── uDownloadAndGetFiles.ChargeBitmapDansImage(TImage,TFichiersExternes).html ├── uDownloadAndGetFiles.ChargeBitmapDansImage(TImage,string).html ├── uDownloadAndGetFiles.OuvreBaseDeDonneesEnCache.html ├── uDownloadAndGetFiles.OuvreBaseDeDonneesUtilisateur.html ├── uDownloadAndGetFiles.html ├── uFichiersEtDossiers.GetCheminVersLeCache.html ├── uFichiersEtDossiers.GetCheminVersLesBasesEnCache.html ├── uFichiersEtDossiers.GetCheminVersLesBasesUtilisateur.html ├── uFichiersEtDossiers.GetCheminVersLesDocuments.html ├── uFichiersEtDossiers.GetCheminVersLesImagesEnCache.html ├── uFichiersEtDossiers.GetNomFichierExterne.html ├── uFichiersEtDossiers.html ├── uMainPourAffichage.TfrmMain.BlocAttenteChargement.html ├── uMainPourAffichage.TfrmMain.BlocAttenteChargementAnimation.html ├── uMainPourAffichage.TfrmMain.Button1.html ├── uMainPourAffichage.TfrmMain.Button1Click.html ├── uMainPourAffichage.TfrmMain.FormCreate.html ├── uMainPourAffichage.TfrmMain.html ├── uMainPourAffichage.frmMain.html ├── uMainPourAffichage.html ├── uMenu.doMain.html ├── uMenu.html ├── uSQL.CIndexCreateSQL.html ├── uSQL.CTableCreateSQL.html ├── uSQL.html ├── u_download.html ├── u_download.tdownload_file.download.html ├── u_download.tdownload_file.html ├── u_download.tdownload_file.temporaryFileName.html ├── u_md5.MD5.html ├── u_md5.html ├── u_urlOpen.html ├── u_urlOpen.url_Open_In_Browser.html ├── udemosImpl.Tdemos.echoDouble.html ├── udemosImpl.Tdemos.echoDoubleArray.html ├── udemosImpl.Tdemos.echoEnum.html ├── udemosImpl.Tdemos.echoMyEmployee.html ├── udemosImpl.Tdemos.html ├── udemosImpl.html ├── udemosIntf.Idemos.echoDouble.html ├── udemosIntf.Idemos.echoDoubleArray.html ├── udemosIntf.Idemos.echoEnum.html ├── udemosIntf.Idemos.echoMyEmployee.html ├── udemosIntf.Idemos.html ├── udemosIntf.TDoubleArray.html ├── udemosIntf.TEnumTest.etAFew.html ├── udemosIntf.TEnumTest.etAlot.html ├── udemosIntf.TEnumTest.etNone.html ├── udemosIntf.TEnumTest.etSome.html ├── udemosIntf.TEnumTest.html ├── udemosIntf.TMyEmployee.FirstName.html ├── udemosIntf.TMyEmployee.LastName.html ├── udemosIntf.TMyEmployee.Salary.html ├── udemosIntf.TMyEmployee.html ├── udemosIntf.etAFew.html ├── udemosIntf.etAlot.html ├── udemosIntf.etNone.html ├── udemosIntf.etSome.html ├── udemosIntf.html ├── udmAdobeStock_13945297.TdmAdobeStock_13945297.ImageList.html ├── udmAdobeStock_13945297.TdmAdobeStock_13945297.html ├── udmAdobeStock_13945297.dmAdobeStock_13945297.html └── udmAdobeStock_13945297.html /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/.gitmodules -------------------------------------------------------------------------------- /3rdParty-Samples/Atozed/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/3rdParty-Samples/Atozed/README.md -------------------------------------------------------------------------------- /3rdParty-Samples/CData/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/3rdParty-Samples/CData/README.md -------------------------------------------------------------------------------- /3rdParty-Samples/uniGUI/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/3rdParty-Samples/uniGUI/README.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /ChangeLog/YYYYMMDD-User.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/ChangeLog/YYYYMMDD-User.md -------------------------------------------------------------------------------- /CopyrightPascalProjects.c2pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/CopyrightPascalProjects.c2pp -------------------------------------------------------------------------------- /DelphiSampleProjects.chm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/DelphiSampleProjects.chm -------------------------------------------------------------------------------- /FireDAC-Samples/001-SQLite/fMain.fmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/FireDAC-Samples/001-SQLite/fMain.fmx -------------------------------------------------------------------------------- /FireDAC-Samples/001-SQLite/fMain.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/FireDAC-Samples/001-SQLite/fMain.pas -------------------------------------------------------------------------------- /FireDAC-Samples/001-SQLite/fMain.vlb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/FireDAC-Samples/001-SQLite/fMain.vlb -------------------------------------------------------------------------------- /IoT-Samples/002-BeaconFence/fMain.fmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/IoT-Samples/002-BeaconFence/fMain.fmx -------------------------------------------------------------------------------- /IoT-Samples/002-BeaconFence/fMain.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/IoT-Samples/002-BeaconFence/fMain.pas -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/LICENSE -------------------------------------------------------------------------------- /LISEZMOI.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/LISEZMOI.md -------------------------------------------------------------------------------- /Network-Samples/01-TSocket/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/Network-Samples/01-TSocket/README.md -------------------------------------------------------------------------------- /Network-Samples/01-TSocket/fMain.fmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/Network-Samples/01-TSocket/fMain.fmx -------------------------------------------------------------------------------- /Network-Samples/01-TSocket/fMain.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/Network-Samples/01-TSocket/fMain.pas -------------------------------------------------------------------------------- /OtherDelphiSampleRepositories.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/OtherDelphiSampleRepositories.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/README.md -------------------------------------------------------------------------------- /SampleProjectGroup.diproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/SampleProjectGroup.diproj -------------------------------------------------------------------------------- /SampleProjectGroup.groupproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/SampleProjectGroup.groupproj -------------------------------------------------------------------------------- /VCL-Samples/001-HelloWorld/fMain.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/VCL-Samples/001-HelloWorld/fMain.dfm -------------------------------------------------------------------------------- /VCL-Samples/001-HelloWorld/fMain.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/VCL-Samples/001-HelloWorld/fMain.pas -------------------------------------------------------------------------------- /VCL-Samples/003-MDI/About.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/VCL-Samples/003-MDI/About.dfm -------------------------------------------------------------------------------- /VCL-Samples/003-MDI/ChildWin.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/VCL-Samples/003-MDI/ChildWin.dfm -------------------------------------------------------------------------------- /VCL-Samples/003-MDI/ChildWin.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/VCL-Samples/003-MDI/ChildWin.pas -------------------------------------------------------------------------------- /VCL-Samples/003-MDI/MDIAPP.ICO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/VCL-Samples/003-MDI/MDIAPP.ICO -------------------------------------------------------------------------------- /VCL-Samples/003-MDI/MDIAPP.bdsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/VCL-Samples/003-MDI/MDIAPP.bdsproj -------------------------------------------------------------------------------- /VCL-Samples/003-MDI/MDIAPP.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/VCL-Samples/003-MDI/MDIAPP.dpr -------------------------------------------------------------------------------- /VCL-Samples/003-MDI/MDIAPP.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/VCL-Samples/003-MDI/MDIAPP.dproj -------------------------------------------------------------------------------- /VCL-Samples/003-MDI/Main.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/VCL-Samples/003-MDI/Main.dfm -------------------------------------------------------------------------------- /VCL-Samples/003-MDI/Main.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/VCL-Samples/003-MDI/Main.pas -------------------------------------------------------------------------------- /VCL-Samples/003-MDI/about.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/VCL-Samples/003-MDI/about.pas -------------------------------------------------------------------------------- /VCL-Samples/010-DialogBox/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/VCL-Samples/010-DialogBox/README.md -------------------------------------------------------------------------------- /VCL-Samples/010-DialogBox/fVCL.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/VCL-Samples/010-DialogBox/fVCL.dfm -------------------------------------------------------------------------------- /VCL-Samples/010-DialogBox/fVCL.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/VCL-Samples/010-DialogBox/fVCL.pas -------------------------------------------------------------------------------- /Web-Samples/003-Indy-FTP/fMain.fmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/Web-Samples/003-Indy-FTP/fMain.fmx -------------------------------------------------------------------------------- /Web-Samples/003-Indy-FTP/fMain.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/Web-Samples/003-Indy-FTP/fMain.pas -------------------------------------------------------------------------------- /Web-Samples/004-REST-API/fMain.fmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/Web-Samples/004-REST-API/fMain.fmx -------------------------------------------------------------------------------- /Web-Samples/004-REST-API/fMain.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/Web-Samples/004-REST-API/fMain.pas -------------------------------------------------------------------------------- /Web-Samples/004-REST-API/fMain.vlb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/Web-Samples/004-REST-API/fMain.vlb -------------------------------------------------------------------------------- /Web-Samples/005-DisplayPhotosFromURL/php/images/readme.txt: -------------------------------------------------------------------------------- 1 | put .jpg pictures there -------------------------------------------------------------------------------- /Web-Samples/008-DataSnap-RPC-REST/css/main.css: -------------------------------------------------------------------------------- 1 | body { 2 | } 3 | -------------------------------------------------------------------------------- /docs/BeaconDetector.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/BeaconDetector.html -------------------------------------------------------------------------------- /docs/BeaconFenceDemo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/BeaconFenceDemo.html -------------------------------------------------------------------------------- /docs/BitmapScaleTests.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/BitmapScaleTests.html -------------------------------------------------------------------------------- /docs/CDataRSSDemo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/CDataRSSDemo.html -------------------------------------------------------------------------------- /docs/CHILDWIN.TMDIChild.Memo1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/CHILDWIN.TMDIChild.Memo1.html -------------------------------------------------------------------------------- /docs/CHILDWIN.TMDIChild.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/CHILDWIN.TMDIChild.html -------------------------------------------------------------------------------- /docs/CHILDWIN.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/CHILDWIN.html -------------------------------------------------------------------------------- /docs/CalendarInPopupSample.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/CalendarInPopupSample.html -------------------------------------------------------------------------------- /docs/ClientServerSocketSample.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/ClientServerSocketSample.html -------------------------------------------------------------------------------- /docs/ConsoleMenu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/ConsoleMenu.html -------------------------------------------------------------------------------- /docs/ContactSheetFMXSample.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/ContactSheetFMXSample.html -------------------------------------------------------------------------------- /docs/ContactSheetVCLSample.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/ContactSheetVCLSample.html -------------------------------------------------------------------------------- /docs/CoursesDB.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/CoursesDB.html -------------------------------------------------------------------------------- /docs/DataSnapRPCServer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/DataSnapRPCServer.html -------------------------------------------------------------------------------- /docs/Delphi-Sample-Projects.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/Delphi-Sample-Projects.html -------------------------------------------------------------------------------- /docs/DelphiMVCSample.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/DelphiMVCSample.html -------------------------------------------------------------------------------- /docs/DelphiSampleProjects.hhc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/DelphiSampleProjects.hhc -------------------------------------------------------------------------------- /docs/DelphiSampleProjects.hhp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/DelphiSampleProjects.hhp -------------------------------------------------------------------------------- /docs/DelphiZXIngQRCode.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/DelphiZXIngQRCode.html -------------------------------------------------------------------------------- /docs/DelphiZXIngQRCode.qrAuto.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/DelphiZXIngQRCode.qrAuto.html -------------------------------------------------------------------------------- /docs/DelphiZXIngQRCode.qrNumeric.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/DelphiZXIngQRCode.qrNumeric.html -------------------------------------------------------------------------------- /docs/DelphiZXIngQRCode.qrUTF8BOM.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/DelphiZXIngQRCode.qrUTF8BOM.html -------------------------------------------------------------------------------- /docs/DemoPermissionsAndroid.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/DemoPermissionsAndroid.html -------------------------------------------------------------------------------- /docs/DialogFMXSample.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/DialogFMXSample.html -------------------------------------------------------------------------------- /docs/DialogVCLSample.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/DialogVCLSample.html -------------------------------------------------------------------------------- /docs/DisplayFTPFileList.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/DisplayFTPFileList.html -------------------------------------------------------------------------------- /docs/DisplayImagesFromURL.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/DisplayImagesFromURL.html -------------------------------------------------------------------------------- /docs/DownloadAndOpenAPDFFile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/DownloadAndOpenAPDFFile.html -------------------------------------------------------------------------------- /docs/DumpRequest.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/DumpRequest.html -------------------------------------------------------------------------------- /docs/EditToListBoxSample.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/EditToListBoxSample.html -------------------------------------------------------------------------------- /docs/EffectsAndAnimations.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/EffectsAndAnimations.html -------------------------------------------------------------------------------- /docs/FMXDragAndDropSample.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/FMXDragAndDropSample.html -------------------------------------------------------------------------------- /docs/FMXProjectStructure.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/FMXProjectStructure.html -------------------------------------------------------------------------------- /docs/FMXStylesAnd3D.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/FMXStylesAnd3D.html -------------------------------------------------------------------------------- /docs/FireDACSQLiteSample.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/FireDACSQLiteSample.html -------------------------------------------------------------------------------- /docs/FolderOrFileSelect.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/FolderOrFileSelect.html -------------------------------------------------------------------------------- /docs/FolderOrFileSelectWithFrame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/FolderOrFileSelectWithFrame.html -------------------------------------------------------------------------------- /docs/ForLoopSample.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/ForLoopSample.html -------------------------------------------------------------------------------- /docs/FormUnit1.Form1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/FormUnit1.Form1.html -------------------------------------------------------------------------------- /docs/FormUnit1.TForm1.ButtonStop.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/FormUnit1.TForm1.ButtonStop.html -------------------------------------------------------------------------------- /docs/FormUnit1.TForm1.EditPort.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/FormUnit1.TForm1.EditPort.html -------------------------------------------------------------------------------- /docs/FormUnit1.TForm1.FormCreate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/FormUnit1.TForm1.FormCreate.html -------------------------------------------------------------------------------- /docs/FormUnit1.TForm1.Label1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/FormUnit1.TForm1.Label1.html -------------------------------------------------------------------------------- /docs/FormUnit1.TForm1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/FormUnit1.TForm1.html -------------------------------------------------------------------------------- /docs/FormUnit1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/FormUnit1.html -------------------------------------------------------------------------------- /docs/GotoSample.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/GotoSample.html -------------------------------------------------------------------------------- /docs/HelloWorld.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/HelloWorld.html -------------------------------------------------------------------------------- /docs/HelloWorldConsole.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/HelloWorldConsole.html -------------------------------------------------------------------------------- /docs/HelloWorldFireMonkey.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/HelloWorldFireMonkey.html -------------------------------------------------------------------------------- /docs/HelloWorldVCL.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/HelloWorldVCL.html -------------------------------------------------------------------------------- /docs/IWAjaxAndJavaScript.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/IWAjaxAndJavaScript.html -------------------------------------------------------------------------------- /docs/Idemos1.GetIdemos.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/Idemos1.GetIdemos.html -------------------------------------------------------------------------------- /docs/Idemos1.Idemos.echoDouble.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/Idemos1.Idemos.echoDouble.html -------------------------------------------------------------------------------- /docs/Idemos1.Idemos.echoEnum.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/Idemos1.Idemos.echoEnum.html -------------------------------------------------------------------------------- /docs/Idemos1.Idemos.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/Idemos1.Idemos.html -------------------------------------------------------------------------------- /docs/Idemos1.TDoubleArray.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/Idemos1.TDoubleArray.html -------------------------------------------------------------------------------- /docs/Idemos1.TEnumTest.etAFew.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/Idemos1.TEnumTest.etAFew.html -------------------------------------------------------------------------------- /docs/Idemos1.TEnumTest.etAlot.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/Idemos1.TEnumTest.etAlot.html -------------------------------------------------------------------------------- /docs/Idemos1.TEnumTest.etNone.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/Idemos1.TEnumTest.etNone.html -------------------------------------------------------------------------------- /docs/Idemos1.TEnumTest.etSome.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/Idemos1.TEnumTest.etSome.html -------------------------------------------------------------------------------- /docs/Idemos1.TEnumTest.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/Idemos1.TEnumTest.html -------------------------------------------------------------------------------- /docs/Idemos1.TMyEmployee.Salary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/Idemos1.TMyEmployee.Salary.html -------------------------------------------------------------------------------- /docs/Idemos1.TMyEmployee.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/Idemos1.TMyEmployee.html -------------------------------------------------------------------------------- /docs/Idemos1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/Idemos1.html -------------------------------------------------------------------------------- /docs/ImageList.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/ImageList.html -------------------------------------------------------------------------------- /docs/InterbaseSample.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/InterbaseSample.html -------------------------------------------------------------------------------- /docs/IntraWebDemo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/IntraWebDemo.html -------------------------------------------------------------------------------- /docs/JoystickViewer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/JoystickViewer.html -------------------------------------------------------------------------------- /docs/ListInDB.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/ListInDB.html -------------------------------------------------------------------------------- /docs/ListOfThings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/ListOfThings.html -------------------------------------------------------------------------------- /docs/ListOfthingsStoredInBdD.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/ListOfthingsStoredInBdD.html -------------------------------------------------------------------------------- /docs/ListOfthingsStoredInJSON.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/ListOfthingsStoredInJSON.html -------------------------------------------------------------------------------- /docs/ListeArborescence.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/ListeArborescence.html -------------------------------------------------------------------------------- /docs/LiveBindingsAndVCLStyles.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/LiveBindingsAndVCLStyles.html -------------------------------------------------------------------------------- /docs/LiveBindingsCalc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/LiveBindingsCalc.html -------------------------------------------------------------------------------- /docs/LogMainFormEvents.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/LogMainFormEvents.html -------------------------------------------------------------------------------- /docs/MAIN.TMainForm.ActionList1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/MAIN.TMainForm.ActionList1.html -------------------------------------------------------------------------------- /docs/MAIN.TMainForm.CopyItem.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/MAIN.TMainForm.CopyItem.html -------------------------------------------------------------------------------- /docs/MAIN.TMainForm.CutItem.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/MAIN.TMainForm.CutItem.html -------------------------------------------------------------------------------- /docs/MAIN.TMainForm.Edit1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/MAIN.TMainForm.Edit1.html -------------------------------------------------------------------------------- /docs/MAIN.TMainForm.EditCopy1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/MAIN.TMainForm.EditCopy1.html -------------------------------------------------------------------------------- /docs/MAIN.TMainForm.EditCut1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/MAIN.TMainForm.EditCut1.html -------------------------------------------------------------------------------- /docs/MAIN.TMainForm.EditPaste1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/MAIN.TMainForm.EditPaste1.html -------------------------------------------------------------------------------- /docs/MAIN.TMainForm.File1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/MAIN.TMainForm.File1.html -------------------------------------------------------------------------------- /docs/MAIN.TMainForm.FileClose1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/MAIN.TMainForm.FileClose1.html -------------------------------------------------------------------------------- /docs/MAIN.TMainForm.FileExit1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/MAIN.TMainForm.FileExit1.html -------------------------------------------------------------------------------- /docs/MAIN.TMainForm.FileExitItem.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/MAIN.TMainForm.FileExitItem.html -------------------------------------------------------------------------------- /docs/MAIN.TMainForm.FileNew1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/MAIN.TMainForm.FileNew1.html -------------------------------------------------------------------------------- /docs/MAIN.TMainForm.FileNewItem.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/MAIN.TMainForm.FileNewItem.html -------------------------------------------------------------------------------- /docs/MAIN.TMainForm.FileOpen1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/MAIN.TMainForm.FileOpen1.html -------------------------------------------------------------------------------- /docs/MAIN.TMainForm.FileOpenItem.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/MAIN.TMainForm.FileOpenItem.html -------------------------------------------------------------------------------- /docs/MAIN.TMainForm.FileSave1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/MAIN.TMainForm.FileSave1.html -------------------------------------------------------------------------------- /docs/MAIN.TMainForm.FileSaveAs1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/MAIN.TMainForm.FileSaveAs1.html -------------------------------------------------------------------------------- /docs/MAIN.TMainForm.FileSaveItem.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/MAIN.TMainForm.FileSaveItem.html -------------------------------------------------------------------------------- /docs/MAIN.TMainForm.Help1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/MAIN.TMainForm.Help1.html -------------------------------------------------------------------------------- /docs/MAIN.TMainForm.HelpAbout1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/MAIN.TMainForm.HelpAbout1.html -------------------------------------------------------------------------------- /docs/MAIN.TMainForm.ImageList1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/MAIN.TMainForm.ImageList1.html -------------------------------------------------------------------------------- /docs/MAIN.TMainForm.MainMenu1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/MAIN.TMainForm.MainMenu1.html -------------------------------------------------------------------------------- /docs/MAIN.TMainForm.N1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/MAIN.TMainForm.N1.html -------------------------------------------------------------------------------- /docs/MAIN.TMainForm.OpenDialog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/MAIN.TMainForm.OpenDialog.html -------------------------------------------------------------------------------- /docs/MAIN.TMainForm.PasteItem.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/MAIN.TMainForm.PasteItem.html -------------------------------------------------------------------------------- /docs/MAIN.TMainForm.StatusBar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/MAIN.TMainForm.StatusBar.html -------------------------------------------------------------------------------- /docs/MAIN.TMainForm.ToolBar2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/MAIN.TMainForm.ToolBar2.html -------------------------------------------------------------------------------- /docs/MAIN.TMainForm.ToolButton1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/MAIN.TMainForm.ToolButton1.html -------------------------------------------------------------------------------- /docs/MAIN.TMainForm.ToolButton10.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/MAIN.TMainForm.ToolButton10.html -------------------------------------------------------------------------------- /docs/MAIN.TMainForm.ToolButton11.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/MAIN.TMainForm.ToolButton11.html -------------------------------------------------------------------------------- /docs/MAIN.TMainForm.ToolButton2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/MAIN.TMainForm.ToolButton2.html -------------------------------------------------------------------------------- /docs/MAIN.TMainForm.ToolButton3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/MAIN.TMainForm.ToolButton3.html -------------------------------------------------------------------------------- /docs/MAIN.TMainForm.ToolButton4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/MAIN.TMainForm.ToolButton4.html -------------------------------------------------------------------------------- /docs/MAIN.TMainForm.ToolButton5.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/MAIN.TMainForm.ToolButton5.html -------------------------------------------------------------------------------- /docs/MAIN.TMainForm.ToolButton6.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/MAIN.TMainForm.ToolButton6.html -------------------------------------------------------------------------------- /docs/MAIN.TMainForm.ToolButton7.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/MAIN.TMainForm.ToolButton7.html -------------------------------------------------------------------------------- /docs/MAIN.TMainForm.ToolButton8.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/MAIN.TMainForm.ToolButton8.html -------------------------------------------------------------------------------- /docs/MAIN.TMainForm.ToolButton9.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/MAIN.TMainForm.ToolButton9.html -------------------------------------------------------------------------------- /docs/MAIN.TMainForm.Window1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/MAIN.TMainForm.Window1.html -------------------------------------------------------------------------------- /docs/MDIAPP.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/MDIAPP.html -------------------------------------------------------------------------------- /docs/Main.TMainForm.UniBitBtn1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/Main.TMainForm.UniBitBtn1.html -------------------------------------------------------------------------------- /docs/Main.TMainForm.UniButton1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/Main.TMainForm.UniButton1.html -------------------------------------------------------------------------------- /docs/Main.TMainForm.UniDBGrid1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/Main.TMainForm.UniDBGrid1.html -------------------------------------------------------------------------------- /docs/Main.TMainForm.UniEdit1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/Main.TMainForm.UniEdit1.html -------------------------------------------------------------------------------- /docs/Main.TMainForm.UniLabel1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/Main.TMainForm.UniLabel1.html -------------------------------------------------------------------------------- /docs/MainModule.TUniMainModule.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/MainModule.TUniMainModule.html -------------------------------------------------------------------------------- /docs/MainModule.UniMainModule.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/MainModule.UniMainModule.html -------------------------------------------------------------------------------- /docs/MainModule.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/MainModule.html -------------------------------------------------------------------------------- /docs/MasterDetail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/MasterDetail.html -------------------------------------------------------------------------------- /docs/MasterDetailApplication.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/MasterDetailApplication.html -------------------------------------------------------------------------------- /docs/MastermindArduino.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/MastermindArduino.html -------------------------------------------------------------------------------- /docs/MultiDBSample.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/MultiDBSample.html -------------------------------------------------------------------------------- /docs/MultiFormOnMobile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/MultiFormOnMobile.html -------------------------------------------------------------------------------- /docs/Olf.FMX.Streams.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/Olf.FMX.Streams.html -------------------------------------------------------------------------------- /docs/Olf.Net.Socket.Messaging.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/Olf.Net.Socket.Messaging.html -------------------------------------------------------------------------------- /docs/Olf.RTL.Checksum.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/Olf.RTL.Checksum.html -------------------------------------------------------------------------------- /docs/Olf.RTL.FileBuffer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/Olf.RTL.FileBuffer.html -------------------------------------------------------------------------------- /docs/Olf.RTL.GenRandomID.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/Olf.RTL.GenRandomID.html -------------------------------------------------------------------------------- /docs/Olf.RTL.Params.TParams.Load.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/Olf.RTL.Params.TParams.Load.html -------------------------------------------------------------------------------- /docs/Olf.RTL.Params.TParams.Save.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/Olf.RTL.Params.TParams.Save.html -------------------------------------------------------------------------------- /docs/Olf.RTL.Params.TParams.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/Olf.RTL.Params.TParams.html -------------------------------------------------------------------------------- /docs/Olf.RTL.Params.TParamsFile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/Olf.RTL.Params.TParamsFile.html -------------------------------------------------------------------------------- /docs/Olf.RTL.Params.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/Olf.RTL.Params.html -------------------------------------------------------------------------------- /docs/Olf.VCL.Streams.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/Olf.VCL.Streams.html -------------------------------------------------------------------------------- /docs/PNGWithAlphaLayerSample.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/PNGWithAlphaLayerSample.html -------------------------------------------------------------------------------- /docs/PageWeb.Form1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/PageWeb.Form1.html -------------------------------------------------------------------------------- /docs/PageWeb.TForm1.WebButton1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/PageWeb.TForm1.WebButton1.html -------------------------------------------------------------------------------- /docs/PageWeb.TForm1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/PageWeb.TForm1.html -------------------------------------------------------------------------------- /docs/PageWeb.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/PageWeb.html -------------------------------------------------------------------------------- /docs/PageWeb1.Form1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/PageWeb1.Form1.html -------------------------------------------------------------------------------- /docs/PageWeb1.TForm1.WebDBGrid1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/PageWeb1.TForm1.WebDBGrid1.html -------------------------------------------------------------------------------- /docs/PageWeb1.TForm1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/PageWeb1.TForm1.html -------------------------------------------------------------------------------- /docs/PageWeb1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/PageWeb1.html -------------------------------------------------------------------------------- /docs/ParallelFor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/ParallelFor.html -------------------------------------------------------------------------------- /docs/ParcourtDeLaListe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/ParcourtDeLaListe.html -------------------------------------------------------------------------------- /docs/PictureReceiver_FMX.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/PictureReceiver_FMX.html -------------------------------------------------------------------------------- /docs/PictureReceiver_VCL.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/PictureReceiver_VCL.html -------------------------------------------------------------------------------- /docs/PictureSender_FMX.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/PictureSender_FMX.html -------------------------------------------------------------------------------- /docs/PlayWithComponents.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/PlayWithComponents.html -------------------------------------------------------------------------------- /docs/PopupMenuOnButton.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/PopupMenuOnButton.html -------------------------------------------------------------------------------- /docs/QRCodeGenerator_VCL.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/QRCodeGenerator_VCL.html -------------------------------------------------------------------------------- /docs/QRCodeReader_FMX.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/QRCodeReader_FMX.html -------------------------------------------------------------------------------- /docs/RESTClientSNCF.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/RESTClientSNCF.html -------------------------------------------------------------------------------- /docs/Recursivity.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/Recursivity.html -------------------------------------------------------------------------------- /docs/SDIWithDialogBox.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/SDIWithDialogBox.html -------------------------------------------------------------------------------- /docs/SOAPClient.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/SOAPClient.html -------------------------------------------------------------------------------- /docs/SOAPServer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/SOAPServer.html -------------------------------------------------------------------------------- /docs/SQLiteBlobsSample.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/SQLiteBlobsSample.html -------------------------------------------------------------------------------- /docs/ScaledLayoutSample.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/ScaledLayoutSample.html -------------------------------------------------------------------------------- /docs/SearchBTDevices.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/SearchBTDevices.html -------------------------------------------------------------------------------- /docs/ServerController.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/ServerController.html -------------------------------------------------------------------------------- /docs/ServerMethodsUnit1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/ServerMethodsUnit1.html -------------------------------------------------------------------------------- /docs/ServerModule.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/ServerModule.html -------------------------------------------------------------------------------- /docs/ShowBeaconCharacteristics.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/ShowBeaconCharacteristics.html -------------------------------------------------------------------------------- /docs/ShowHideScreenAsLayout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/ShowHideScreenAsLayout.html -------------------------------------------------------------------------------- /docs/ShowSelectedItem.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/ShowSelectedItem.html -------------------------------------------------------------------------------- /docs/SignatureFMXDemo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/SignatureFMXDemo.html -------------------------------------------------------------------------------- /docs/StringComparison.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/StringComparison.html -------------------------------------------------------------------------------- /docs/StructureProgSample.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/StructureProgSample.html -------------------------------------------------------------------------------- /docs/StylesAndEXESizeSample.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/StylesAndEXESizeSample.html -------------------------------------------------------------------------------- /docs/TBiometricAuthSample.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/TBiometricAuthSample.html -------------------------------------------------------------------------------- /docs/TControlListBiolife.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/TControlListBiolife.html -------------------------------------------------------------------------------- /docs/TControlList_MultiSelect.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/TControlList_MultiSelect.html -------------------------------------------------------------------------------- /docs/TFlowLayoutSample.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/TFlowLayoutSample.html -------------------------------------------------------------------------------- /docs/TListSortSample.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/TListSortSample.html -------------------------------------------------------------------------------- /docs/TMSWebCoreDelphiBooksSample.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/TMSWebCoreDelphiBooksSample.html -------------------------------------------------------------------------------- /docs/TNumberBox_MinValue.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/TNumberBox_MinValue.html -------------------------------------------------------------------------------- /docs/TTouchKeyboard_with_Style.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/TTouchKeyboard_with_Style.html -------------------------------------------------------------------------------- /docs/TURLStreamSample.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/TURLStreamSample.html -------------------------------------------------------------------------------- /docs/UniGUIDatabaseSample.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/UniGUIDatabaseSample.html -------------------------------------------------------------------------------- /docs/UniGUISample.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/UniGUISample.html -------------------------------------------------------------------------------- /docs/Unit1.DataModule1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/Unit1.DataModule1.html -------------------------------------------------------------------------------- /docs/Unit1.Form1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/Unit1.Form1.html -------------------------------------------------------------------------------- /docs/Unit1.TDataModule1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/Unit1.TDataModule1.html -------------------------------------------------------------------------------- /docs/Unit1.TForm1.BindNavigator2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/Unit1.TForm1.BindNavigator2.html -------------------------------------------------------------------------------- /docs/Unit1.TForm1.BindSourceDB1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/Unit1.TForm1.BindSourceDB1.html -------------------------------------------------------------------------------- /docs/Unit1.TForm1.BindingsList1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/Unit1.TForm1.BindingsList1.html -------------------------------------------------------------------------------- /docs/Unit1.TForm1.BiometricAuth1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/Unit1.TForm1.BiometricAuth1.html -------------------------------------------------------------------------------- /docs/Unit1.TForm1.Button1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/Unit1.TForm1.Button1.html -------------------------------------------------------------------------------- /docs/Unit1.TForm1.Button10.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/Unit1.TForm1.Button10.html -------------------------------------------------------------------------------- /docs/Unit1.TForm1.Button11.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/Unit1.TForm1.Button11.html -------------------------------------------------------------------------------- /docs/Unit1.TForm1.Button12.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/Unit1.TForm1.Button12.html -------------------------------------------------------------------------------- /docs/Unit1.TForm1.Button13.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/Unit1.TForm1.Button13.html -------------------------------------------------------------------------------- /docs/Unit1.TForm1.Button14.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/Unit1.TForm1.Button14.html -------------------------------------------------------------------------------- /docs/Unit1.TForm1.Button1Click.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/Unit1.TForm1.Button1Click.html -------------------------------------------------------------------------------- /docs/Unit1.TForm1.Button2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/Unit1.TForm1.Button2.html -------------------------------------------------------------------------------- /docs/Unit1.TForm1.Button2Click.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/Unit1.TForm1.Button2Click.html -------------------------------------------------------------------------------- /docs/Unit1.TForm1.Button3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/Unit1.TForm1.Button3.html -------------------------------------------------------------------------------- /docs/Unit1.TForm1.Button3Click.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/Unit1.TForm1.Button3Click.html -------------------------------------------------------------------------------- /docs/Unit1.TForm1.Button4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/Unit1.TForm1.Button4.html -------------------------------------------------------------------------------- /docs/Unit1.TForm1.Button4Click.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/Unit1.TForm1.Button4Click.html -------------------------------------------------------------------------------- /docs/Unit1.TForm1.Button5.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/Unit1.TForm1.Button5.html -------------------------------------------------------------------------------- /docs/Unit1.TForm1.Button5Click.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/Unit1.TForm1.Button5Click.html -------------------------------------------------------------------------------- /docs/Unit1.TForm1.Button6.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/Unit1.TForm1.Button6.html -------------------------------------------------------------------------------- /docs/Unit1.TForm1.Button7.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/Unit1.TForm1.Button7.html -------------------------------------------------------------------------------- /docs/Unit1.TForm1.Button8.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/Unit1.TForm1.Button8.html -------------------------------------------------------------------------------- /docs/Unit1.TForm1.Button9.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/Unit1.TForm1.Button9.html -------------------------------------------------------------------------------- /docs/Unit1.TForm1.CheckBox1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/Unit1.TForm1.CheckBox1.html -------------------------------------------------------------------------------- /docs/Unit1.TForm1.CheckBox1Click.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/Unit1.TForm1.CheckBox1Click.html -------------------------------------------------------------------------------- /docs/Unit1.TForm1.ClientDataSet1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/Unit1.TForm1.ClientDataSet1.html -------------------------------------------------------------------------------- /docs/Unit1.TForm1.ControlList1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/Unit1.TForm1.ControlList1.html -------------------------------------------------------------------------------- /docs/Unit1.TForm1.Create.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/Unit1.TForm1.Create.html -------------------------------------------------------------------------------- /docs/Unit1.TForm1.CustomersTable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/Unit1.TForm1.CustomersTable.html -------------------------------------------------------------------------------- /docs/Unit1.TForm1.Edit1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/Unit1.TForm1.Edit1.html -------------------------------------------------------------------------------- /docs/Unit1.TForm1.Edit1Enter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/Unit1.TForm1.Edit1Enter.html -------------------------------------------------------------------------------- /docs/Unit1.TForm1.Edit2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/Unit1.TForm1.Edit2.html -------------------------------------------------------------------------------- /docs/Unit1.TForm1.Edit3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/Unit1.TForm1.Edit3.html -------------------------------------------------------------------------------- /docs/Unit1.TForm1.FlowLayout1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/Unit1.TForm1.FlowLayout1.html -------------------------------------------------------------------------------- /docs/Unit1.TForm1.FormCreate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/Unit1.TForm1.FormCreate.html -------------------------------------------------------------------------------- /docs/Unit1.TForm1.FormResize.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/Unit1.TForm1.FormResize.html -------------------------------------------------------------------------------- /docs/Unit1.TForm1.FormShow.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/Unit1.TForm1.FormShow.html -------------------------------------------------------------------------------- /docs/Unit1.TForm1.Image1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/Unit1.TForm1.Image1.html -------------------------------------------------------------------------------- /docs/Unit1.TForm1.ImageList1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/Unit1.TForm1.ImageList1.html -------------------------------------------------------------------------------- /docs/Unit1.TForm1.Label1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/Unit1.TForm1.Label1.html -------------------------------------------------------------------------------- /docs/Unit1.TForm1.Label2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/Unit1.TForm1.Label2.html -------------------------------------------------------------------------------- /docs/Unit1.TForm1.Label3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/Unit1.TForm1.Label3.html -------------------------------------------------------------------------------- /docs/Unit1.TForm1.Label4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/Unit1.TForm1.Label4.html -------------------------------------------------------------------------------- /docs/Unit1.TForm1.Layout1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/Unit1.TForm1.Layout1.html -------------------------------------------------------------------------------- /docs/Unit1.TForm1.ListBox1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/Unit1.TForm1.ListBox1.html -------------------------------------------------------------------------------- /docs/Unit1.TForm1.ListBox1Change.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/Unit1.TForm1.ListBox1Change.html -------------------------------------------------------------------------------- /docs/Unit1.TForm1.Memo1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/Unit1.TForm1.Memo1.html -------------------------------------------------------------------------------- /docs/Unit1.TForm1.NbPlusPlus.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/Unit1.TForm1.NbPlusPlus.html -------------------------------------------------------------------------------- /docs/Unit1.TForm1.NumberBox1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/Unit1.TForm1.NumberBox1.html -------------------------------------------------------------------------------- /docs/Unit1.TForm1.Rectangle1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/Unit1.TForm1.Rectangle1.html -------------------------------------------------------------------------------- /docs/Unit1.TForm1.ScaledLayout1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/Unit1.TForm1.ScaledLayout1.html -------------------------------------------------------------------------------- /docs/Unit1.TForm1.StringGrid1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/Unit1.TForm1.StringGrid1.html -------------------------------------------------------------------------------- /docs/Unit1.TForm1.ToolBar1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/Unit1.TForm1.ToolBar1.html -------------------------------------------------------------------------------- /docs/Unit1.TForm1.ToolButton1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/Unit1.TForm1.ToolButton1.html -------------------------------------------------------------------------------- /docs/Unit1.TForm1.ToolButton2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/Unit1.TForm1.ToolButton2.html -------------------------------------------------------------------------------- /docs/Unit1.TForm1.ToolButton3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/Unit1.TForm1.ToolButton3.html -------------------------------------------------------------------------------- /docs/Unit1.TForm1.TouchKeyboard1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/Unit1.TForm1.TouchKeyboard1.html -------------------------------------------------------------------------------- /docs/Unit1.TForm1.TrackBar1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/Unit1.TForm1.TrackBar1.html -------------------------------------------------------------------------------- /docs/Unit1.TForm1.TrackBar2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/Unit1.TForm1.TrackBar2.html -------------------------------------------------------------------------------- /docs/Unit1.TForm1.VertScrollBox1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/Unit1.TForm1.VertScrollBox1.html -------------------------------------------------------------------------------- /docs/Unit1.TForm1.VirtualImage1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/Unit1.TForm1.VirtualImage1.html -------------------------------------------------------------------------------- /docs/Unit1.TForm1.h.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/Unit1.TForm1.h.html -------------------------------------------------------------------------------- /docs/Unit1.TForm1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/Unit1.TForm1.html -------------------------------------------------------------------------------- /docs/Unit1.TForm1.w.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/Unit1.TForm1.w.html -------------------------------------------------------------------------------- /docs/Unit1.TIWForm1.IWButton1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/Unit1.TIWForm1.IWButton1.html -------------------------------------------------------------------------------- /docs/Unit1.TIWForm1.IWButton2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/Unit1.TIWForm1.IWButton2.html -------------------------------------------------------------------------------- /docs/Unit1.TIWForm1.IWButton3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/Unit1.TIWForm1.IWButton3.html -------------------------------------------------------------------------------- /docs/Unit1.TIWForm1.IWButton4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/Unit1.TIWForm1.IWButton4.html -------------------------------------------------------------------------------- /docs/Unit1.TIWForm1.IWEdit1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/Unit1.TIWForm1.IWEdit1.html -------------------------------------------------------------------------------- /docs/Unit1.TIWForm1.IWLabel1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/Unit1.TIWForm1.IWLabel1.html -------------------------------------------------------------------------------- /docs/Unit1.TIWForm1.IWLabel2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/Unit1.TIWForm1.IWLabel2.html -------------------------------------------------------------------------------- /docs/Unit1.TIWForm1.IWURL1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/Unit1.TIWForm1.IWURL1.html -------------------------------------------------------------------------------- /docs/Unit1.TIWForm1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/Unit1.TIWForm1.html -------------------------------------------------------------------------------- /docs/Unit1.helloworld.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/Unit1.helloworld.html -------------------------------------------------------------------------------- /docs/Unit1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/Unit1.html -------------------------------------------------------------------------------- /docs/Unit2.DataModule2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/Unit2.DataModule2.html -------------------------------------------------------------------------------- /docs/Unit2.Form2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/Unit2.Form2.html -------------------------------------------------------------------------------- /docs/Unit2.TDataModule2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/Unit2.TDataModule2.html -------------------------------------------------------------------------------- /docs/Unit2.TForm2.Button1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/Unit2.TForm2.Button1.html -------------------------------------------------------------------------------- /docs/Unit2.TForm2.Button1Click.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/Unit2.TForm2.Button1Click.html -------------------------------------------------------------------------------- /docs/Unit2.TForm2.TouchKeyboard1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/Unit2.TForm2.TouchKeyboard1.html -------------------------------------------------------------------------------- /docs/Unit2.TForm2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/Unit2.TForm2.html -------------------------------------------------------------------------------- /docs/Unit2.TUniForm2.UniBitBtn1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/Unit2.TUniForm2.UniBitBtn1.html -------------------------------------------------------------------------------- /docs/Unit2.TUniForm2.UniBitBtn2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/Unit2.TUniForm2.UniBitBtn2.html -------------------------------------------------------------------------------- /docs/Unit2.TUniForm2.UniDBEdit1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/Unit2.TUniForm2.UniDBEdit1.html -------------------------------------------------------------------------------- /docs/Unit2.TUniForm2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/Unit2.TUniForm2.html -------------------------------------------------------------------------------- /docs/Unit2.UniForm2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/Unit2.UniForm2.html -------------------------------------------------------------------------------- /docs/Unit2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/Unit2.html -------------------------------------------------------------------------------- /docs/Unit3.Form3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/Unit3.Form3.html -------------------------------------------------------------------------------- /docs/Unit3.TForm3.Button1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/Unit3.TForm3.Button1.html -------------------------------------------------------------------------------- /docs/Unit3.TForm3.Button1Click.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/Unit3.TForm3.Button1Click.html -------------------------------------------------------------------------------- /docs/Unit3.TForm3.TouchKeyboard1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/Unit3.TForm3.TouchKeyboard1.html -------------------------------------------------------------------------------- /docs/Unit3.TForm3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/Unit3.TForm3.html -------------------------------------------------------------------------------- /docs/Unit3.TraitementDeLaBase.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/Unit3.TraitementDeLaBase.html -------------------------------------------------------------------------------- /docs/Unit3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/Unit3.html -------------------------------------------------------------------------------- /docs/Unit4.DataModule4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/Unit4.DataModule4.html -------------------------------------------------------------------------------- /docs/Unit4.TDataModule4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/Unit4.TDataModule4.html -------------------------------------------------------------------------------- /docs/Unit4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/Unit4.html -------------------------------------------------------------------------------- /docs/UnitFormMain.FormMain.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/UnitFormMain.FormMain.html -------------------------------------------------------------------------------- /docs/UnitFormMain.TFormMain.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/UnitFormMain.TFormMain.html -------------------------------------------------------------------------------- /docs/UnitFormMain.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/UnitFormMain.html -------------------------------------------------------------------------------- /docs/UpperAndLowerCase.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/UpperAndLowerCase.html -------------------------------------------------------------------------------- /docs/UserSessionUnit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/UserSessionUnit.html -------------------------------------------------------------------------------- /docs/VCLProjectStructure.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/VCLProjectStructure.html -------------------------------------------------------------------------------- /docs/VirtualImageList.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/VirtualImageList.html -------------------------------------------------------------------------------- /docs/WebBrokerDemo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/WebBrokerDemo.html -------------------------------------------------------------------------------- /docs/WebModuleUnit1.TWebModule1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/WebModuleUnit1.TWebModule1.html -------------------------------------------------------------------------------- /docs/WebModuleUnit1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/WebModuleUnit1.html -------------------------------------------------------------------------------- /docs/WhoisClient.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/WhoisClient.html -------------------------------------------------------------------------------- /docs/ZXIng.ByteSegments.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/ZXIng.ByteSegments.html -------------------------------------------------------------------------------- /docs/ZXing.BarcodeFormat.AZTEC.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/ZXing.BarcodeFormat.AZTEC.html -------------------------------------------------------------------------------- /docs/ZXing.BarcodeFormat.Auto.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/ZXing.BarcodeFormat.Auto.html -------------------------------------------------------------------------------- /docs/ZXing.BarcodeFormat.CODABAR.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/ZXing.BarcodeFormat.CODABAR.html -------------------------------------------------------------------------------- /docs/ZXing.BarcodeFormat.CODE_39.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/ZXing.BarcodeFormat.CODE_39.html -------------------------------------------------------------------------------- /docs/ZXing.BarcodeFormat.CODE_93.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/ZXing.BarcodeFormat.CODE_93.html -------------------------------------------------------------------------------- /docs/ZXing.BarcodeFormat.EAN_13.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/ZXing.BarcodeFormat.EAN_13.html -------------------------------------------------------------------------------- /docs/ZXing.BarcodeFormat.EAN_8.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/ZXing.BarcodeFormat.EAN_8.html -------------------------------------------------------------------------------- /docs/ZXing.BarcodeFormat.ITF.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/ZXing.BarcodeFormat.ITF.html -------------------------------------------------------------------------------- /docs/ZXing.BarcodeFormat.MSI.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/ZXing.BarcodeFormat.MSI.html -------------------------------------------------------------------------------- /docs/ZXing.BarcodeFormat.PDF_417.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/ZXing.BarcodeFormat.PDF_417.html -------------------------------------------------------------------------------- /docs/ZXing.BarcodeFormat.PLESSEY.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/ZXing.BarcodeFormat.PLESSEY.html -------------------------------------------------------------------------------- /docs/ZXing.BarcodeFormat.QR_CODE.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/ZXing.BarcodeFormat.QR_CODE.html -------------------------------------------------------------------------------- /docs/ZXing.BarcodeFormat.RSS_14.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/ZXing.BarcodeFormat.RSS_14.html -------------------------------------------------------------------------------- /docs/ZXing.BarcodeFormat.UPC_A.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/ZXing.BarcodeFormat.UPC_A.html -------------------------------------------------------------------------------- /docs/ZXing.BarcodeFormat.UPC_E.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/ZXing.BarcodeFormat.UPC_E.html -------------------------------------------------------------------------------- /docs/ZXing.BarcodeFormat.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/ZXing.BarcodeFormat.html -------------------------------------------------------------------------------- /docs/ZXing.BaseLuminanceSource.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/ZXing.BaseLuminanceSource.html -------------------------------------------------------------------------------- /docs/ZXing.Binarizer.TBinarizer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/ZXing.Binarizer.TBinarizer.html -------------------------------------------------------------------------------- /docs/ZXing.Binarizer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/ZXing.Binarizer.html -------------------------------------------------------------------------------- /docs/ZXing.BinaryBitmap.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/ZXing.BinaryBitmap.html -------------------------------------------------------------------------------- /docs/ZXing.BitSource.TBitSource.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/ZXing.BitSource.TBitSource.html -------------------------------------------------------------------------------- /docs/ZXing.BitSource.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/ZXing.BitSource.html -------------------------------------------------------------------------------- /docs/ZXing.CharacterSetECI.TECI.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/ZXing.CharacterSetECI.TECI.html -------------------------------------------------------------------------------- /docs/ZXing.CharacterSetECI.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/ZXing.CharacterSetECI.html -------------------------------------------------------------------------------- /docs/ZXing.Common.BitArray.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/ZXing.Common.BitArray.html -------------------------------------------------------------------------------- /docs/ZXing.Common.BitMatrix.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/ZXing.Common.BitMatrix.html -------------------------------------------------------------------------------- /docs/ZXing.Common.DetectorResult.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/ZXing.Common.DetectorResult.html -------------------------------------------------------------------------------- /docs/ZXing.Common.GridSampler.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/ZXing.Common.GridSampler.html -------------------------------------------------------------------------------- /docs/ZXing.DecodeHintType.OTHER.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/ZXing.DecodeHintType.OTHER.html -------------------------------------------------------------------------------- /docs/ZXing.DecodeHintType.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/ZXing.DecodeHintType.html -------------------------------------------------------------------------------- /docs/ZXing.DecoderResult.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/ZXing.DecoderResult.html -------------------------------------------------------------------------------- /docs/ZXing.DefaultGridSampler.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/ZXing.DefaultGridSampler.html -------------------------------------------------------------------------------- /docs/ZXing.EncodeHintType.HEIGHT.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/ZXing.EncodeHintType.HEIGHT.html -------------------------------------------------------------------------------- /docs/ZXing.EncodeHintType.MARGIN.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/ZXing.EncodeHintType.MARGIN.html -------------------------------------------------------------------------------- /docs/ZXing.EncodeHintType.WIDTH.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/ZXing.EncodeHintType.WIDTH.html -------------------------------------------------------------------------------- /docs/ZXing.EncodeHintType.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/ZXing.EncodeHintType.html -------------------------------------------------------------------------------- /docs/ZXing.Helpers.TArray.Clone.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/ZXing.Helpers.TArray.Clone.html -------------------------------------------------------------------------------- /docs/ZXing.Helpers.TArray.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/ZXing.Helpers.TArray.html -------------------------------------------------------------------------------- /docs/ZXing.Helpers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/ZXing.Helpers.html -------------------------------------------------------------------------------- /docs/ZXing.HybridBinarizer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/ZXing.HybridBinarizer.html -------------------------------------------------------------------------------- /docs/ZXing.LuminanceSource.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/ZXing.LuminanceSource.html -------------------------------------------------------------------------------- /docs/ZXing.MultiFormatReader.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/ZXing.MultiFormatReader.html -------------------------------------------------------------------------------- /docs/ZXing.OneD.Code128Reader.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/ZXing.OneD.Code128Reader.html -------------------------------------------------------------------------------- /docs/ZXing.OneD.Code39Reader.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/ZXing.OneD.Code39Reader.html -------------------------------------------------------------------------------- /docs/ZXing.OneD.Code93Reader.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/ZXing.OneD.Code93Reader.html -------------------------------------------------------------------------------- /docs/ZXing.OneD.EAN13Reader.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/ZXing.OneD.EAN13Reader.html -------------------------------------------------------------------------------- /docs/ZXing.OneD.EAN8Reader.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/ZXing.OneD.EAN8Reader.html -------------------------------------------------------------------------------- /docs/ZXing.OneD.ITFReader.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/ZXing.OneD.ITFReader.html -------------------------------------------------------------------------------- /docs/ZXing.OneD.OneDReader.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/ZXing.OneD.OneDReader.html -------------------------------------------------------------------------------- /docs/ZXing.OneD.UPCAReader.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/ZXing.OneD.UPCAReader.html -------------------------------------------------------------------------------- /docs/ZXing.OneD.UPCEANReader.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/ZXing.OneD.UPCEANReader.html -------------------------------------------------------------------------------- /docs/ZXing.OneD.UPCEReader.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/ZXing.OneD.UPCEReader.html -------------------------------------------------------------------------------- /docs/ZXing.QrCode.Internal.Mode.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/ZXing.QrCode.Internal.Mode.html -------------------------------------------------------------------------------- /docs/ZXing.QrCode.QRCodeReader.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/ZXing.QrCode.QRCodeReader.html -------------------------------------------------------------------------------- /docs/ZXing.RGBLuminanceSource.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/ZXing.RGBLuminanceSource.html -------------------------------------------------------------------------------- /docs/ZXing.ReadResult.IMetaData.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/ZXing.ReadResult.IMetaData.html -------------------------------------------------------------------------------- /docs/ZXing.ReadResult.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/ZXing.ReadResult.html -------------------------------------------------------------------------------- /docs/ZXing.Reader.IReader.Reset.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/ZXing.Reader.IReader.Reset.html -------------------------------------------------------------------------------- /docs/ZXing.Reader.IReader.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/ZXing.Reader.IReader.html -------------------------------------------------------------------------------- /docs/ZXing.Reader.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/ZXing.Reader.html -------------------------------------------------------------------------------- /docs/ZXing.ResultMetadataType.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/ZXing.ResultMetadataType.html -------------------------------------------------------------------------------- /docs/ZXing.ResultPoint.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/ZXing.ResultPoint.html -------------------------------------------------------------------------------- /docs/ZXing.ScanManager.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/ZXing.ScanManager.html -------------------------------------------------------------------------------- /docs/ZXing.StringUtils.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/ZXing.StringUtils.html -------------------------------------------------------------------------------- /docs/about.AboutBox.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/about.AboutBox.html -------------------------------------------------------------------------------- /docs/about.TAboutBox.Comments.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/about.TAboutBox.Comments.html -------------------------------------------------------------------------------- /docs/about.TAboutBox.Copyright.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/about.TAboutBox.Copyright.html -------------------------------------------------------------------------------- /docs/about.TAboutBox.OKButton.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/about.TAboutBox.OKButton.html -------------------------------------------------------------------------------- /docs/about.TAboutBox.Panel1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/about.TAboutBox.Panel1.html -------------------------------------------------------------------------------- /docs/about.TAboutBox.ProductName.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/about.TAboutBox.ProductName.html -------------------------------------------------------------------------------- /docs/about.TAboutBox.ProgramIcon.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/about.TAboutBox.ProgramIcon.html -------------------------------------------------------------------------------- /docs/about.TAboutBox.Version.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/about.TAboutBox.Version.html -------------------------------------------------------------------------------- /docs/about.TAboutBox.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/about.TAboutBox.html -------------------------------------------------------------------------------- /docs/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/about.html -------------------------------------------------------------------------------- /docs/cadFileSelectionFrame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/cadFileSelectionFrame.html -------------------------------------------------------------------------------- /docs/fAccueil.TfrmAccueil.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fAccueil.TfrmAccueil.html -------------------------------------------------------------------------------- /docs/fAccueil.frmAccueil.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fAccueil.frmAccueil.html -------------------------------------------------------------------------------- /docs/fAccueil.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fAccueil.html -------------------------------------------------------------------------------- /docs/fChoisirUnTarif.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fChoisirUnTarif.html -------------------------------------------------------------------------------- /docs/fDialogBox.Form2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fDialogBox.Form2.html -------------------------------------------------------------------------------- /docs/fDialogBox.TForm2.Button1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fDialogBox.TForm2.Button1.html -------------------------------------------------------------------------------- /docs/fDialogBox.TForm2.Label1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fDialogBox.TForm2.Label1.html -------------------------------------------------------------------------------- /docs/fDialogBox.TForm2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fDialogBox.TForm2.html -------------------------------------------------------------------------------- /docs/fDialogBox.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fDialogBox.html -------------------------------------------------------------------------------- /docs/fFMX.Form2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fFMX.Form2.html -------------------------------------------------------------------------------- /docs/fFMX.TForm2.Button1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fFMX.TForm2.Button1.html -------------------------------------------------------------------------------- /docs/fFMX.TForm2.Button1Click.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fFMX.TForm2.Button1Click.html -------------------------------------------------------------------------------- /docs/fFMX.TForm2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fFMX.TForm2.html -------------------------------------------------------------------------------- /docs/fFMX.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fFMX.html -------------------------------------------------------------------------------- /docs/fItem.TLigne.CheckBox1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fItem.TLigne.CheckBox1.html -------------------------------------------------------------------------------- /docs/fItem.TLigne.btnModifier.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fItem.TLigne.btnModifier.html -------------------------------------------------------------------------------- /docs/fItem.TLigne.btnSupprimer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fItem.TLigne.btnSupprimer.html -------------------------------------------------------------------------------- /docs/fItem.TLigne.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fItem.TLigne.html -------------------------------------------------------------------------------- /docs/fItem.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fItem.html -------------------------------------------------------------------------------- /docs/fMain.Form1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.Form1.html -------------------------------------------------------------------------------- /docs/fMain.Form2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.Form2.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.ApdComPort1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.ApdComPort1.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.BandsEffect1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.BandsEffect1.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.Beacon1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.Beacon1.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.BindNavigator1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.BindNavigator1.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.BindNavigator2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.BindNavigator2.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.BindSourceDB1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.BindSourceDB1.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.BindSourceDB2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.BindSourceDB2.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.BindSourceDB3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.BindSourceDB3.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.BindingsList1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.BindingsList1.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.BitBtn1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.BitBtn1.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.BitBtn1Click.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.BitBtn1Click.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.Bluetooth1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.Bluetooth1.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.BluetoothLE1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.BluetoothLE1.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.Button1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.Button1.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.Button1Click.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.Button1Click.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.Button2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.Button2.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.Button2Click.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.Button2Click.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.Button3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.Button3.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.Button3Click.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.Button3Click.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.Button4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.Button4.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.Button4Click.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.Button4Click.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.Button5.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.Button5.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.Button5Click.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.Button5Click.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.Button6.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.Button6.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.Button6Click.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.Button6Click.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.CLComPort1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.CLComPort1.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.CLUnpacket1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.CLUnpacket1.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.Calendar1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.Calendar1.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.CheckBox1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.CheckBox1.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.ClickSurImage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.ClickSurImage.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.Client.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.Client.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.ComboBox1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.ComboBox1.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.DBGrid1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.DBGrid1.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.DBGrid2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.DBGrid2.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.DBNavigator1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.DBNavigator1.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.DataSource1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.DataSource1.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.DataSource2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.DataSource2.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.DataSource3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.DataSource3.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.DisplaySize.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.DisplaySize.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.DrawOnImage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.DrawOnImage.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.Edit1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.Edit1.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.Edit1Change.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.Edit1Change.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.Edit1Click.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.Edit1Click.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.Edit2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.Edit2.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.Edit3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.Edit3.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.Edit4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.Edit4.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.Edit5.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.Edit5.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.EditButton1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.EditButton1.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.EmployeeTable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.EmployeeTable.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.FDConnection1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.FDConnection1.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.FDLocalSQL.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.FDLocalSQL.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.FDMemTable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.FDMemTable.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.FDMemTable1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.FDMemTable1.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.FDQuery1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.FDQuery1.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.FDQuery1Guid.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.FDQuery1Guid.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.FDQuery1Link.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.FDQuery1Link.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.FDQuery1Title.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.FDQuery1Title.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.FDQuery2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.FDQuery2.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.FDTable1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.FDTable1.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.FlowLayout1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.FlowLayout1.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.FormActivate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.FormActivate.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.FormClose.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.FormClose.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.FormCloseQuery.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.FormCloseQuery.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.FormCreate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.FormCreate.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.FormDeactivate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.FormDeactivate.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.FormDestroy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.FormDestroy.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.FormHide.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.FormHide.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.FormPaint.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.FormPaint.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.FormResize.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.FormResize.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.FormSaveState.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.FormSaveState.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.FormShow.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.FormShow.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.GroupBox1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.GroupBox1.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.IdFTP1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.IdFTP1.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.IdFTP1AfterGet.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.IdFTP1AfterGet.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.IdFTP1AfterPut.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.IdFTP1AfterPut.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.IdFTP1Status.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.IdFTP1Status.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.IdFTP1Work.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.IdFTP1Work.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.IdFTP1WorkEnd.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.IdFTP1WorkEnd.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.IdWhois1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.IdWhois1.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.Image1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.Image1.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.Image1Tap.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.Image1Tap.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.Image2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.Image2.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.ImageList1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.ImageList1.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.ImageViewer1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.ImageViewer1.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.Label1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.Label1.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.Label2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.Label2.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.Label3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.Label3.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.Label4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.Label4.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.Label5.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.Label5.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.LabeledEdit1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.LabeledEdit1.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.LabeledEdit2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.LabeledEdit2.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.Layout1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.Layout1.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.Layout2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.Layout2.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.Layout3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.Layout3.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.ListBox1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.ListBox1.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.ListView1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.ListView1.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.LoadFolder.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.LoadFolder.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.Memo1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.Memo1.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.Memo2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.Memo2.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.Memo3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.Memo3.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.MenuItem1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.MenuItem1.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.MenuItem2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.MenuItem2.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.MenuItem3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.MenuItem3.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.OldEdit1Value.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.OldEdit1Value.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.Panel1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.Panel1.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.Panel2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.Panel2.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.Popup1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.Popup1.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.PopupMenu1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.PopupMenu1.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.ProductsTable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.ProductsTable.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.ProjectTable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.ProjectTable.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.RESTClient1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.RESTClient1.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.RESTRequest1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.RESTRequest1.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.RESTResponse1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.RESTResponse1.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.Rectangle1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.Rectangle1.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.Rectangle2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.Rectangle2.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.ScrollBox1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.ScrollBox1.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.SignatureFMX1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.SignatureFMX1.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.Sphere1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.Sphere1.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.Splitter1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.Splitter1.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.StatusBar1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.StatusBar1.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.StringGrid1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.StringGrid1.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.StringGrid2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.StringGrid2.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.StyleBook1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.StyleBook1.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.StyleBook2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.StyleBook2.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.StyleBook3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.StyleBook3.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.StyleBook4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.StyleBook4.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.SuppliersTable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.SuppliersTable.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.Switch1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.Switch1.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.Switch1Switch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.Switch1Switch.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.TabControl1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.TabControl1.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.TabItem1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.TabItem1.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.TabItem2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.TabItem2.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.TabItem3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.TabItem3.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.TabItem4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.TabItem4.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.TabItem5.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.TabItem5.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.TilerEffect1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.TilerEffect1.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.Timer1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.Timer1.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.Timer1Timer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.Timer1Timer.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.ToolBar1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.ToolBar1.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.TreeView1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.TreeView1.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.TreeViewItem1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.TreeViewItem1.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.TreeViewItem10.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.TreeViewItem10.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.TreeViewItem11.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.TreeViewItem11.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.TreeViewItem12.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.TreeViewItem12.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.TreeViewItem13.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.TreeViewItem13.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.TreeViewItem14.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.TreeViewItem14.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.TreeViewItem15.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.TreeViewItem15.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.TreeViewItem16.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.TreeViewItem16.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.TreeViewItem17.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.TreeViewItem17.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.TreeViewItem18.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.TreeViewItem18.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.TreeViewItem19.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.TreeViewItem19.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.TreeViewItem2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.TreeViewItem2.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.TreeViewItem20.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.TreeViewItem20.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.TreeViewItem21.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.TreeViewItem21.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.TreeViewItem22.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.TreeViewItem22.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.TreeViewItem23.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.TreeViewItem23.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.TreeViewItem24.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.TreeViewItem24.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.TreeViewItem25.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.TreeViewItem25.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.TreeViewItem26.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.TreeViewItem26.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.TreeViewItem27.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.TreeViewItem27.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.TreeViewItem3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.TreeViewItem3.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.TreeViewItem4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.TreeViewItem4.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.TreeViewItem5.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.TreeViewItem5.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.TreeViewItem6.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.TreeViewItem6.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.TreeViewItem7.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.TreeViewItem7.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.TreeViewItem8.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.TreeViewItem8.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.TreeViewItem9.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.TreeViewItem9.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.VertScrollBox1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.VertScrollBox1.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.Viewport3D1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.Viewport3D1.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.WebBrowser1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.WebBrowser1.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.addlog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.addlog.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.btnAjouter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.btnAjouter.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.btnCancel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.btnCancel.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.btnCancelClick.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.btnCancelClick.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.btnClose.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.btnClose.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.btnCloseClick.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.btnCloseClick.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.btnFermer2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.btnFermer2.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.btnOk.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.btnOk.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.btnOkClick.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.btnOkClick.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.btnQuitter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.btnQuitter.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.btnReload.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.btnReload.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.btnReloadClick.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.btnReloadClick.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.btnSQL.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.btnSQL.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.btnSQLClick.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.btnSQLClick.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.btnSaveImage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.btnSaveImage.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.btnStart.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.btnStart.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.btnStartClick.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.btnStartClick.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.btnStop.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.btnStop.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.btnStopClick.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.btnStopClick.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.btnTable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.btnTable.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.btnTableClick.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.btnTableClick.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.gbAjout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.gbAjout.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.gbListe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.gbListe.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.getLogFileName.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.getLogFileName.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.lblAppSize.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.lblAppSize.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.lblBitmapScale.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.lblBitmapScale.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.lblImageSize.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.lblImageSize.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.lblMouseXY.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.lblMouseXY.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.lblScreenSize.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.lblScreenSize.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.lblStatus.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.lblStatus.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.lblTapXY.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.lblTapXY.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.listeModifiee.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.listeModifiee.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.num.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.num.html -------------------------------------------------------------------------------- /docs/fMain.TForm1.stick.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm1.stick.html -------------------------------------------------------------------------------- /docs/fMain.TForm2.Button1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm2.Button1.html -------------------------------------------------------------------------------- /docs/fMain.TForm2.Button1Click.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm2.Button1Click.html -------------------------------------------------------------------------------- /docs/fMain.TForm2.ClickSurImage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm2.ClickSurImage.html -------------------------------------------------------------------------------- /docs/fMain.TForm2.FlowLayout1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm2.FlowLayout1.html -------------------------------------------------------------------------------- /docs/fMain.TForm2.VertScrollBox1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm2.VertScrollBox1.html -------------------------------------------------------------------------------- /docs/fMain.TForm2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TForm2.html -------------------------------------------------------------------------------- /docs/fMain.TGameScreen.Credit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TGameScreen.Credit.html -------------------------------------------------------------------------------- /docs/fMain.TGameScreen.Game.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TGameScreen.Game.html -------------------------------------------------------------------------------- /docs/fMain.TGameScreen.Home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TGameScreen.Home.html -------------------------------------------------------------------------------- /docs/fMain.TGameScreen.Options.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TGameScreen.Options.html -------------------------------------------------------------------------------- /docs/fMain.TGameScreen.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TGameScreen.html -------------------------------------------------------------------------------- /docs/fMain.TfmrMain.FormClose.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TfmrMain.FormClose.html -------------------------------------------------------------------------------- /docs/fMain.TfmrMain.FormCreate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TfmrMain.FormCreate.html -------------------------------------------------------------------------------- /docs/fMain.TfmrMain.FormDestroy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TfmrMain.FormDestroy.html -------------------------------------------------------------------------------- /docs/fMain.TfmrMain.ImageIndex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TfmrMain.ImageIndex.html -------------------------------------------------------------------------------- /docs/fMain.TfmrMain.ImageList.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TfmrMain.ImageList.html -------------------------------------------------------------------------------- /docs/fMain.TfmrMain.Timer1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TfmrMain.Timer1.html -------------------------------------------------------------------------------- /docs/fMain.TfmrMain.Timer1Timer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TfmrMain.Timer1Timer.html -------------------------------------------------------------------------------- /docs/fMain.TfmrMain.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TfmrMain.html -------------------------------------------------------------------------------- /docs/fMain.TfrmMain.Background.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TfrmMain.Background.html -------------------------------------------------------------------------------- /docs/fMain.TfrmMain.Button1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TfrmMain.Button1.html -------------------------------------------------------------------------------- /docs/fMain.TfrmMain.Button1Click.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TfrmMain.Button1Click.html -------------------------------------------------------------------------------- /docs/fMain.TfrmMain.Button2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TfrmMain.Button2.html -------------------------------------------------------------------------------- /docs/fMain.TfrmMain.Button2Click.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TfrmMain.Button2Click.html -------------------------------------------------------------------------------- /docs/fMain.TfrmMain.Button3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TfrmMain.Button3.html -------------------------------------------------------------------------------- /docs/fMain.TfrmMain.Button3Click.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TfrmMain.Button3Click.html -------------------------------------------------------------------------------- /docs/fMain.TfrmMain.Button4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TfrmMain.Button4.html -------------------------------------------------------------------------------- /docs/fMain.TfrmMain.Button4Click.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TfrmMain.Button4Click.html -------------------------------------------------------------------------------- /docs/fMain.TfrmMain.FormCreate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TfrmMain.FormCreate.html -------------------------------------------------------------------------------- /docs/fMain.TfrmMain.FormDestroy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TfrmMain.FormDestroy.html -------------------------------------------------------------------------------- /docs/fMain.TfrmMain.Image1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TfrmMain.Image1.html -------------------------------------------------------------------------------- /docs/fMain.TfrmMain.Label1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TfrmMain.Label1.html -------------------------------------------------------------------------------- /docs/fMain.TfrmMain.Label2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TfrmMain.Label2.html -------------------------------------------------------------------------------- /docs/fMain.TfrmMain.Label3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TfrmMain.Label3.html -------------------------------------------------------------------------------- /docs/fMain.TfrmMain.Label4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TfrmMain.Label4.html -------------------------------------------------------------------------------- /docs/fMain.TfrmMain.Layout1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TfrmMain.Layout1.html -------------------------------------------------------------------------------- /docs/fMain.TfrmMain.Memo1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TfrmMain.Memo1.html -------------------------------------------------------------------------------- /docs/fMain.TfrmMain.PDFPath.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TfrmMain.PDFPath.html -------------------------------------------------------------------------------- /docs/fMain.TfrmMain.Panel1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TfrmMain.Panel1.html -------------------------------------------------------------------------------- /docs/fMain.TfrmMain.Rectangle1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TfrmMain.Rectangle1.html -------------------------------------------------------------------------------- /docs/fMain.TfrmMain.Rectangle2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TfrmMain.Rectangle2.html -------------------------------------------------------------------------------- /docs/fMain.TfrmMain.ScanEnCours.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TfrmMain.ScanEnCours.html -------------------------------------------------------------------------------- /docs/fMain.TfrmMain.ScreenCredit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TfrmMain.ScreenCredit.html -------------------------------------------------------------------------------- /docs/fMain.TfrmMain.ScreenGame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TfrmMain.ScreenGame.html -------------------------------------------------------------------------------- /docs/fMain.TfrmMain.ScreenHome.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TfrmMain.ScreenHome.html -------------------------------------------------------------------------------- /docs/fMain.TfrmMain.Splitter1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TfrmMain.Splitter1.html -------------------------------------------------------------------------------- /docs/fMain.TfrmMain.StartCamera.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TfrmMain.StartCamera.html -------------------------------------------------------------------------------- /docs/fMain.TfrmMain.btnCancel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TfrmMain.btnCancel.html -------------------------------------------------------------------------------- /docs/fMain.TfrmMain.btnOk.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TfrmMain.btnOk.html -------------------------------------------------------------------------------- /docs/fMain.TfrmMain.btnOkClick.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TfrmMain.btnOkClick.html -------------------------------------------------------------------------------- /docs/fMain.TfrmMain.btnSendPhoto.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TfrmMain.btnSendPhoto.html -------------------------------------------------------------------------------- /docs/fMain.TfrmMain.edtLibelle.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TfrmMain.edtLibelle.html -------------------------------------------------------------------------------- /docs/fMain.TfrmMain.edtPrix.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TfrmMain.edtPrix.html -------------------------------------------------------------------------------- /docs/fMain.TfrmMain.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TfrmMain.html -------------------------------------------------------------------------------- /docs/fMain.TfrmMain.lblEndOfGame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TfrmMain.lblEndOfGame.html -------------------------------------------------------------------------------- /docs/fMain.TfrmMain.lblLibelle.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TfrmMain.lblLibelle.html -------------------------------------------------------------------------------- /docs/fMain.TfrmMain.lblPrix.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TfrmMain.lblPrix.html -------------------------------------------------------------------------------- /docs/fMain.TfrmMain.zoneDeSaisie.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.TfrmMain.zoneDeSaisie.html -------------------------------------------------------------------------------- /docs/fMain.fmrMain.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.fmrMain.html -------------------------------------------------------------------------------- /docs/fMain.frmMain.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.frmMain.html -------------------------------------------------------------------------------- /docs/fMain.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMain.html -------------------------------------------------------------------------------- /docs/fMainBis.Form2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMainBis.Form2.html -------------------------------------------------------------------------------- /docs/fMainBis.TForm2.FormCreate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMainBis.TForm2.FormCreate.html -------------------------------------------------------------------------------- /docs/fMainBis.TForm2.Memo1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMainBis.TForm2.Memo1.html -------------------------------------------------------------------------------- /docs/fMainBis.TForm2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMainBis.TForm2.html -------------------------------------------------------------------------------- /docs/fMainBis.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fMainBis.html -------------------------------------------------------------------------------- /docs/fSecondForm.TfrmSecondForm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fSecondForm.TfrmSecondForm.html -------------------------------------------------------------------------------- /docs/fSecondForm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fSecondForm.html -------------------------------------------------------------------------------- /docs/fThirdWithCallback.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fThirdWithCallback.html -------------------------------------------------------------------------------- /docs/fVCL.Form1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fVCL.Form1.html -------------------------------------------------------------------------------- /docs/fVCL.TForm1.Button1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fVCL.TForm1.Button1.html -------------------------------------------------------------------------------- /docs/fVCL.TForm1.Button1Click.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fVCL.TForm1.Button1Click.html -------------------------------------------------------------------------------- /docs/fVCL.TForm1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fVCL.TForm1.html -------------------------------------------------------------------------------- /docs/fVCL.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/fVCL.html -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/main.MainForm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/main.MainForm.html -------------------------------------------------------------------------------- /docs/main.TMainForm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/main.TMainForm.html -------------------------------------------------------------------------------- /docs/main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/main.html -------------------------------------------------------------------------------- /docs/themes/legacy/css/compact.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/themes/legacy/css/compact.css -------------------------------------------------------------------------------- /docs/themes/legacy/css/csshover3.htc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/themes/legacy/css/csshover3.htc -------------------------------------------------------------------------------- /docs/themes/legacy/css/dynatree/0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/themes/legacy/css/dynatree/0.png -------------------------------------------------------------------------------- /docs/themes/legacy/css/dynatree/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/themes/legacy/css/dynatree/1.png -------------------------------------------------------------------------------- /docs/themes/legacy/css/dynatree/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/themes/legacy/css/dynatree/2.png -------------------------------------------------------------------------------- /docs/themes/legacy/css/dynatree/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/themes/legacy/css/dynatree/3.png -------------------------------------------------------------------------------- /docs/themes/legacy/css/dynatree/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/themes/legacy/css/dynatree/4.png -------------------------------------------------------------------------------- /docs/themes/legacy/css/dynatree/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/themes/legacy/css/dynatree/5.png -------------------------------------------------------------------------------- /docs/themes/legacy/css/dynatree/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/themes/legacy/css/dynatree/6.png -------------------------------------------------------------------------------- /docs/themes/legacy/css/dynatree/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/themes/legacy/css/dynatree/7.png -------------------------------------------------------------------------------- /docs/themes/legacy/css/dynatree/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/themes/legacy/css/dynatree/8.png -------------------------------------------------------------------------------- /docs/themes/legacy/css/dynatree/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/themes/legacy/css/dynatree/9.png -------------------------------------------------------------------------------- /docs/themes/legacy/css/editor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/themes/legacy/css/editor.css -------------------------------------------------------------------------------- /docs/themes/legacy/css/ielte8.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/themes/legacy/css/ielte8.css -------------------------------------------------------------------------------- /docs/themes/legacy/css/reset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/themes/legacy/css/reset.css -------------------------------------------------------------------------------- /docs/themes/legacy/css/toc.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/themes/legacy/css/toc.css -------------------------------------------------------------------------------- /docs/themes/legacy/images/Caution.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/themes/legacy/images/Caution.gif -------------------------------------------------------------------------------- /docs/themes/legacy/images/book.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/themes/legacy/images/book.png -------------------------------------------------------------------------------- /docs/themes/legacy/images/box.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/themes/legacy/images/box.gif -------------------------------------------------------------------------------- /docs/themes/legacy/images/circle.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/themes/legacy/images/circle.gif -------------------------------------------------------------------------------- /docs/themes/legacy/images/collall.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/themes/legacy/images/collall.gif -------------------------------------------------------------------------------- /docs/themes/legacy/images/drpdown.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/themes/legacy/images/drpdown.gif -------------------------------------------------------------------------------- /docs/themes/legacy/images/drpup.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/themes/legacy/images/drpup.gif -------------------------------------------------------------------------------- /docs/themes/legacy/images/exp.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/themes/legacy/images/exp.gif -------------------------------------------------------------------------------- /docs/themes/legacy/images/expall.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/themes/legacy/images/expall.gif -------------------------------------------------------------------------------- /docs/themes/legacy/images/expand.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/themes/legacy/images/expand.gif -------------------------------------------------------------------------------- /docs/themes/legacy/images/footer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/themes/legacy/images/footer.gif -------------------------------------------------------------------------------- /docs/themes/legacy/images/load.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/themes/legacy/images/load.gif -------------------------------------------------------------------------------- /docs/themes/legacy/images/note.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/themes/legacy/images/note.gif -------------------------------------------------------------------------------- /docs/themes/legacy/images/note.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/themes/legacy/images/note.png -------------------------------------------------------------------------------- /docs/themes/legacy/images/pubenum.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/themes/legacy/images/pubenum.gif -------------------------------------------------------------------------------- /docs/themes/legacy/images/save.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/themes/legacy/images/save.gif -------------------------------------------------------------------------------- /docs/themes/legacy/images/static.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/themes/legacy/images/static.gif -------------------------------------------------------------------------------- /docs/themes/legacy/images/topic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/themes/legacy/images/topic.png -------------------------------------------------------------------------------- /docs/themes/legacy/js/di.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/themes/legacy/js/di.js -------------------------------------------------------------------------------- /docs/themes/legacy/js/di.toc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/themes/legacy/js/di.toc.js -------------------------------------------------------------------------------- /docs/themes/legacy/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/themes/legacy/js/jquery.min.js -------------------------------------------------------------------------------- /docs/themes/legacy/js/splitter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/themes/legacy/js/splitter.js -------------------------------------------------------------------------------- /docs/toc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/toc.html -------------------------------------------------------------------------------- /docs/toc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/toc.js -------------------------------------------------------------------------------- /docs/uAccueil.Form1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/uAccueil.Form1.html -------------------------------------------------------------------------------- /docs/uAccueil.TForm1.Button1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/uAccueil.TForm1.Button1.html -------------------------------------------------------------------------------- /docs/uAccueil.TForm1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/uAccueil.TForm1.html -------------------------------------------------------------------------------- /docs/uAccueil.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/uAccueil.html -------------------------------------------------------------------------------- /docs/uAppTetheringSettings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/uAppTetheringSettings.html -------------------------------------------------------------------------------- /docs/uCADSignatureFMX.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/uCADSignatureFMX.html -------------------------------------------------------------------------------- /docs/uConst.TFichiersExternes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/uConst.TFichiersExternes.html -------------------------------------------------------------------------------- /docs/uConst._URL_DOWNLOAD.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/uConst._URL_DOWNLOAD.html -------------------------------------------------------------------------------- /docs/uConst.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/uConst.html -------------------------------------------------------------------------------- /docs/uConsts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/uConsts.html -------------------------------------------------------------------------------- /docs/uDBCategories.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/uDBCategories.html -------------------------------------------------------------------------------- /docs/uDBPourAffichage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/uDBPourAffichage.html -------------------------------------------------------------------------------- /docs/uDM.DataModule2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/uDM.DataModule2.html -------------------------------------------------------------------------------- /docs/uDM.TDataModule2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/uDM.TDataModule2.html -------------------------------------------------------------------------------- /docs/uDM.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/uDM.html -------------------------------------------------------------------------------- /docs/uDMAppTetheringReceiver.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/uDMAppTetheringReceiver.html -------------------------------------------------------------------------------- /docs/uDMAppTetheringSender.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/uDMAppTetheringSender.html -------------------------------------------------------------------------------- /docs/uDMImages.TdmImages.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/uDMImages.TdmImages.html -------------------------------------------------------------------------------- /docs/uDMImages.dmImages.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/uDMImages.dmImages.html -------------------------------------------------------------------------------- /docs/uDMImages.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/uDMImages.html -------------------------------------------------------------------------------- /docs/uDMStyleAndroid.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/uDMStyleAndroid.html -------------------------------------------------------------------------------- /docs/uDMStyleWindows.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/uDMStyleWindows.html -------------------------------------------------------------------------------- /docs/uDatas.TElem.coche.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/uDatas.TElem.coche.html -------------------------------------------------------------------------------- /docs/uDatas.TElem.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/uDatas.TElem.html -------------------------------------------------------------------------------- /docs/uDatas.TElem.id.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/uDatas.TElem.id.html -------------------------------------------------------------------------------- /docs/uDatas.TElem.libelle.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/uDatas.TElem.libelle.html -------------------------------------------------------------------------------- /docs/uDatas.TListe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/uDatas.TListe.html -------------------------------------------------------------------------------- /docs/uDatas.ajouter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/uDatas.ajouter.html -------------------------------------------------------------------------------- /docs/uDatas.cocher.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/uDatas.cocher.html -------------------------------------------------------------------------------- /docs/uDatas.decocher.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/uDatas.decocher.html -------------------------------------------------------------------------------- /docs/uDatas.estCoche.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/uDatas.estCoche.html -------------------------------------------------------------------------------- /docs/uDatas.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/uDatas.html -------------------------------------------------------------------------------- /docs/uDatas.lister.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/uDatas.lister.html -------------------------------------------------------------------------------- /docs/uDatas.modifier.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/uDatas.modifier.html -------------------------------------------------------------------------------- /docs/uDatas.supprimer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/uDatas.supprimer.html -------------------------------------------------------------------------------- /docs/uDownloadAndGetFiles.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/uDownloadAndGetFiles.html -------------------------------------------------------------------------------- /docs/uFichiersEtDossiers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/uFichiersEtDossiers.html -------------------------------------------------------------------------------- /docs/uMainPourAffichage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/uMainPourAffichage.html -------------------------------------------------------------------------------- /docs/uMenu.doMain.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/uMenu.doMain.html -------------------------------------------------------------------------------- /docs/uMenu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/uMenu.html -------------------------------------------------------------------------------- /docs/uSQL.CIndexCreateSQL.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/uSQL.CIndexCreateSQL.html -------------------------------------------------------------------------------- /docs/uSQL.CTableCreateSQL.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/uSQL.CTableCreateSQL.html -------------------------------------------------------------------------------- /docs/uSQL.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/uSQL.html -------------------------------------------------------------------------------- /docs/u_download.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/u_download.html -------------------------------------------------------------------------------- /docs/u_download.tdownload_file.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/u_download.tdownload_file.html -------------------------------------------------------------------------------- /docs/u_md5.MD5.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/u_md5.MD5.html -------------------------------------------------------------------------------- /docs/u_md5.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/u_md5.html -------------------------------------------------------------------------------- /docs/u_urlOpen.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/u_urlOpen.html -------------------------------------------------------------------------------- /docs/udemosImpl.Tdemos.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/udemosImpl.Tdemos.html -------------------------------------------------------------------------------- /docs/udemosImpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/udemosImpl.html -------------------------------------------------------------------------------- /docs/udemosIntf.Idemos.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/udemosIntf.Idemos.html -------------------------------------------------------------------------------- /docs/udemosIntf.TDoubleArray.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/udemosIntf.TDoubleArray.html -------------------------------------------------------------------------------- /docs/udemosIntf.TEnumTest.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/udemosIntf.TEnumTest.html -------------------------------------------------------------------------------- /docs/udemosIntf.TMyEmployee.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/udemosIntf.TMyEmployee.html -------------------------------------------------------------------------------- /docs/udemosIntf.etAFew.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/udemosIntf.etAFew.html -------------------------------------------------------------------------------- /docs/udemosIntf.etAlot.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/udemosIntf.etAlot.html -------------------------------------------------------------------------------- /docs/udemosIntf.etNone.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/udemosIntf.etNone.html -------------------------------------------------------------------------------- /docs/udemosIntf.etSome.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/udemosIntf.etSome.html -------------------------------------------------------------------------------- /docs/udemosIntf.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/udemosIntf.html -------------------------------------------------------------------------------- /docs/udmAdobeStock_13945297.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloppeurPascal/Delphi-samples/HEAD/docs/udmAdobeStock_13945297.html --------------------------------------------------------------------------------