DelphiDelphiVCLPythonPython GUIWindows

What Does The HintPause Property Of DelphiVCL.Application Do?

In this post, you’ll learn more about the HintPause or DelphiVCL.Application.HintPause property is used to specify the time interval that passes before the control’s Help Hint appears when the user places the mouse pointer on a control or menu item. Use HintPause to change the default pause time of 500 milliseconds (or 1/2second) that is set in the constructor. When assigning a…
Read more
DelphiDelphiVCLPythonPython GUIWindows

How To Understand DelphiVCL.Application.HelpShowTableOfContents

In this post, you’ll learn how to use the HelpShowTableOfContents method or DelphiVCL.Application.HelpShowTableOfContents to show the table of contents within the Help system. Use HelpShowTableOfContents to bring up the table of contents for the Help system specified in the CurrentHelpFile property. This method is preferred to calling System.HelpIntfs.ICustomHelpViewer.ShowTableOfContents…
Read more
DelphiDelphiVCLPythonPython GUIWindows

What Does HintColor In DelphiVCL.Application Do?

In this post, you’ll learn more about HintColor or DelphiVCL.Application.HintColor property determines the color of the hint boxes for the Help Hints for the application. Use HintColor to specify the hint box color. A default color value of clInfoBk is set for the HintColor property in the constructor when the application is created. To change the HintColor, assign it a new TColor value…
Read more
DelphiDelphiVCLPythonPython GUIWindows

What Does HintMouseMessage In DelphiVCL.Application Do?

In this post, you’ll learn more about HintMouseMessage or DelphiVCL.Application.HintMouseMessage method regulates the display of hint windows. This method is called automatically when the mouse passes over control with a Hint. Applications rarely, if ever, call HintMouseMessage directly. HintMouseMessage is used internally to manage the display of the hint windows. You can use Python…
Read more