DelphiDelphiVCLPythonPython GUIWindows

This Is What DoApplicationIdle Does For Windows Development

The DoApplicationIdle method or DelphiVCL.Application.DoApplicationIdle is used to process messages in the Message queue for certain events as part of your Windows development. The DoApplicationIdle method forces a call to the protected method TApplication.Idle. Idle triggers the event OnIdle, processes the events OnMouseEnter and OnMouseLeave, and updates the hints. Let’s browse all the…
Read more
DelphiDelphiVCLPythonPython GUIWindows

What is ActionUpdateDelay Property in DelphiVCL.Application?

ActionUpdateDelay property or DelphiVCL.Application.ActionUpdateDelay used to delay the call to DoActionIdle. This applies to native Windows development. The following example demonstrates the usefulness of this property: Create an MDI project with the main form, an MDI Child, and a TAction class.Link the TAction OnUpdate event to a method.Run the program and maximize the MDI child. If you…
Read more
DelphiDelphiVCLLearn PythonPythonPython GUIWindows

This Is How Python's Self Works In Windows Development

Whenever object-oriented programming is done in Python, then we will often come across the self method as their first parameter. This article explains the main concept of self method in Python for Windows development. self represents the instance of the class in Python. By using the “self” keyword we can access the attributes and methods of the class in Python. It binds the attributes with…
Read more
DelphiDelphiVCLPythonPython GUIWindows

What is the ClassParent Method in Windows App Development?

The ClassParent method or DelphiVCL.Application.ClassParent is used during Windows app development to return the type of the immediate ancestor of a class. ClassParent returns the name of the parent class for an object instance or class reference. For TObject, ClassParent returns nil (Delphi) or NULL (C++). Avoid using ClassParent in application code. Let’s browse all the properties and…
Read more