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

Specifies the Default Font used by the Application using DelphiVCL.Application.DefaultFont

Use the DefaultFont property or DelphiVCL.Application.DefaultFont to specify the default font used by the application. DefaultFont specifies the default font used by the application. All newly created forms use DefaultFont if the ParentFont property is set to True. Changing DefaultFont later at run-time will trigger an update for all forms that use the parent font. Let’s browse all…
Read more
DelphiDelphiVCLPythonPython GUIWindows

How to use the DelphiVCL.DrawGrid.Col

DelphiVCL.DrawGrid.Col specifies the index of the column that contains the selected cell. Use DelphiVCL.DrawGrid.Col at runtime to determine the current column in the grid. Setting Col moves focus to the cell in the current row that is in the new column. The first column has an index of 0, the second column an index of 1, and so on. The selected cell in the grid can be located by…
Read more