DelphiDelphiVCLLearn PythonPythonPython GUIWindows

Understanding DelphiVCL __init__ For Windows App Development

Whenever object-oriented programming is done in Python, we mostly come across the __init__ method. This article explains the main concept of __init__ method in Python when used for Windows app development of graphical user interfaces (GUIs). “__init__” is a reserved method in python classes. It is known as a constructor in object-oriented concepts. This method is called when an…
Read more
DelphiDelphiVCLLearn PythonPythonPython GUIWindows

How To Automatically Manage the Layout of Toolbar Components

The DelphiVCL.ControlBar manages the layout of toolbar components as part of a low code application platform. With components like the controlbar in the DelphiVCL the amount of code you actually have to write is greatly reduced and often avoided altogether. Use DelphiVCL.ControlBar as a docking site for toolbar components. Control bars contain child controls (usually TToolBar objects) that can…
Read more
Learn PythonPythonPython GUIVideos

Easily Automate, Protect, And Simplify Your Python GUI Apps

One of the steps toward professional deployment of your Python GUI apps is the way you deploy and maintain them. This video from PyCon in Pittsburgh goes into depth about the how and why containers can help lift your Python GUI app’s perceived professionalism and reliability. Due to the global pandemic, the conference was done digitally. Now, you may be able to access all the talks…
Read more
Learn PythonPythonPython GUIVideos

This Is How To Deduplicate Records Using Python Software

In this Learn Python video presented by Flávio Juvenal da Silva Junior from digital PyCon, we will learn more about Record Deduplication and how exactly it works using Python Software. There will be instances where we encounter duplicate records in our datasets. While these duplicate records can be noticed easily by humans, computers may not be able to recognize them due to some variations. In…
Read more