DelphiDelphiVCLPythonPython GUIWindows

What Does The OnHint Event In DelphiVCL.Application Do?

What is the DelphiVCL.Application.OnHint event? The OnHint or DelphiVCL.Application.OnHint occurs when the mouse pointer moves over a control or menu item that can display a Help Hint. This mainly applies to Windows app development. How to use the DelphiVCL.Application.OnHint event properly? Write an OnHint event handler to perform special processing when the mouse pauses over a control…
Read more
DelphiDelphiVCLPythonPython GUIWindows

What Is The OnHelp Event In DelphiVCL.Application?

What is the DelphiVCL.Application.OnHelp event? The OnHelp or DelphiVCL.Application.OnHelp occurs when the application receives a request for Help. You can examine and set it in the IDE software. How to use the DelphiVCL.Application.OnHelp event properly? Write an OnHelp event handler to perform special processing when the user requests Help. The HelpContext and HelpJump methods…
Read more
DelphiDelphiVCLPythonPython GUIWindows

What is an OnGetActiveFormHandle Event in DelphiVCL.Application?

OnGetActiveFormHandle or DelphiVCL.Application.OnGetActiveFormHandle is the event triggered when reading the value of the ActiveFormHandle property. Let’s take a look at all of DelphiVCL.Application.OnGetActiveFormHandle properties, methods, and built-in properties: import DelphiVCL dir(DelphiVCL.Application.OnGetActiveFormHandle) See the responses in our Windows…
Read more
DelphiDelphiVCLPythonPython GUIWindows

7 More Built-In Function Objects Inside DelphiVCL Library

When running dir() to DelphiVCL library or any DelphiVCL methods and properties in all previous sections, you might find many of Python’s built-in objects and properties. You can also read 7 Built-In Function Objects Inside The DelphiVCL Library which has some other built-in object functions which relate to the ones in this article. In this post, you’ll learn more about built-in…
Read more