DelphiDelphiVCLPythonPython GUIWindows

Learn about the delphivcl.Component as the Common Ancestor of All Component Classes

DelphiVCL.Component is the common ancestor of all component classes. Component is the base class for all components. Components are persistent objects that have the following capabilities: IDE integration: The ability to appear on an IDE palette and be manipulated in a Form Designer. Ownership: The ability to manage other components. If component A owns component B, then A is…
Read more
DelphiDelphiVCLPythonPython GUIWindows

Understanding delphivcl.Application.DefaultHandler

Use the DefaultHandler method or DelphiVCL.Application.DefaultHandler to provide the interface for a method that processes message records. DefaultHandler is called by Dispatch when it cannot find a method for a particular message. DefaultHandler provides message handling for all messages for which an object does not have specific handlers. Descendant classes that process messages override…
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