11
votes
6answers
317 views
What is the purpose of the ‘Tag’ property of Delphi VCL components?
Is there any specific purpose for the 'Tag' property of Delphi VCL components?
I have Googled a few examples using it as, for example, a 'color' property or using the value as a pointer address, but …
9
votes
2answers
634 views
What’s the difference between Refresh,Update,Repaint?
Hello,
I don't know ,which of those three suits me most,they all work for me.Does anyone know the difference between Refresh,Update and Repaint?
7
votes
12answers
498 views
Your favourite third party components?
Here are mine:
DevExpress VCL Subscription. Pretty
expensive but worth a lot more. I',
still amazed about how great a value
they deliver to a developer. Grids
are fantastic. Editors, skinning.
all. …
6
votes
4answers
263 views
Delphi VCL for Win32 - multiple event handlers.
Hi,
I'm looking for some code allowing easy asigning many event handlers to a single event of object... I needed it very much for my plugin architecture, so I implemented some replacement for that, …
6
votes
8answers
1k views
Delphi form creation without freezing main thread
Hello everyone.
I am having trouble with something i wanna do. I have some big forms which take some time to create. To make the app load faster i thought of letting the forms be created in a thread …
6
votes
5answers
448 views
Form.Release + NIL
Hello,
if Form.Release is called after using the form, it will free all related memory but not set the form variable to nil.
if not assigned (Form1) then
begin
Application.CreateForm(Tform1, …
4
votes
2answers
207 views
How Do I Add A TLabel To The Menu Bar in Delphi?
I use Beyond Compare (a great program), and was very impressed when it displayed a "New Version Available" label on its Menu Bar. I clicked on it, up popped an install new version box, it installed, …
4
votes
1answer
246 views
[Delphi] Remove Item from ListBox?
Hello,
Is there any way to remove item from listbox based on it's name but not index value? I would like to remove item named "Mouse" (which index # changes all the time).
4
votes
3answers
196 views
Under what conditions will a TForm fire OnResize on show?
As an extension of this question:
TForm.OnResize is sometimes fired before a form is first shown, but not always. For example, if BorderStyle is either bsDialog or bsNone, then OnResize will not …
4
votes
3answers
298 views
How to “scan” the full list of currently-installed VCL components
I still haven't found a truly satisfactory answer to this question, and am now considering rolling my own. I have ModelMaker and GExperts, and neither seems to load the comprehensive class-hierarchy …
4
votes
5answers
586 views
Why Do Some Delphi Components Require “AOwner: TComponent” To Construct Them?
It seems completely irrelevant to require a TComponent as an owner to instantiate an object of some kind. Why are there so many Delphi components that require this?
For example, TXMLDocument …
4
votes
3answers
257 views
Preferred way to keep control centered on resize
What is your preferred way of keeping controls centered on its parent when the parent change width or height?
4
votes
7answers
1k views
How to make a Delphi TSpeedButton stay pressed if it’s the only one in the group
I'm not sure why the TSpeedButton has this property but when a TSpeedButton is the only button of a given groupindex, it doesn't stay pressed, whether or not "AllowAllUp" is pressed. Maybe a Jedi …
4
votes
1answer
3k views
Delphi 2009 Ribbon Controls - Glass Frame
I've been starting to use the new inbuilt Ribbon controls in Delphi 2009 and use the custom frame so the Application button and Mini-toolbar slide up onto the Window Frame, but I'm wondering if on …
4
votes
6answers
815 views
Replace visual component at runtime in Delphi (win32)
Is it possible to, for instance, replace and free a TEdit with a subclassed component instantiated (conditionally) at runtime? If so, how and when it should be done? I've tried to set the parent to …
