tlabel

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: function TMyComponent.GetClientRect: TRect; begin result := inherited GetClientRect; result.Left := 20; end; This solution has major...

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. ...