Download my free software to add hotkeys to the Delphi IDE to increase and decrease the font size in the code editor.
Category: Delphi
FireMonkey Panel tricks – Panel Color and Transparent Panels
Change the color of a Delphi FireMonkey panel or make a FireMonkey panel transparent.
Use this FireMonkey panel trick to change the color of a Delphi FireMonkey panel or make a FireMonkey panel transparent
Continue reading “FireMonkey Panel tricks – Panel Color and Transparent Panels”
Delphi Performance Tuning – Creating 500 Panels on a Form
I needed to create 500 panels on a form for a game that I was assisting another person with … and Delphi was choking. It was taking 20 seconds to do this. Not cool. We had to find a way to speed it up. This is what we did …
Continue reading “Delphi Performance Tuning – Creating 500 Panels on a Form”
Delphi 2D controls in 3D (FireMonkey) – presentation 1st March 2017, Brisbane Australia
I am doing a remote presentation this week on “Displaying and Animating 2D FireMonkey controls in 3D”. This will be at the Australia Delphi User Group’s meeting in Brisbane
Fix object is not visible in Delphi’s Live Bindings Designer
I recently hit a problem where an object on a form was not visible in Delphi’s Live Bindings Designer. Ill show you how I fixed that
Continue reading “Fix object is not visible in Delphi’s Live Bindings Designer”
Popup menu for a Delphi Firemonkey form
Unlike VCL forms, Delphi FireMonkey forms do not have a PopupMenu property. So how can you show a popup menu when the user clicks the Right Mouse Button ?
You have to code it yourself and its pretty easy to do. The tricky bit is converting the X/Y position from the forms local co-ordinate system to global co-ordinates. Ill show you to do that.
Immediate TTimer to emulate PostCreate / PostOnCreate event in Delphi
Learn how to create the equivalent of an PostCreate / PostOnCreate event that executes just after the form’s OnCreate event has fired.
To do this, we will use an “Immediate Timer”
Continue reading “Immediate TTimer to emulate PostCreate / PostOnCreate event in Delphi”
Z Order of Controls in Delphi FireMonkey
Get and set the Z Order of controls at runtime in Delphi FireMonkey.
Z Order of Controls in Delphi VCL
Get and set the Z Order of controls at runtime in Delphi VCL.
Color gradient in Delphi FireMonkey
Introduction to color gradients in Delphi FireMonkey.