DelphiDelphiVCLPythonPython GUIWindows

Add Strings to Various Components using .Items

In previous examples, we already use .Items several times (see Getting Started with DelphiVCL III: Overview of Commonly used VCL Components). We use it in ListBox, ComboBox, and RadioGroup. Items contain the strings that appear in the ListBox, ComboBox, and RadioGroup. Use Items to add, insert, delete and move items. By default, the items in a list box are of type Strings. Use this item type to…
Read more
DelphiDelphiVCLPythonPython GUIWindows

Learn About DelphiVCL.StaticText

DelphiVCL.StaticText or TStaticText is a windowed control that displays text on a form. The DelphiVCL.StaticText or TStaticText component functions like TLabel, except that it descends from TWinControl and therefore has a window handle. Use TStaticText instead of TLabel when the component’s accelerator key must belong to a windowed control—for example, on an ActiveX property…
Read more
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