├── .gitignore ├── LICENSE ├── README.md └── source ├── AsyncGuardDemo.dpr ├── AsyncGuardDemo.dproj ├── AsyncSearch.pas ├── Main.Form.dfm └── Main.Form.pas /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UweRaabe/AsyncTasksInVclProjects/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UweRaabe/AsyncTasksInVclProjects/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UweRaabe/AsyncTasksInVclProjects/HEAD/README.md -------------------------------------------------------------------------------- /source/AsyncGuardDemo.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UweRaabe/AsyncTasksInVclProjects/HEAD/source/AsyncGuardDemo.dpr -------------------------------------------------------------------------------- /source/AsyncGuardDemo.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UweRaabe/AsyncTasksInVclProjects/HEAD/source/AsyncGuardDemo.dproj -------------------------------------------------------------------------------- /source/AsyncSearch.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UweRaabe/AsyncTasksInVclProjects/HEAD/source/AsyncSearch.pas -------------------------------------------------------------------------------- /source/Main.Form.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UweRaabe/AsyncTasksInVclProjects/HEAD/source/Main.Form.dfm -------------------------------------------------------------------------------- /source/Main.Form.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UweRaabe/AsyncTasksInVclProjects/HEAD/source/Main.Form.pas --------------------------------------------------------------------------------