DelphiDelphiVCLPythonPython GUIWindows

Learn About DelphiVCL.ScrollBar or TScrollBar

DelphiVCL.ScrollBar or TScrollBar is a Windows scroll bar, which is used to scroll the contents of a window, form, or control. We can use TScrollBar to add a free-standing scroll bar to a form. Many controls have properties that add scroll bars which are an integral part of the control (TControlScrollBar objects). TScrollBar allows controls that do not have integrated scroll bars or…
Read more
DelphiDelphiVCLPythonPython GUIWindows

Create an Edit Controls using DelphiVCL.Edit or TEdit

DelphiVCL.Edit or TEdit is a wrapper for a Windows single-line edit control. We can use an Edit object to put a standard Windows edit control on a form. Edit controls are used to retrieve text that users type. Edit controls can also display text to the user. When only displaying text to the user, choose an edit control to allow users to select text and copy it to the Clipboard. Choose a…
Read more
DelphiDelphiVCLPythonPython GUIWindows

Learn About DelphiVCL.Persistent

DelphiVCL.Persistent or TPersistent is the ancestor for all objects that have assignment and streaming capabilities. TPersistent encapsulates the behavior common to all objects that can be assigned to other objects, and that can read and write their properties to and from a form file (.xfm or .dfm file).  For this purpose, DelphiVCL.Persistent introduces methods that can be overridden…
Read more
DelphiDelphiVCLPythonPython GUIWindows

Using DelphiVCL.TabSheet to Create a Tabbed Page

DelphiVCL.TabSheet is an individual page in a PageControl object. We use TabSheet to represent a single page in tabbed page control. Tab sheets are typically referred to as pages. PageControl maintains an indexed array of its tab sheets in its Pages property. Users can click on a tab to activate the tab sheet. You can use the Caption property of the TabSheet control to define an accelerator…
Read more