CodeDelphiPythonPython GUIRAD StudioWindows

Build Powerful Windows GUI Apps Using Python And These 5 REST APIs

What is REST Architecture? REST stands for REpresentational State Transfer. REST is a web standards-based architecture and uses HTTP Protocol. It revolves around a resource where every component is a resource and a resource is accessed by a common interface using HTTP standard methods. REST was first introduced by Roy Fielding in 2000. The REST architectural style emphasizes the scalability…
Read more
DelphiDelphiVCLPythonPython GUIWindows

What Is The GetEnumerator Method in DelphiVCL.Application?

In this post, you’ll learn how to use the GetEnumerator method or DelphiVCL.Application.GetEnumerator to return a TComponent enumerator. GetEnumerator returns a TComponentEnumerator reference, which enumerates the components contained within a specified containing component. To process all these subcomponents, call the TComponentEnumerator GetCurrent method within a While MoveNext do loop.
Read more
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