Tag: VCL
-
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”
-
Multi Line Popup Hints for Delphi VCL and FMX
Learn how to setup multi line popup hints in Delphi for any type of control for both VCL and FireMonkey. This uses native Delphi code. You don’t need to hack the forms’s DFM text file
-
Conditional compilatation to detect VCL or FireMonkey in a Delphi Form
This shows how to detect if your application is using FireMonkey (FMX) or VCL when using conditional compilation within a Delphi form unit. UPDATE – a better solution has been provided by a Rudy Velthuis. I recommend to use that instead of my original post. Ive provided examples based on his feedback. Thanks Rudy
-
List of Delphi controls on a form – Tree hierarchy and flat list (VCL)
Get a list of all controls in your Delphi VCL form Examples included a flat list and a hierarchical “tree” list