DelphiDelphiVCLPythonPython GUIWindows

Learn About DelphiVCL.SpinButton

DelphiVCL.SpinButton or TSpinButton allows the user to navigate through a range of values using the arrow buttons. DelphiVCL.SpinButton is a control with two TTimerSpeedButtons, each button displaying an arrow. TSpinButton allows the navigation through a range of values using the arrow buttons to customize the value held by the control. Usually, it is used to increase or decrease the value…
Read more
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