DelphiDelphiVCLPythonPython GUIWindows

This Is The FreeOnRelease Method Of DelphiVCL.Application

In this post, you’ll learn more about FreeOnRelease method or DelphiVCL.Application.FreeOnRelease is used to free the interface reference for components that were created from COM classes. FreeOnRelease is called when an interface implemented by the component is released. FreeOnRelease is used internally and calls the corresponding interface method. It should not be necessary to call…
Read more
DelphiDelphiVCLPythonPython GUIWindows

What You Need To Know About The GetInterfaceEntry Method

In this post, you’ll learn how to use the GetInterfaceEntry method or DelphiVCL.Application.GetInterfaceEntry to return the entry for a specific interface implemented in a class. GetInterfaceEntry returns the class entry for the interface specified by the IID parameter. Note: In Delphi Code, IID can be an interface name. The compiler replaces this name with the actual GUID. COM…
Read more
DelphiDelphiVCLPythonPython GUIWindows

This Is A List Of All Routines And Classes in the VCL

This section lists all routines and classes included in Delphi’s VCL, split by categories. You can use these lists to navigate according to your needs. VCL CategoryUnit(s)Additional ControlsVcl.ActnColorMaps, Vcl.ActnCtrls, Vcl.ActnMan, Vcl.ActnMenus, Vcl.ActnPopup, Vcl.AppEvnts, Vcl.ButtonGroup, Vcl.Buttons, Vcl.CheckLst, Vcl.CategoryButtons, Vcl.Controls, Vcl.CustomizeDlg…
Read more
DelphiDelphiVCLPythonPython GUIWindows

All You Need To Know About Application.DialogHandle

In this post, we’ll use the DialogHandle property or DelphiVCL.Application.DialogHandle provides a mechanism for using non-VCL dialog boxes in an application. Learning how to do it will allow you to easily build GUIs with Python Program Maker. Use DialogHandle when displaying a modeless dialog box that was created using the CreateDialog API function. Assigning the handle of the modeless…
Read more