vote up 2 vote down star
1

I want a TPageControl and some TTabSheets, with 'per tabsheet' tooltip hints visible as I hover over each tab in turn.

Is there any way of getting this effect in Delphi 2009?

flag

71% accept rate
1  
Firefox also does this – Gerry Aug 10 at 21:23

3 Answers

vote up 3 vote down check

Just hook the Page Control's Mouse Move event and use the TabAtPos property to determine which tab the mouse is hovering over. Then assign that tab's Hint to the Page Control's hint property.

procedure TForm.PageControlMouseMove(Sender: TObject; Shift: TShiftState; X,
  Y: Integer);
var
  tabindex: Integer;
begin
  tabindex := PageControl.IndexOfTabAt( X, Y );
  if tabindex >= 0 then
     PageControl.Hint:=PageControl.Pages[tabindex].Hint
end;
link|flag
TabAtPos doesn't exist, you meant IndexOfTabAt(x,Y). This so nearly works right. Except that as you move from one tab to another, the hint doesn't update or re-show. – Roddy Aug 28 at 12:41
Apologies; I was using TRzTabSheet (Raize Components) which has a TabAtPos property and works well. You could just programmatically show the hint on a change of tabindex using the THintWindow class. Set the Page Control's Show Hint property to false and create your own. – Gerard Aug 30 at 23:13
vote up 3 vote down

In Raize Components, this can be accomplished by setting the trzpagecontrol.tabhints property to true. Good components can save you a lot of time (therefore money).

(just a happy customer, btw)

link|flag
1  
+1 - The investment in Raize components is well worth it. The support is world class, and the visual style options can really set your application apart from others using standard controls. – skamradt Aug 11 at 16:01
Agreed. We use Raize almost exclusively for all UI design work. Great components and good support. – Gerard Aug 14 at 3:16
vote up 1 vote down

1 - fill in the .Hint property, and set the .ShowHint property to True for the PageControl (assuming each tabsheet has ParentShowHint set to true; otherwise you'll have to set each page individually).

2 - Assign this event to the PageControl's OnChange event handler:

procedure TForm1.PageControl1Change(Sender: TObject);
begin
  PageControl1.Hint := PageControl1.ActivePage.Hint;
end;

After you do that, the hint will be whatever the active tab is. I am not sure how to make it change the hint based on where the mouse is hovering - that's an interesting phenomenon I've never noticed before, actually.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.