DelphiDelphiVCLPythonPython GUIWindows

Quickly Browse All Available Functions in DelphiVCL Library For Python Windows Apps

To make sure that you have already installed the DelphiVCL Python library correctly, you can simply test it using the Python dir() command: import delphivcl dir(delphivcl) If you install it correctly, it will return all properties, methods, even built-in properties of the DelphiVCL module, without the values: See them more clearly here: ['Abort', 'Action', 'ActionList'…
Read more
DelphiPythonPython GUIWindows

Learn To Build A Python GUI For Easily Processing Images With Pillow Library In A Delphi Windows App

Are you looking for a simple way to process images programmatically, and build a nice GUI for them? You can do it easily by combining Python4Delphi and Pillow library, inside Delphi and C++Builder. Python4Delphi (P4D) is a free tool that allows you to execute Python scripts, create new Python modules and types in Delphi. Pillow or PIL is the Python Imaging Library that adds image processing…
Read more
DelphiDelphiVCLPythonPython GUIWindows

Specify Component's Top Properties using .Top

.Top specifies the Y coordinate of the upper-left corner of a control, relative to its parent or containing control in pixels. Use Top to locate the top of the control or reposition the control to a different Y coordinate. The Top property, like the Left property, is the position of the control relative to its container. Thus, if a control is contained in a TPanel, the Left and Top…
Read more