DelphiDelphiVCLPythonPython GUIWindows

Store And Manipulate Strings With DelphiVCL.Strings Or TStrings In Python

DelphiVCL.Strings or TStrings is the base class for objects that represent a list of strings. Use DelphiVCL.Strings or TStrings to store and manipulate a list of strings. Descendants of TStrings can represent several individual strings, such as the individual lines that appear in a list box. Some objects use descendants of TStrings to represent one long body of the text so that it…
Read more
DelphiDelphiVCLPythonPython GUIWindows

Python GUI: Create A ComboBox To Select A Color With DelphiVCL.ColorBox

DelphiVCL.ColorBox represents a combo box that lets users select a color. Use ColorBox to provide the user with a drop-down combo box from which to select a color. Use the Style property to specify which colors the color box should list. Each color is displayed next to a small square that is drawn in the corresponding color. Use the Selected property to access the color that the user…
Read more
DelphiDelphiVCLPythonPython GUIWindows

Learn About DelphiVCL.Graphic

DelphiVCL.Graphic or TGraphic is the abstract base class type for objects such as icons, bitmaps, and metafiles that can store and display visual images. DelphiVCL.Graphic is an abstract class that cannot be instantiated. Descendant graphics objects override many of the methods of DelphiVCL.Graphic to address the needs of their particular file format and graphical characteristics.
Read more
DelphiLearn PythonPythonPython GUIRAD StudioWindows

Tutorial: Generate Python Dummy Data And Plot It To Enterprise-Grade Delphi TChart

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…
Read more