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…
What Does DelphiVCL.Application.HandleException Do?
October 18, 2021
In this post, you’ll learn how the HandleException method, also known as DelphiVCL.Application.HandleException, works. It’s used to provide the application with default exception handling. If an exception passes through all the try blocks in the application code…
Learn About The Handle Property in DelphiVCL.Application
October 15, 2021
In this post, you’ll learn more about the Handle property or DelphiVCL.Application.Handle is used to provide access to the underlying Windows screen object for the control. The Handle property returns the window handle for the underlying Microsoft Windows screen…
What Is The GetInterfaceTable Method in delphivcl.Application?
October 14, 2021
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…
What Is The ModalStarted Method In DelphiVCL.Application?
October 13, 2021
In this post, you’ll learn more about ModalStarted or DelphiVCL.Application.ModalStarted method is used to track the opening of the modal form. Call ModalStarted to indicate that a modal form is being opened. ModalStarted is called by the ShowModal method of…
What Is The ModalPopupMode Property In DelphiVCL.Application?
October 12, 2021
In this post, you’ll learn more about ModalPopupMode or DelphiVCL.Application.ModalPopupMode property controls how the modal form behaves, with respect to Windows’ WS_POPUP style. Use ModalPopupMode to set the way modal forms behave, with respect to…
What is the Name Property in DelphiVCL.Application?
October 11, 2021
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…
What is the NewInstance Method in DelphiVCL.Application?
October 8, 2021
In this post, you’ll learn more about NewInstance or DelphiVCL.Application.NewInstance method allocates memory for an instance of an object type and returns a pointer to that new instance. All constructors call NewInstance automatically. NewInstance calls InstanceSize…
This Is The DelphiVCL.Application.ModalFinished Method
October 7, 2021
In this post, you’ll learn more about ModalFinished or DelphiVCL.Application.ModalFinished method tracks closing of a modal form.
Learning more about DelphiVCL.Application.ModalFinished Method will allow you to create programs with Python Program Maker more…
What You Need To Understand DelphiVCL.Application.HelpFile
October 6, 2021
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…