DelphiPythonPython GUIWindows

Build A Machine Learning Solutions With Scikit-Learn Library In A Delphi Windows App

Are you looking for an end-to-end open-source machine learning platform, and build a nice GUI for them? You can deliver enterprise-grade machine learning solutions easily by combining Scikit-Learn and Python4Delphi library, inside Delphi and C++Builder. And as a bonus, integrating Python with Delphi can speed up the execution time (read our other articles about TensorFlow and…
Read more
DelphiLearn PythonPythonPython GUIRAD Studio

Learn To Integrate Python Cryptographic Services To A Delphi Windows GUI App

Python offers various built-in algorithms for cryptographic tasks. On Unix systems, the crypt module may also be available. This post will demonstrate hashlib: One of the built-in algorithms for cryptographic tasks, used for secure hashes and message digests using Python and run it in the Python GUI by Python4Delphi to get the results. hashlib implements a common interface to many different…
Read more
DelphiDelphiVCLPythonPython GUIWindows

Learn About DelphiVCL.Application.Destroying

The Destroying method or DelphiVCL.Application.Destroying is used to indicate that the component and its owned components are about to be destroyed. Destroying sets the csDestroying flag in the ComponentState property. It then calls the Destroying method for each owned component so that its csDestroying flag is also set. If csDestroying is already set, Destroying does nothing. It is…
Read more
DelphiDelphiVCLPythonPython GUIWindows

Understanding DelphiVCL.Application.DefaultHandler

Use the DefaultHandler method or DelphiVCL.Application.DefaultHandler to provide the interface for a method that processes message records. DefaultHandler is called by Dispatch when it cannot find a method for a particular message. DefaultHandler provides message handling for all messages for which an object does not have specific handlers. Descendant classes that process messages override…
Read more