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…
In this post, we’ll use the FindComponent method or DelphiVCL.Application.FindComponent to indicate whether a given component is owned by the component. Learning how to do it will allow you to easily build GUIs with Python Windows GUI Builder.
FindComponent…
What is the Free Method in delphivcl.Application?
July 19, 2021
In this post, we’ll use the Free method or DelphiVCL.Application.Free to destroy an object and free its associated memory, if necessary. Learning how to do it will allow you to easily build GUIs with Python Development Tools.
Use Free to destroy an object. Free…
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…
In this post, we’ll use the EndFunctionInvoke method or DelphiVCL.Application.EndFunctionInvoke to block the caller until the specified ASyncResult completes. Learning how to do it will allow you to easily build GUIs with Python Build Tools.
Returns the result from…
What Does EnumAllWindowsOnActivateHint Do?
July 15, 2021
In this post, we’ll use the EnumAllWindowsOnActivateHint property or DelphiVCL.Application.EnumAllWindowsOnActivateHint is a Boolean variable used for hint displaying. Learning how to do it will allow you to easily create GUIs with Python Programming…
How To Understand delphivcl.Application.EndInvoke
July 13, 2021
In this post, we’ll use the EndInvoke property or DelphiVCL.Application.EndInvoke to block the caller until the specified ASyncResult completes. Learning how to do it will allow you to easily create GUIs with Python Windows GUI Builder.
Returns the result from the method that BeginInvoke asynchronously executes. This result is immediately returned after the given IAsyncResult…
What is delphivcl.Application.DesignInfo?
July 7, 2021
In this post, we’ll use the DesignInfo property or DelphiVCL.Application.DesignInfo contains information used by the Form designer in Python Program Maker.
DesignInfo is used internally. Do not use this property in applications.
Let’s browse all the properties…
The ExeName property or DelphiVCL.Application.ExeName contains the file name of the application’s executable file including path information.
In this post, we’ll use Use ExeName to obtain the name of the executable file for the application. ExeName is the…
When the user invokes an action, a series of calls ensue to respond to that action. First, the action list that contains the action generates an OnExecute event. If the action list does not handle the OnExecute event, then the action is routed to the Application object’s ExecuteAction method, which invokes the OnActionExecute event handler. (The application’s ExecuteAction method…