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
Learn PythonPythonPython GUITkinterVideos

Learn Python With Python Top 5 GUI Frameworks Video

If you are planning to create your first Graphical User Interface application, the first thing you must consider is to pick the right GUI framework. It is important to note that there are tons of GUI frameworks available today and most of them will vary in terms of their overall functionality and complexity. In this video presented by Parwiz Forogh, he will share with us five of the most popular…
Read more
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
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