DelphiDelphiVCLPythonPython GUIWindows

More On Built-In Function Objects Inside DelphiVCL Library (Part 4)

When running dir() to DelphiVCL library or any DelphiVCL methods and properties in all previous sections, you might find many of Python’s built-in objects and properties. Previously, we already discussed about  __doc__, __file__, __loader__, __name__, __package__,__spec__, __class__, __contains__, __delattr__, __dir__, __eq__, __format__, __ge__, __getattribute__, __getitem__, __gt__, __hash…
Read more
DelphiDelphiVCLPythonPython GUIWindows

Display Text on a Form using DelphiVCL.Label or TLabel

DelphiVCL.Label or TLabel is a non-windowed control that displays text on a form. Use Label to add text that the user cannot edit on a form. This text can be used to label another control and can set focus to that control when the user types an accelerator key. The Caption property can be used to define an accelerator key to a label control. Because Label is not a descendant of WinControl…
Read more
DelphiDelphiVCLPythonPython GUIWindows

Using DelphiVCL.PageControl to Create a Multiple Page

DelphiVCL.PageControl is a set of pages used to make a multiple page dialog box. We can use PageControl to create a multiple page dialog or tabbed notebook. PageControl displays multiple overlapping pages that are TabSheet objects (we will discuss TabSheet in another article). The user selects a page by clicking the page’s tab that appears at the top of the control. You…
Read more
DelphiDelphiVCLPythonPython GUIWindows

Learn About DelphiVCL.Object or TObject

DelphiVCL.Object or TObject is the ultimate ancestor of all objects and components. DelphiVCL.Object encapsulates fundamental behavior common to objects by introducing methods that: Create, maintain, and destroy instances of the object by allocating, initializing, and freeing required memory. Respond when object instances are created or destroyed. Return class-type and instance…
Read more