Tagged Questions

14
votes
1answer
366 views

Native hints/tooltips under Vista/7 with Delphi7?

I'm trying to reproduce native hints/tooltips under Windows Vista/7 using Delphi7. I've found a really nice component which could solve the issue: ...
7
votes
5answers
962 views

How to force Delphi compiler to display all hints and warnings

Is there a way to force the Delphi compiler to display all hints and warnings all the time? Here is the behavior that I am currently seeing in Delphi 6: Check out fresh copy of my application from ...
6
votes
0answers
705 views

Balloon hints on Delphi app tray icon keep popping up indefinitely

I have a Delphi 2006 app that can minimize to a tray icon, and displays various alert messages via a balloon hint over the tray icon. Under some circumstances - I don't know when - a previously ...
4
votes
4answers
1k views

Can specific Delphi hints be disabled?

In Delphi, you can use compiler directives to disable specific warnings, such as {$WARN USE_BEFORE_DEF OFF} But when I tried to do that with a specific hint, whose underscore_style_name I got out ...
3
votes
1answer
492 views

Creating custom Hint window

I'm trying to find a way to use my 2nd form as a hint window for a component (for example a TLabel) in my 1st form. At the moment, I'm exploring the use of THintWindow and HintWindowClass, but it is ...
1
vote
1answer
317 views

Delphi : Prevent TPageControl Hint from showing on contained items

I have a form with the following components: A TPageControl containing a single TTabSheet, containing a TEdit. I want a hint "Hello" displayed when I mouse over the pagecontrol tab, and no hint ...
0
votes
1answer
122 views

How to prevent hints interrupting a timer

I asked this question before in a slightly different way. At that moment I had no idea what exactly the problem was until I started to experiment with the answers I got from the forum (thanks all). ...