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 Built-In Function Objects Inside The 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 might also want to read 7 More Built-In Function Objects Inside The DelphiVCL Library which has some other built-in object functions which are related to the ones in this article. In this post, you’ll learn more…
Read more
DelphiDelphiVCLPythonPython GUIWindows

How To Force Execution Of The Destructor Code In An Object

In this post, we’ll use the DisposeOf method or DelphiVCL.Application.DisposeOf forces the execution of the destructor code in an object. Learning how to use DIsposeOf will allow you to easily build GUIs with Python Coding Software. After the DisposeOf method is called, the object is placed in a special state, the Disposed state. This means that the destructor is not called again if…
Read more