In the DelphiVCL Wiindows UI Toolkit TMonitorDefaultTo specifies which monitor to select when there is no match to the specified criteria.
TMonitorDefaultTo indicates which monitor should be used when the selection criteria do not match any of the monitors in the system.
It can have any of the following values:
ValueMeaningmdNearestChoose the monitor that comes closest to matching…
As a part of the DelphiVCL Windows UI Toolkit the DelphiVCL.Timer or TTimer is used to encapsulate the Windows API timer functions.
TTimer is used to simplify calling the Windows API timer functions SetTimer and KillTimer, and to simplify processing the WM_TIMER messages.
When performing development on Windows, the ComponentState property or DelphiVCL.Application.ComponentState is used to describe the current state of the component, indicating when a component needs to avoid certain actions.
ComponentState is a set of constants defined in…
When carrying out Windows development, use the CurrentHelpFile property or DelphiVCL.Application.CurrentHelpFile to indicate the current Help file.
You can read CurrentHelpFile to determine the name of the Help file that is currently used by the application when it executes a Help command (through the HelpCommand method) or when it brings up context-sensitive Help (through the HelpContext or…
The Action parameter in DelphiVCL is used to specify the action associated with the control when carrying out Windows development.
Action is the action object that is associated with the control. Actions allow an application to centralize the response to user commands.
What is the ClassNameIs Method in delphivcl.Application?
March 3, 2022
The ClassNameIs method or DelphiVCL.Application.ClassNameIs is used to determine whether an object is of a specific type when you develop windows software.
ClassNameIs determines whether an object instance or class reference has a class name that matches a specified…
Here’s another great talk from the recently concluded PyCon. In this video, Igor T. Ghisi will discuss data regression testing and how exactly this procedure can help you in your Python project. As the data structures of a project increase in size and complexity, it becomes harder and harder to preserve test completeness. Testing objects with dozens of attributes and arrays with hundreds of…
7 Recommended Python Tools to Easily Build GUIs
March 1, 2022
In the past few decades, computers have relied on interaction with the user via a graphical user interface, i.e., a GUI. It consists of a main window, a menu, a toolbar, buttons, labels, etc. There are various Python tools for building GUIs, and here I will go through seven…
Everything You Need To Create Transparent Windows With Tkinter
February 25, 2022
The best part of using the Tkinter GUI framework in Python is that you can get full control of the elements you want to add to your application. The widget-based system makes it easy to input elements and functions using a simple line of codes and commands. There are many…
This Is How To Implement Natural Language Processing
February 24, 2022
Ever wonder how Google Voice managed to recognize your speech and understand its context? How about those advertisements that you often see on search engines and social media platforms that are surprisingly relevant to your previous searches and inquiries? Well, these are just some of the successful implementations of the so-called Natural Language Processing or NLP. Adding NLP to your programs is…