DelphiDelphiVCLPythonPython GUIWindows

What is the Free Method in DelphiVCL.Application?

In this post, we’ll use the Free method or DelphiVCL.Application.Free to destroy an object and free its associated memory, if necessary. Learning how to do it will allow you to easily build GUIs with Python Development Tools. Use Free to destroy an object. Free automatically calls the destructor if the object reference is not nil. Any object instantiated at run time that does not have…
Read more
DelphiDelphiVCLPythonPython GUIWindows

What Does EnumAllWindowsOnActivateHint Do?

In this post, we’ll use the EnumAllWindowsOnActivateHint property or DelphiVCL.Application.EnumAllWindowsOnActivateHint is a Boolean variable used for hint displaying. Learning how to do it will allow you to easily create GUIs with Python Programming Software. EnumAllWindowsOnActivateHint is used internally by VCL for hint displaying. Do not use it directly. Let’s browse all the…
Read more
DelphiDelphiVCLPythonPython GUIWindows

What is the ExeName Property in DelphiVCL.Application?

The ExeName property or DelphiVCL.Application.ExeName contains the file name of the application’s executable file including path information. In this post, we’ll use Use ExeName to obtain the name of the executable file for the application. ExeName is the fully-qualified name, including the path to the application’s executable in Python Windows GUI Builder. More things…
Read more
DelphiDelphiVCLPythonPython GUIWindows

How to use the State Property

State property is used as an indicator for which items are selected or checked. For example, for each member of the Items array, we use State to determine whether the checkbox is selected (cbChecked), cleared (cbUnchecked), or dimmed (cbGrayed). Note: cbGrayed corresponds to the indeterminate state. State combines the information provided by the Boolean Checked property and the…
Read more