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

How to use the DelphiVCL.DrawGrid.Row

DelphiVCL.DrawGrid.Row specifies the index of the row that contains the selected cell. Use DelphiVCL.DrawGrid.Row at runtime to determine the current row in the grid. Setting Row moves focus to the cell in the current column that is in the new row. The first row has an index of 0, the second row an index of 1, and so on. The selected cell in the grid can be located by reading the Row…
Read more
DelphiDelphiVCLPythonPython GUIWindows

How to use the DelphiVCL.Application.Run Method

DelphiVCL.Application.Run method used to execute the application. Do not call DelphiVCL.Application.Run. In Delphi’s VCL, when creating a new project, The IDE automatically creates a main program block in the project file that calls the Run method. When the application is executed, the application’s Run method is called. DelphiVCL.Application.Run contains the…
Read more