Learn PythonPythonPython GUIVideos

How To Make A Python Desktop App Dynamically Resize Windows

Although we can easily set geometry parameters in Tkinter to define the size of our windows in a Python desktop app, we can also add additional functionality that will allow us to resize the window dynamically. Is it possible for the users to update the size of the window when the program is already running? In this video, John Elder of Codemy will teach us various ways to do it. Since the…
Read more
Projects

Python 4 Delphi

Learn how Embarcadero’s newly released free Python modules bring the power and flexibility of Delphi’s GUI frameworks to Python. VCL and FireMonkey (FMX) are mature GUI libraries. VCL is focused on native Windows development, while FireMonkey brings a powerful…
IDELearn PythonPython GUI

20 Things Python Desktop Absolute Beginners Need To Know

If you want to learn programming but have little to no experience, congratulations, you have come to the right place. Python is an excellent choice for the absolute beginner to get started. There are various Python desktop tools available to make the task easier, let’s take a look a selection of them now. 1. How to install Python? Obviously, you have to install python on your computer…
Read more
Learn PythonPythonPython GUIVideos

Learn Python Development By Creating A Database For A CRM

Following his previous Python development video about the creation of a CRM Database tool using the Tkinter module, John Elder of Codemy will now show us how to add additional functionality to the program. Take note that the project requires users to install the MYSQL database to make it work. In this video, John will show us how to create an actual database for the CRM project. Here, we will also…
Read more
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