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…
What does HintHidePause in DelphiVCL.Application do?
August 20, 2021
In this post, you’ll learn more about HintHidePause or DelphiVCL.Application.HintHidePause property is used to specify the time interval to wait before hiding the Help Hint if the mouse has not moved from the control or menu item. Use HintHidePause to specify a wait…
What Does HintColor In DelphiVCL.Application Do?
August 19, 2021
In this post, you’ll learn more about HintColor or DelphiVCL.Application.HintColor property determines the color of the hint boxes for the Help Hints for the application.
Use HintColor to specify the hint box color. A default color value of clInfoBk is set for the…
What Is The GetEnumerator Method in DelphiVCL.Application?
August 18, 2021
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.
Hands-On Bioinformatics With These 6 Powerful Python Libs
August 17, 2021
Are you looking for Python development tools that can be used in bioinformatics and to create a graphical user interface (GUI)?
You can build scalable Bioinformatics systems easily by combining these 6 powerful Python libraries and Python4Delphi for the GUI building part.
What Does HintMouseMessage In DelphiVCL.Application Do?
August 16, 2021
In this post, you’ll learn more about HintMouseMessage or DelphiVCL.Application.HintMouseMessage method regulates the display of hint windows. This method is called automatically when the mouse passes over control with a Hint. Applications rarely, if ever, call…
This Is The FreeOnRelease Method Of DelphiVCL.Application
August 13, 2021
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…
What Is The FreeNotification Method In DelphiVCL?
August 12, 2021
In this post, you’ll learn how to use the FreeNotification method or DelphiVCL.Application.FreeNotification to ensure that AComponent is notified that the component is going to be destroyed.
Use FreeNotification to register AComponent as a component that should be…
Use The GetInterface Method In DelphiVCL.Application
August 11, 2021
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…
What You Need To Know About The GetInterfaceEntry Method
August 10, 2021
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…