DelphiIDELearn PythonPythonPython GUIRAD StudioWindows

Powerful Python For Delphi VCL vs Python GUI Generator: PAGE

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 is for you. We will review the two examples of the most powerful Python Desktop App and GUI Frameworks:Python For…
Read more
DelphiDelphiVCLPythonPython GUIWindows

How to Change the Font Attributes

We use Font or TFont to specify the attributes of text written on or in the control. To change to a new font, specify a new TFont object. To modify a font, change the value of the Charset, Color, Height, Name, Pitch, Size, or Style of the TFont object. Note: Changing the font color of the Caption is not supported for some controls (such as TButton). In most cases, there is an…
Read more
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