DelphiDelphiVCLPythonPython GUIWindows

What Is A DelphiVCL.BitBtn And Why Would I Use It?

DelphiVCL.BitBtn is a push button control that can include a bitmap on its face. It’s an alternative to the regular button control which can’t directly use graphics on it. Bitmap buttons exhibit the same behavior as button controls. We use them to initiate actions from forms and dialog boxes. Bitmap buttons implement properties that specify the bitmap images, along with…
Read more
DelphiDelphiVCLPythonPython GUIWindows

7 More Built-In Function Objects Inside DelphiVCL 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
DelphiDelphiVCLPythonPython GUIWindows

What is an OnDeactivate Event in DelphiVCL.Application?

OnDeactivate or DelphiVCL.Application.OnDeactivate event Occurs when an application becomes inactive. How to use the DelphiVCL.Application.OnDeactivate Event properly? Write an OnDeactivate event handler to perform any special processing that should occur immediately before the application is deactivated. The OnDeactivate event occurs when the user switches from the…
Read more