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
DelphiDelphiVCLPythonPython GUIWindows

Learn About TWinControl For GUI Development With DelphiVCL

In this post, you’ll learn more about TWinControl. TwinControl is the base class for all controls that are wrappers for Microsoft Windows screen objects. Learning more about TWinControl will allow you to easily build GUIs with Python Development Tools. TWinControl provides the common functionality for all controls that act as wrappers for Microsoft Windows screen objects…
Read more
DelphiDelphiVCLPythonPython GUIWindows

Learn About The InsertComponent Method And What It Does

InsertComponent adds the component passed in the AComponent parameter to the end of the Components array property. The inserted component must have no name (no specified Name property value), or the name must be unique among all others in the Components list. When the owning component is destroyed, AComponent is also destroyed. Components are automatically inserted and removed when visually…
Read more