DelphiDelphiVCLPythonPython GUIWindows

Learn About The InsertComponent Method And What It Does

InsertComponent adds the component passed in the AComponent parameter to the end of the Components array property. The inserted component must have no name (no specified Name property value), or the name must be unique among all others in the Components list. When the owning component is destroyed, AComponent is also destroyed. Components are automatically inserted and removed when visually…
Read more
DelphiDelphiVCLPythonPython GUIWindows

Learn About DelphiVCL.Application.HandleMessage In Python

In this post, you’ll learn how to use the HandleMessage method or DelphiVCL.Application.HandleMessage to interrupt the execution of an application while Windows processes a message in the Windows message queue. Learning more about the HandleMessage method will help you build a Python project more easily in the future. HandleMessage interrupts the execution of the application so that…
Read more
DelphiDelphiVCLPythonPython GUIWindows

What Does DelphiVCL.Application.HandleException Do?

In this post, you’ll learn how the HandleException method, also known as DelphiVCL.Application.HandleException, works. It’s used to provide the application with default exception handling. If an exception passes through all the try blocks in the application code, the application automatically calls HandleException, which displays a dialog box indicating an error has occurred. Unless…
Read more
DelphiDelphiVCLPythonPython GUIWindows

What Is The ModalStarted Method In DelphiVCL.Application?

In this post, you’ll learn more about ModalStarted or DelphiVCL.Application.ModalStarted method is used to track the opening of the modal form. Call ModalStarted to indicate that a modal form is being opened. ModalStarted is called by the ShowModal method of TCustomForm. ModalStarted calls the OnModalStart event handler if defined. Learning more about the ModalStarted method will help…
Read more