├── AngryBirds ├── AngrBirds.Main.dfm ├── AngrBirds.Main.pas ├── AngryBirds.dpr ├── AngryBirds.dproj ├── AngryBirds.gif └── readme.md ├── AnimatedArrows ├── AnimatedArrows.Main.dfm ├── AnimatedArrows.Main.pas ├── AnimatedArrows.dpr ├── AnimatedArrows.dproj ├── AnimatedArrows.gif ├── AnimatedArrows.res └── readme.md ├── ClicknThrow ├── ClicknThrow.Main.dfm ├── ClicknThrow.Main.pas ├── ClicknThrow.dpr ├── ClicknThrow.dproj ├── ClicknThrow.gif ├── ClicknThrow.res └── readme.md ├── DrawAnEgg ├── DrawAnEgg.Main.dfm ├── DrawAnEgg.Main.pas ├── DrawAnEgg.dpr ├── DrawAnEgg.dproj ├── DrawAnEgg.png ├── DrawAnEgg.res └── readme.md ├── DrawCards ├── DrawCards.Main.dfm ├── DrawCards.Main.pas ├── DrawCards.dpr ├── DrawCards.dproj ├── DrawCards.gif ├── DrawCards.res └── readme.md ├── RecordProperty ├── Execute.RecordProperties.Package.dpk ├── Execute.RecordProperties.Package.dproj ├── Execute.RecordProperty.Register.pas ├── Execute.RecordProperty.pas ├── Project1.dpr ├── Project1.dproj ├── Project2.dpr ├── Project2.dproj ├── RecordPropertiesGroup.groupproj ├── RecordProperty.png ├── Unit1.dfm ├── Unit1.pas ├── Unit2.dfm ├── Unit2.pas └── readme.md ├── SQLStrings ├── SQLStrings.dpr └── readme.md ├── SplashTest ├── Project1.dpr ├── Project1.dproj ├── Project1.res ├── Unit1.dfm ├── Unit1.pas ├── Unit2.dfm ├── Unit2.pas ├── Unit3.dfm ├── Unit3.pas └── readme.md ├── Tuple ├── Execute.Tuple.pas └── readme.md └── readme.md /AngryBirds/AngrBirds.Main.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tothpaul/DelphiTips/HEAD/AngryBirds/AngrBirds.Main.dfm -------------------------------------------------------------------------------- /AngryBirds/AngrBirds.Main.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tothpaul/DelphiTips/HEAD/AngryBirds/AngrBirds.Main.pas -------------------------------------------------------------------------------- /AngryBirds/AngryBirds.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tothpaul/DelphiTips/HEAD/AngryBirds/AngryBirds.dpr -------------------------------------------------------------------------------- /AngryBirds/AngryBirds.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tothpaul/DelphiTips/HEAD/AngryBirds/AngryBirds.dproj -------------------------------------------------------------------------------- /AngryBirds/AngryBirds.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tothpaul/DelphiTips/HEAD/AngryBirds/AngryBirds.gif -------------------------------------------------------------------------------- /AngryBirds/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tothpaul/DelphiTips/HEAD/AngryBirds/readme.md -------------------------------------------------------------------------------- /AnimatedArrows/AnimatedArrows.Main.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tothpaul/DelphiTips/HEAD/AnimatedArrows/AnimatedArrows.Main.dfm -------------------------------------------------------------------------------- /AnimatedArrows/AnimatedArrows.Main.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tothpaul/DelphiTips/HEAD/AnimatedArrows/AnimatedArrows.Main.pas -------------------------------------------------------------------------------- /AnimatedArrows/AnimatedArrows.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tothpaul/DelphiTips/HEAD/AnimatedArrows/AnimatedArrows.dpr -------------------------------------------------------------------------------- /AnimatedArrows/AnimatedArrows.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tothpaul/DelphiTips/HEAD/AnimatedArrows/AnimatedArrows.dproj -------------------------------------------------------------------------------- /AnimatedArrows/AnimatedArrows.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tothpaul/DelphiTips/HEAD/AnimatedArrows/AnimatedArrows.gif -------------------------------------------------------------------------------- /AnimatedArrows/AnimatedArrows.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tothpaul/DelphiTips/HEAD/AnimatedArrows/AnimatedArrows.res -------------------------------------------------------------------------------- /AnimatedArrows/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tothpaul/DelphiTips/HEAD/AnimatedArrows/readme.md -------------------------------------------------------------------------------- /ClicknThrow/ClicknThrow.Main.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tothpaul/DelphiTips/HEAD/ClicknThrow/ClicknThrow.Main.dfm -------------------------------------------------------------------------------- /ClicknThrow/ClicknThrow.Main.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tothpaul/DelphiTips/HEAD/ClicknThrow/ClicknThrow.Main.pas -------------------------------------------------------------------------------- /ClicknThrow/ClicknThrow.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tothpaul/DelphiTips/HEAD/ClicknThrow/ClicknThrow.dpr -------------------------------------------------------------------------------- /ClicknThrow/ClicknThrow.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tothpaul/DelphiTips/HEAD/ClicknThrow/ClicknThrow.dproj -------------------------------------------------------------------------------- /ClicknThrow/ClicknThrow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tothpaul/DelphiTips/HEAD/ClicknThrow/ClicknThrow.gif -------------------------------------------------------------------------------- /ClicknThrow/ClicknThrow.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tothpaul/DelphiTips/HEAD/ClicknThrow/ClicknThrow.res -------------------------------------------------------------------------------- /ClicknThrow/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tothpaul/DelphiTips/HEAD/ClicknThrow/readme.md -------------------------------------------------------------------------------- /DrawAnEgg/DrawAnEgg.Main.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tothpaul/DelphiTips/HEAD/DrawAnEgg/DrawAnEgg.Main.dfm -------------------------------------------------------------------------------- /DrawAnEgg/DrawAnEgg.Main.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tothpaul/DelphiTips/HEAD/DrawAnEgg/DrawAnEgg.Main.pas -------------------------------------------------------------------------------- /DrawAnEgg/DrawAnEgg.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tothpaul/DelphiTips/HEAD/DrawAnEgg/DrawAnEgg.dpr -------------------------------------------------------------------------------- /DrawAnEgg/DrawAnEgg.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tothpaul/DelphiTips/HEAD/DrawAnEgg/DrawAnEgg.dproj -------------------------------------------------------------------------------- /DrawAnEgg/DrawAnEgg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tothpaul/DelphiTips/HEAD/DrawAnEgg/DrawAnEgg.png -------------------------------------------------------------------------------- /DrawAnEgg/DrawAnEgg.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tothpaul/DelphiTips/HEAD/DrawAnEgg/DrawAnEgg.res -------------------------------------------------------------------------------- /DrawAnEgg/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tothpaul/DelphiTips/HEAD/DrawAnEgg/readme.md -------------------------------------------------------------------------------- /DrawCards/DrawCards.Main.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tothpaul/DelphiTips/HEAD/DrawCards/DrawCards.Main.dfm -------------------------------------------------------------------------------- /DrawCards/DrawCards.Main.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tothpaul/DelphiTips/HEAD/DrawCards/DrawCards.Main.pas -------------------------------------------------------------------------------- /DrawCards/DrawCards.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tothpaul/DelphiTips/HEAD/DrawCards/DrawCards.dpr -------------------------------------------------------------------------------- /DrawCards/DrawCards.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tothpaul/DelphiTips/HEAD/DrawCards/DrawCards.dproj -------------------------------------------------------------------------------- /DrawCards/DrawCards.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tothpaul/DelphiTips/HEAD/DrawCards/DrawCards.gif -------------------------------------------------------------------------------- /DrawCards/DrawCards.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tothpaul/DelphiTips/HEAD/DrawCards/DrawCards.res -------------------------------------------------------------------------------- /DrawCards/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tothpaul/DelphiTips/HEAD/DrawCards/readme.md -------------------------------------------------------------------------------- /RecordProperty/Execute.RecordProperties.Package.dpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tothpaul/DelphiTips/HEAD/RecordProperty/Execute.RecordProperties.Package.dpk -------------------------------------------------------------------------------- /RecordProperty/Execute.RecordProperties.Package.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tothpaul/DelphiTips/HEAD/RecordProperty/Execute.RecordProperties.Package.dproj -------------------------------------------------------------------------------- /RecordProperty/Execute.RecordProperty.Register.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tothpaul/DelphiTips/HEAD/RecordProperty/Execute.RecordProperty.Register.pas -------------------------------------------------------------------------------- /RecordProperty/Execute.RecordProperty.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tothpaul/DelphiTips/HEAD/RecordProperty/Execute.RecordProperty.pas -------------------------------------------------------------------------------- /RecordProperty/Project1.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tothpaul/DelphiTips/HEAD/RecordProperty/Project1.dpr -------------------------------------------------------------------------------- /RecordProperty/Project1.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tothpaul/DelphiTips/HEAD/RecordProperty/Project1.dproj -------------------------------------------------------------------------------- /RecordProperty/Project2.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tothpaul/DelphiTips/HEAD/RecordProperty/Project2.dpr -------------------------------------------------------------------------------- /RecordProperty/Project2.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tothpaul/DelphiTips/HEAD/RecordProperty/Project2.dproj -------------------------------------------------------------------------------- /RecordProperty/RecordPropertiesGroup.groupproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tothpaul/DelphiTips/HEAD/RecordProperty/RecordPropertiesGroup.groupproj -------------------------------------------------------------------------------- /RecordProperty/RecordProperty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tothpaul/DelphiTips/HEAD/RecordProperty/RecordProperty.png -------------------------------------------------------------------------------- /RecordProperty/Unit1.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tothpaul/DelphiTips/HEAD/RecordProperty/Unit1.dfm -------------------------------------------------------------------------------- /RecordProperty/Unit1.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tothpaul/DelphiTips/HEAD/RecordProperty/Unit1.pas -------------------------------------------------------------------------------- /RecordProperty/Unit2.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tothpaul/DelphiTips/HEAD/RecordProperty/Unit2.dfm -------------------------------------------------------------------------------- /RecordProperty/Unit2.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tothpaul/DelphiTips/HEAD/RecordProperty/Unit2.pas -------------------------------------------------------------------------------- /RecordProperty/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tothpaul/DelphiTips/HEAD/RecordProperty/readme.md -------------------------------------------------------------------------------- /SQLStrings/SQLStrings.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tothpaul/DelphiTips/HEAD/SQLStrings/SQLStrings.dpr -------------------------------------------------------------------------------- /SQLStrings/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tothpaul/DelphiTips/HEAD/SQLStrings/readme.md -------------------------------------------------------------------------------- /SplashTest/Project1.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tothpaul/DelphiTips/HEAD/SplashTest/Project1.dpr -------------------------------------------------------------------------------- /SplashTest/Project1.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tothpaul/DelphiTips/HEAD/SplashTest/Project1.dproj -------------------------------------------------------------------------------- /SplashTest/Project1.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tothpaul/DelphiTips/HEAD/SplashTest/Project1.res -------------------------------------------------------------------------------- /SplashTest/Unit1.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tothpaul/DelphiTips/HEAD/SplashTest/Unit1.dfm -------------------------------------------------------------------------------- /SplashTest/Unit1.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tothpaul/DelphiTips/HEAD/SplashTest/Unit1.pas -------------------------------------------------------------------------------- /SplashTest/Unit2.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tothpaul/DelphiTips/HEAD/SplashTest/Unit2.dfm -------------------------------------------------------------------------------- /SplashTest/Unit2.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tothpaul/DelphiTips/HEAD/SplashTest/Unit2.pas -------------------------------------------------------------------------------- /SplashTest/Unit3.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tothpaul/DelphiTips/HEAD/SplashTest/Unit3.dfm -------------------------------------------------------------------------------- /SplashTest/Unit3.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tothpaul/DelphiTips/HEAD/SplashTest/Unit3.pas -------------------------------------------------------------------------------- /SplashTest/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tothpaul/DelphiTips/HEAD/SplashTest/readme.md -------------------------------------------------------------------------------- /Tuple/Execute.Tuple.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tothpaul/DelphiTips/HEAD/Tuple/Execute.Tuple.pas -------------------------------------------------------------------------------- /Tuple/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tothpaul/DelphiTips/HEAD/Tuple/readme.md -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tothpaul/DelphiTips/HEAD/readme.md --------------------------------------------------------------------------------