DelphiDelphiVCLLearn PythonPythonPython GUIWindows

An Introduction To DelphiVCL: A Python GUI Builder For Windows

Sometimes your application needs a user interface with professional looks, but what is the best way to make one for Python applications? TryDelphiVCLfor Python! DelphiVCLis a Python module giving Python GUI apps on Windows access to Delphi’s VCL for robust and high-performancenativeWindows visual widgets. It uses the Python4Delphi library as a bridge…
Read more
CodeDelphiPythonPython GUIWindows

Create Flexible Python GUI Delphi Variables In This Windows GUI App

As we know, a Variable stores a value so that you can reuse it later in your program. This reduces redundancy, improves performance, and makes your code more readable. What is Python Delphi Variable? This post will guide you to understand. You can also use Python4Delphi with C++Builder. Python4Delphi Demo3 Sample App shows how to create a Python Delphi Variable in Delphi using the…
Read more
CodeDelphiPythonPython GUI

Learn About Using Delphi Python GUI Methods In Python On Windows

Earlier we have seen how to add methods in Python Module using Python4Delphi TPythonModule component’s Add Method. However, the Add Method parameter uses a PyCFunction type parameter. In many cases, we may need to define the method which should return Delphi Type. How to do that? This post will provide a way to do that using the TPythonModule component itself. You can also use Python4Delphi…
Read more
C++Code

Learn How To Build A Python Module Into A Windows DLL For Use In Python GUI Apps

Sometimes we may need to share the functionalities as DLL and we know, creating a DLL in Delphi is a simple task. We learned how to create Python Module and add methods to it in Delphi. How about making a python module as DLL using Python4Delphi and import this python module in another application? This post will guide you to do that. You can also use Python4Delphi with…
Read more