DelphiDelphiVCLPythonPython GUIWindows

All You Need To Know About GetNamePath Method in DelphiVCL.Application

In this post, you’ll learn how to use GetNamePath method or DelphiVCL.Application.GetNamePath to return a string used by the Object Inspector. GetNamePath is used to determine the text to display in the Object Inspector for the name of the object being edited. GetNamePath is introduced in TPersistent so descendants such as collections can appear in the Object Inspector. TComponent overrides…
Read more
DelphiDelphiVCLPythonPython GUIWindows

What Is The GetInterfaceTable Method in DelphiVCL.Application?

In this post, you’ll learn how to use the GetInterfaceTable method or DelphiVCL.Application.GetInterfaceTable to return a pointer to a structure containing all of the interfaces implemented by a given class. Learning more about the GetInterfaceTable will help you build easily Delphi Applications with Python Windows GUI Builder Examining the properties and methods of…
Read more
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