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
DelphiDelphiVCLPythonPython GUIWindows

More On Built-In Function Objects Inside DelphiVCL4Python Library (Part 3)

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