DelphiDelphiVCLPythonPython GUIWindows

Use The GetInterface Method In DelphiVCL.Application

In this post, you’ll learn more about the GetInterface method or DelphiVCL.Application.GetInterface is used to retrieve a specified interface. GetInterface retrieves the interface designated by a GUID or type name. The basic implementation of GetInterface uses the GUID specified in the IID parameter. If the specified interface is supported by the class, it is returned in the Obj parameter…
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
DelphiDelphiVCLPythonPython GUIWindows

What is the Free Method in DelphiVCL.Application?

In this post, we’ll use the Free method or DelphiVCL.Application.Free to destroy an object and free its associated memory, if necessary. Learning how to do it will allow you to easily build GUIs with Python Development Tools. Use Free to destroy an object. Free automatically calls the destructor if the object reference is not nil. Any object instantiated at run time that does not have…
Read more