DelphiDelphiVCLPythonPython GUIWindows

Python: Getting Started with DelphiVCL III: Overview of Commonly Used VCL Components

To increase your familiarity with DelphiVCL Components, this post will show you a demo that presents commonly used VCL components, and call them one-by-one with Python. The following is a Python code sample using DelphiVCL4Python: from delphivcl import * class MainForm(Form): def __init__(self, Owner): self.Caption = "Components Overview Sample" self.Name = "BaseForm" …
Read more
DelphiDelphiVCLPythonPython GUIWindows

Most Important Benefits Of DelphiVCL For Python Over Other Competing Technologies

The most important benefits of the VCL over other competing technologies such as Tkinter and PyQT are as follows: A standard set of components that includes all controls provided by the Windows UI framework. This set consists of components such as buttons, edits, menus, and so on. The VCL also extends some of these controls, offering you even more functionality than is normally provided by the…
Read more
DelphiPythonPython GUIWindows

Learn To Work With Real-World Graphics Using The Python Matplotlib Library In A Delphi Windows App

With the growing demand for Data Science and Analytics skill sets, drawing graphics programmatically is a very popular task these days. You can easily solve it by combining the Matplotlib library with Python4Delphi (P4D). P4D is a free set of powerful tools that allows you to work with Python scripts, modules, and types in Delphi and easily create Windows GUI with it. Matplotlib is a…
Read more