Windows and Hints in Delphi - Stack Overflow most recent 30 from stackoverflow.com2009-12-01T01:02:37Zhttp://stackoverflow.com/feeds/question/1078179http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1078179/windows-and-hints-in-delphi4Windows and Hints in DelphiHX_unbanned2009-07-03T07:27:35Z2009-07-04T01:19:05Z
<p>Hello again!</p>
<p>This morning I finally made my mind and decided to ask you for help. Problem is that in my Delphi application no hints are shown at all...
I have read about THintAction problem, I have read guides/tutorials/manuals, tried to invoke Hint windows ( firing event handlers ) manually, but nothing worked. They just doesnt show.
I have run out of ideas ...</p>
<p>I have tried to: setting parent showhints on components, forms, from event handlers, application activatehint() ...</p>
<p>Is there any other way to do this ( except API calls, of course )? </p>
http://stackoverflow.com/questions/1078179/windows-and-hints-in-delphi/1078228#10782284Answer by Rax Olgud for Windows and Hints in DelphiRax Olgud2009-07-03T07:39:42Z2009-07-03T07:39:42Z<p>First, what version of Delphi do you use?</p>
<p>Second, I recommend you try creating a simple application from scratch, with just one form and say a tool-button (or any other control that can show hints), with ShowHints activated, and see if it shows. If on such a very simple app you'll get no hints, I would recommend reinstalling Delphi, maybe something in your installation is screwed up...</p>
http://stackoverflow.com/questions/1078179/windows-and-hints-in-delphi/1078253#10782531Answer by Lieven for Windows and Hints in DelphiLieven2009-07-03T07:47:45Z2009-07-03T07:47:45Z<p>Have you tried adding Application.ShowHint to your project file? </p>
<p>The project file would then look something like this</p>
<pre><code>begin
Application.Initialize;
Application.ShowHint := True;
Application.CreateForm(TfrmMain, frmMain);
Application.Run;
end.
</code></pre>
http://stackoverflow.com/questions/1078179/windows-and-hints-in-delphi/1078257#10782570Answer by DR for Windows and Hints in DelphiDR2009-07-03T07:48:59Z2009-07-03T07:48:59Z<p>A few tips:</p>
<ul>
<li>Check if you or another component/unit has set a custom hint class. If so, find that component/unit and remove it. </li>
<li>Compile your application with Debug DCUs and put breakpoints at the appropriate places in Forms.pas. Then single-step through the code and see what happens.</li>
</ul>
http://stackoverflow.com/questions/1078179/windows-and-hints-in-delphi/1081282#10812822Answer by utku_karatas for Windows and Hints in Delphiutku_karatas2009-07-04T01:19:05Z2009-07-04T01:19:05Z<p>I bet you're on XP and your installation is rather old. </p>
<p>A friend of mine had this exact problem in his machine. No VCL hints were showing up in his machine. That includes the apps he built, the Delphi IDE he used (7 afaicr) and any other Delphi built app he had on his machine. So we had concluded by blaming his WinXP instance which has been on the run for the last 2 years with a lot of garbage in it (most likely it was some app he installed sometime that was hooking messages at some point causing this weird behaviour). It might be your case as well.</p>
<p>ps. Another interesting point - the hints were showing up if you set Application.HintPause to a low value like 100-200. You may want to try that as well.</p>