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

Learn To Build A Python GUI For Efficient And High-Performing Database Access With SQLAlchemy In A Delphi Windows App

Do you want to add the full power, functionalities, and flexibilities of SQL to your Python GUI App? You can build it easily by combining SQLAlchemy and Python4Delphi library, inside Delphi and C++Builder. SQLAlchemy is the Python SQL toolkit and Object Relational Mapper that gives application developers the full power and flexibility of SQL. SQLAlchemy provides a full suite of well-known…
Read more
DelphiDelphiVCLPythonPython GUIWindows

Learn About DelphiVCL.Application.ComponentCount

The ComponentCount property or DelphiVCL.Application.ComponentCount is used to indicate the number of components owned by the component. Use the ComponentCount property to determine the number of components owned by a component, for example, when iterating through the components list to perform an action on all owned components. The ComponentCount property equals the number of items in the…
Read more