DelphiDelphiVCLPythonPython GUIWindows

What is the Name Property in DelphiVCL.Application?

In this post, you’ll learn more about Name or DelphiVCL.Application.Name property specifies the name of the component as referenced in the code. Use Name to change the name of a component to reflect its purpose in the current application. By default, the IDE assigns sequential names based on the type of the component, such as ‘Button1’, ‘Button2’, and so on. Use Name…
Read more
DelphiDelphiVCLPythonPython GUIWindows

What You Need To Understand DelphiVCL.Application.HelpFile

In this post, you’ll learn how to use the HelpFile property or DelphiVCL.Application.HelpFile to specify the name of the Help file the form uses to display the Help from. If your form should have a Help file different from the default Help file of the application specified using the TApplication.HelpFile property of the global TApplication type object, then use the HelpFile property of…
Read more
DelphiDelphiVCLPythonPython GUIWindows

This Is The DelphiVCL.Application.MethodName Method

In this post, you’ll learn more about the MethodName or DelphiVCL.Application.MethodName method returns the name of a class method by address. There are situations when it is useful to invoke an object method without hard coding the method name in advance. Call MethodAddress to dynamically retrieve the address of such a method by specifying the method name as a string. MethodName is the…
Read more
DelphiDelphiVCLPythonPython GUIWindows

What Is The MainFormHandle Property in DelphiVCL.Application?

In this post, you’ll learn how to use the MainForm or DelphiVCL.Application.MainForm property to give the Windows handle of the application main form. MainFormHandle gives the Windows handle of the application main form. Learning more about the MainFormHandle Property will help you to easily build Delphi VCL Applications using Python Windows GUI Builder. Let’s browse all the…
Read more