DelphiDelphiVCLPythonPython GUIWindows

Learn About DelphiVCL.SpeedButton

DelphiVCL.SpeedButton or TSpeedButton is a button that is used to execute commands or set modes. Use DelphiVCL.SpeedButton to add a button to a group of buttons in a form. TSpeedButton introduces properties that can be used to set graphical images that represent the different button states (selected, unselected, disabled, and so on). Use other properties to specify multiple images or to…
Read more
DelphiDelphiVCLPythonPython GUIWindows

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

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

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