DelphiDelphiVCLPythonPython GUIWindows

Create a ListBox using DelphiVCL.ListBox

ListBox displays a collection of items in a scrollable list. We use ListBox to display a scrollable list of items that users can select, add, or delete. ListBox is a wrapper for the Windows listbox control. We can browse all the properties, methods, and built-in properties of the DelphiVCL.ListBox using dir() command: import DelphiVCL dir(DelphiVCL.ListBox) See the responses in…
Read more
DelphiDelphiVCLPythonPython GUIWindows

Create a CheckBox using DelphiVCL.CheckBox

CheckBox represents a check box that can be on (checked) or off (unchecked). A CheckBox component presents an option for the user. The user can check the box to select the option, or uncheck it to deselect the option. The Caption property can be used to define an accelerator key to a control. We can browse all the properties, methods, and built-in properties of the DelphiVCL.CheckBox…
Read more
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