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
Learn PythonPythonPython GUIVideos

Learn Python With Pyambic Pentameter by Kathyrn Lingel (PyCon 2020) Video

We all know that the Python programming language is being used to build some innovative projects and applications. We have learned from some of the previous PyCon 2020 videos that Python can be applied in almost any field from Agriculture to Physics. We even discovered a video of a mom sharing her experiences and how she helps her son build a science fair project using Raspberry PI with Python. If…
Read more