In this tutorial, we will learn about how to do data visualizations using Delphi’s TChart or TeeChart.
TChart is the 100% Native Data-Aware Charting Component Library for Delphi and C++ Builder (v5 and later) and all RAD Studio versions.
1. Generate the Dummy Data with Python
To create dummy data in Python, you can use pandas or the Faker…
Powerful Python For Delphi VCL vs Python GUI Generator: PAGE
March 20, 2021
Are you an expert in desktop apps and GUI development who want to also work with Python because of its simplicity, flexible use, and growing demand in the market out there? Or are you a Python Developer at any level who wants to start a GUI development journey? This article…
The documentation for Delphi’s VCL is available on Embarcadero’s DocWiki. You will notice that on DocWiki, all the VCL components are prefixed with a T. This is a convention of the Delphi language, but DelphiVCL module removes the T prefix for a more Python-like…
Let’s compare the DelphiVCL form with other Python GUI frameworks (we take the GUI created in Section 5 as an example):
DelphiVCL provides better OS integration and styling by default. It provides Windows-10 styling to make your GUI looks professional and up-to-date.
DelphiVCL even provides Windows right-click functionality by default. Compared with PyQt that lacks OS integrations…
Compare Python For Delphi VCL vs Dear PyGUI For Windows Apps
March 13, 2021
Are you an expert in desktop apps and GUI development who want to also work with Python because of its simplicity, flexible use, and growing demand in the market out there? Or are you a Python Developer at any level who wants to start a GUI development journey? This article…
To increase your familiarity with DelphiVCL Components, this section 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 DelphiVCL:
from DelphiVCL import *
class…
This Section will break down the code example to create a simple Form app as presented in Section 5. These steps are essential for Python Developers to be familiar with Delphi VCL methods, events, and properties, to enable you in creating professional Windows Apps, without installing Delphi.
Below are the explanations of code example in Section 5:
Import the module:
from DelphiVCL import…
In essence, DelphiVCL is a wrapper that helps to create and access Delphi Objects quickly from Python. These wrappers contain container classes to extend and expose your custom events, methods, variables that can be used in Python script.Here is a Python code sample using…
To make sure that you already install 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…
There are two ways for you to install DelphiVCL: By directly copying the module to your local/system path, or install it via pip.
1. Copy to Your Local or System Path
Download the DelphiVCL.pyd module Beta Release 0.01– Beta preview – 2021-18-01, and extract according to your Python version and bit.You will need to place the DelphiVCL.pyd to your default path for your Python…