DelphiPythonPython GUIWindows

Learn To Build A Python GUI For Manipulating Datetime Using Delorean Library In A Delphi Windows App

Are you looking for powerful tools to deal with datetime and build a nice GUI for them? You can build it easily by combining the Delorean and Python4Delphi library, inside Delphi and C++Builder. Delorean is a library for clearing up the inconvenient truths that arise when dealing with datetime in Python. Understanding that timing is delicate enough of a problem, Delorean hopes to provide a…
Read more
DelphiDelphiVCLPythonPython GUIWindows

How to use the DelphiVCL.Application.Destroy Destructor

We use DelphiVCL.Application.Destroy to destroy the application instance and all of its associated memory. Never call DelphiVCL.Application.Destroy or DelphiVCL.Application.Free. Instead, use the application’s Terminate method to end the application. Destroy signals that the application has been deactivated before calling the inherited destructor. It then frees memory for…
Read more
DelphiPythonPython GUIWindows

Learn To Build A Python GUI For Programming Quantum Computers With Cirq In A Delphi Windows App

Are you looking for an open-source framework for programming quantum computers and build a nice GUI for them? Try Cirq library for Python. And for the GUI part, you can run it seamlessly with Python4Delphi (P4D). P4D is a free and simple tool that allows you to run Python scripts as well as create new Python modules and types in Delphi. Cirq is a Python library for writing, manipulating…
Read more
DelphiDelphiVCLPythonPython GUIWindows

Understanding DelphiVCL.Application.ControlDestroyed

The ControlDestroyed method or DelphiVCL.Application.ControlDestroyed is used to notify the application when a control is destroyed. ControlDestroyed is for internal use and is called automatically by TControl. Do not call it directly. ControlDestroyed notifies the application that the control passed as the Control parameter has been destroyed, so that the properties which refer to…
Read more