DelphiDelphiVCLPythonPython GUIWindows

Create a ComboBox using DelphiVCL.ComboBox

DelphiVCL.ComboBox combines an edit box with a scrollable list. A ComboBox component is an edit box with a scrollable drop-down list attached to it. Users can select an item from the list or type directly into the edit box. Note: The width of the button in a TComboBox is equal to the width that Windows uses for scrollbars. This width depends on the color scheme that the user has chosen (by…
Read more
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
Learn PythonPythonPython GUIVideos

Learn Python With The Hitchhiker's Guide to CLIs in Python by Vinayak Mehta (PyCon 2020) Video

Here comes another interesting talk from the recently concluded PyCon 2020. In this video presented by Vinayak Mehta, we will learn more about Command-line applications and their interesting history as well as how can we create them using various Python packages. We all know that these Command-line applications and interfaces are used by both newcomers and experienced Python developers on a daily…
Read more
DelphiDelphiVCLPythonPython GUIWindows

Learn About DelphiVCL.Point

DelphiVCL.Point or TPoint is used to define a pixel location on-screen. The TPoint type defines the integer type X and Y coordinates of a pixel location on-screen, with the origin in the upper-left corner. X and Y specify the horizontal and vertical coordinates of a point, respectively. The type of X and Y is FixedInt. Let’s browse all the properties, methods, and built-in…
Read more