Learn PythonPythonVideos

This Is How To Get Beautiful Refactoring In Your Python Apps

Whether you are an aspiring programmer or someone who already has knowledge about using or developing Python programming language, PyCon is an annual event that you should definitely not miss. Despite the global pandemic at the time, PyCon 2020 was still a success. Speakers, experts, and Python enthusiasts were gathered digitally in the recently concluded conference in Pittsburgh. All videos are…
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