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
DelphiDelphiVCLIDELearn PythonPythonPython GUIRAD StudioWindows

Python For Delphi VCL vs Python GUI Generator: wxGlade

Are you an expert in desktop apps and GUI development who want to also work with Python because of its simplicity, flexible use, and growing demand in the market out there? Or are you a Python Developer at any level who wants to start a GUI development journey? This article is for you. We will review the two examples of the most powerful Python Desktop App and GUI Frameworks: Python For…
Read more
DelphiDelphiVCLPythonPython GUIWindows

Learn About DelphiVCL.Application.DestroyComponents

The DestroyComponents method or DelphiVCL.Application.DestroyComponents is used to destroy all owned components. DestroyComponents iterates through the components owned by the component, removing each from the list of owned components and destroying it. It is not necessary to call DestroyComponents directly. DestroyComponents is automatically called when the component is…
Read more
DelphiPythonPython GUIWindows

Learn To Build A Python GUI For Manipulating Datetime Using Delorean Library In A Delphi Windows App

Are you looking for powerful tools to deal with datetime and build a nice GUI for them? You can build it easily by combining the Delorean and Python4Delphi library, inside Delphi and C++Builder. Delorean is a library for clearing up the inconvenient truths that arise when dealing with datetime in Python. Understanding that timing is delicate enough of a problem, Delorean hopes to provide a…
Read more