DelphiDelphiVCLPythonPython GUIWindows

How To Use The GetHashCode Method in delphivcl.Application

In this post, you’ll learn how to use the GetHashCode method or DelphiVCL.Application.GetHashCode is used to return an integer containing the hash code. By default, calling GetHashCode on an object returns an integer representing the virtual address at which the object is stored. Notes: GetHashCode is supposed to be overridden in user-derived classes, to provide consumer objects with…
Read more
DelphiDelphiVCLPythonPython GUIWindows

What is delphivcl.Application.CreateHandle?

We can use the CreateHandle method or DelphiVCL.Application.CreateHandle to generate a main window for the application if it does not already have one. Do not call CreateHandle directly. In EXEs, the application’s constructor calls CreateHandle. In DLLs, it does not. CreateHandle encapsulates much of what traditional Windows programs write in WinMain. For example, CreateHandle…
Read more
DelphiDelphiVCLPythonPython GUIWindows

What is the FieldAddress Method in delphivcl.Application?

In this post, we’ll use the FieldAddress method or DelphiVCL.Application.FieldAddress to return the address of a published object field. Learning how to do it will allow you to easily build GUIs with Python Coding Software. FieldAddress is used internally by the component streaming system to access a specified published field of an object. FieldAddress returns a pointer to the field…
Read more
DelphiDelphiVCLPythonPython GUIWindows

Understanding The Purpose of delphivcl.Application.Equals

In this post, we’ll use the Equals method or DelphiVCL.Application.Equals to check whether the current instance and the Obj parameter are equal. The function has one Obj parameter of the TObject type. Learning how to do it will allow you to easily build GUIs with Python Build Tools. By default, the Equals method shows whether the addresses corresponding to the current object and the Obj…
Read more