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
DelphiDelphiVCLPythonPython GUIWindows

How To Understand delphivcl.Application.EndInvoke

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…
Read more
DelphiDelphiVCLPythonPython GUIWindows

What is the ExeName Property in delphivcl.Application?

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 fully-qualified name, including the path to the application’s executable in Python Windows GUI Builder. More things…
Read more
DelphiDelphiVCLPythonPython GUIWindows

Specify the Alignment of a Control using Align or TAlign

Align or TAlign is used to specify the alignment of control within its parent. TAlign specifies how control is placed relative to its parent. It can have one of the following values: Value Meaning alNone The control remains where it was placed. This is the default value. alTop The control moves to the top of its parent and resizes to fill the width of its parent.
Read more