Registriert seit: 29. Sep 2003
205 Beiträge
Delphi XE Enterprise
|
AW: Hint mit Tabulator formatieren
14. Jun 2010, 18:39
Ich hab mal ein wenig gestöbert und das hier gefunden: Creating custom hints for yoru application/component
Ein bisschen Modifikation bei:
Delphi-Quellcode:
sHeight := HintWindow.Canvas.TextHeight(s) * sList.Count;
HintWindow.ActivateHint(
Rect(P.X,P.Y, P.x + sWidth + 6, P.Y + sHeight),s);
sollte eigentlich reichen.
|