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
DelphiDelphiVCLPythonPython GUIWindows

Adding Set Properties to VCL Components using .SetProps

In the previous examples, we already use the .SetProps several times (see Section 7: Getting Started with DelphiVCL III: Overview of Commonly used VCL Components). Use SetProps to set specific properties to components. Here are the working examples taken from the Section 7: Getting Started with DelphiVCL III: Overview of Commonly used VCL Components: Implemented in creating…
Read more
DelphiDelphiVCLPythonPython GUIWindows

Specify Component's Boundary Properties using .SetBounds

.SetBounds will set the Left, Top, Width, and Height properties all at once. Use SetBounds to change all of the component’s boundary properties at one time. The same effect can be achieved by setting the Left, Top, Width, and Height properties separately, but SetBounds changes all four properties at once ensuring that the control will not repaint between changes. This is the…
Read more