DelphiDelphiVCLPythonPython GUIWindows

What Is The OnException Event in DelphiVCL.Application?

The OnException or DelphiVCL.Application.OnException event occurs when an unhandled exception occurs in the application. This is a fundamental error event to understand when you develop Windows software. How is the DelphiVCL.Application.OnException event used? Use OnException to change the default behavior that occurs when an exception (a critical error) is not handled by regular…
Read more
DelphiDelphiVCLPythonPython GUIWindows

7 More Built-In Function Objects Inside DelphiVCL4Python Library

When running dir() to DelphiVCL library or any DelphiVCL methods and properties in all previous sections, you might find many of Python’s built-in objects and properties. You can also read 7 Built-In Function Objects Inside The DelphiVCL Library which has some other built-in object functions which relate to the ones in this article. In this post, you’ll learn more about built-in…
Read more
DelphiDelphiVCLPythonPython GUIWindows

What Is The OnActionUpdate Event In DelphiVCL.Application?

In this post, we’ll use OnActionUpdate or DelphiVCL.Application.OnActionUpdate event occurs when an action’s Update method is called and its action list has not already handled it. Learning how to do it will allow you to easily build GUIs and test it with Python Testing Tools. Use the OnActionUpdate event handler to update the properties of an action when the application is idle if…
Read more