Windows and Hints in Delphi - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T01:02:37Z http://stackoverflow.com/feeds/question/1078179 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1078179/windows-and-hints-in-delphi 4 Windows and Hints in Delphi HX_unbanned 2009-07-03T07:27:35Z 2009-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#1078228 4 Answer by Rax Olgud for Windows and Hints in Delphi Rax Olgud 2009-07-03T07:39:42Z 2009-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#1078253 1 Answer by Lieven for Windows and Hints in Delphi Lieven 2009-07-03T07:47:45Z 2009-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#1078257 0 Answer by DR for Windows and Hints in Delphi DR 2009-07-03T07:48:59Z 2009-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#1081282 2 Answer by utku_karatas for Windows and Hints in Delphi utku_karatas 2009-07-04T01:19:05Z 2009-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>