C++DelphiPython GUIWindows

Learn How To Build A Powerful Python Threading System For Your Python Windows GUI Apps

We know Delphi supports Multithreading. Multithreading in Python can be achieved using Python Module Threading. However, In a use case like Delphi Application embedding Python(Python4Delphi) or CPython, the interpreter is not fully thread-safe. In order to support multi-threaded Python programs, there’s a global lock, called the global interpreter lock or GIL, that must be held by the current…
Read more
C++DelphiPythonPython GUIWindows

Build Powerful Python GUI Apps For Windows Using Events With Delphi And C++

An event links an occurrence in the system with the code that responds to that occurrence. The occurrence triggers the execution of a procedure called an event handler. The event handler performs the tasks that are required in response to the occurrence. Events allow the behavior of a component to be customized at design-time or at run time. Do you want to trigger and handle an event similar to…
Read more
C++DelphiPython GUIVideosWindows

Learn How To Setup Python4Delphi For Building Python GUI Apps On Windows

Here is a short video which shows you how to get started with installing the components you need to start building Python GUI apps on Windows with Delphi and C++Builder. SynEdit is an optional library that provides syntax highlighting and proper indention behaviors if you want to allow users to edit Python code in your application. If you just want to interact with Python and Python libraries…
Read more