DelphiDelphiVCLPythonPython GUIWindows

Learn About DelphiVCL.Application.BeforeDestruction

BeforeDestruction method or DelphiVCL.Application.BeforeDestruction is used to respond before the first destructor executes. BeforeDestruction is called automatically before the object’s first destructor executes. Do not call it explicitly in your applications. The BeforeDestruction method implemented in TObject does nothing. Override this method when creating a class that…
Read more
DelphiDelphiVCLPythonPython GUIWindows

Learn About DelphiVCL.Application.Assign

Assign method or DelphiVCL.Application.Assign is used to copy the contents of another similar object. Assign copies properties and other attributes of the specified Source object to the current object. Most objects override Assign to handle the assignment of properties from similar objects. When overriding Assign, call the inherited method if the destination object cannot handle the…
Read more
DelphiPythonPython GUIWindows

Learn to Automatically Generating A CLIs Using Python’s Fire Library In A Delphi Windows App

Are you looking for powerful tools to automatically generate command-line interfaces to make your life easier, and build a nice GUI for them? You can build it easily by combining Fire and Python4Delphi library, inside Delphi and C++Builder. Python Fire is a library for automatically generating command-line interfaces (CLIs) with a single line of code. It will turn any Python module…
Read more
DelphiDelphiVCLPythonPython GUIWindows

What is the AddPopupForm Method in DelphiVCL.Application?

AddPopupForm method or DelphiVCL.Application.AddPopupForm is used to add a PopupForm to the current form. AddPopupForm adds a TCustomForm, that acts as a popup, in the current form. Popup handling is done by using a TPopupFormArray. The method returns the popup form id representing the order number of the currently added popup element. Note: The popup form id is different from…
Read more