Tagged Questions
8
votes
2answers
227 views
Delphi XE2 TLabel glowsize causes graphic issue on top left corner of the screen
Ever since porting an app from XE to XE2 I noticed a strange bug, just opening the form in the ide or running the app, a white square box is drawn on the top left corner of the screen (out of the ...
7
votes
2answers
271 views
Changing the font of a Delphi TLabel to Italic chops off the tail - why?
A simple demo of a default TLabel with font set to Arial Regular 16 is shown below.
The code when the button is clicked is:
procedure TForm1.Button1Click(Sender: TObject);
begin
...
2
votes
2answers
299 views
How best to programmatically tell whether a TLabel's Caption is clipped (i.e. drawn using ellipsis)?
I have a TLabel with EllipsisPosition set to epEndEllipsis and I need to be able to tell whether the text is currently clipped or not. Besides calculating the area required to display the text myself ...
2
votes
4answers
1k views
How do I make a TLabel behave like a hyperlink in Delphi?
How do I make a TLabel behave like a hyperlink in Delphi?
Note: I'm not interested in using TLinkLabel because of backwards compatibility issues.
2
votes
2answers
251 views
Problem with adding graphics to TLabel
I'm trying to create with Delphi a component inherited from TLabel, with some custom graphics added to it on TLabel.Paint. I want the graphics to be on left side of text, so I overrode GetClientRect:
...
1
vote
1answer
86 views
Is the behaviour of the tab character in a Delphi TLabel caption defined?
If I put tab characters into a string and then assign the Caption property of a label from the string what do the tab characters do?
CR characters cause a return, which is useful for displaying a ...
1
vote
4answers
420 views
How to create resize event for TLabel (TGraphicControl)
I'm trying to create TLabel descendant, which will display hint with the whole caption when the text width exceed label width. I've set the EllipsisPosition property to epEndEllipsis and my caption is ...
0
votes
2answers
173 views
how to copy all the TLabels parented with a TPanel on delphi to another TPanel?
I have a TPanel on a delphi form, I want to copy all the TLabels
parented with this TPanel when i press a button and put them
in other panel.
Is there a way to do that?
Thanks.