DelphiDelphiVCLPythonPython GUIWindows

What Does The OnHint Event In DelphiVCL.Application Do?

What is the DelphiVCL.Application.OnHint event? The OnHint or DelphiVCL.Application.OnHint occurs when the mouse pointer moves over a control or menu item that can display a Help Hint. This mainly applies to Windows app development. How to use the DelphiVCL.Application.OnHint event properly? Write an OnHint event handler to perform special processing when the mouse pauses over a control…
Read more
DelphiDelphiVCLPythonPython GUIWindows

What You Need To Know About The NormalizeTopMosts Method

The NormalizeAllTopMosts or DelphiVCL.Application.NormalizeAllTopMosts method is used in development on Windows to make forms that have been designated as topmost forms (their FormStyle is fsStayOnTop) behave as if they were not topmost forms.  How to use the DelphiVCL.Application.NormalizeTopMosts Method properly? Use NormalizeTopMosts to allow a message box or dialog box that is displayed…
Read more
DelphiLearn PythonPythonPython GUIRAD StudioWindows

This Is How To Make A Deep Learning Computer Vision App

Are you looking for the easiest way to implement Deep Learning for Computer Vision and build a nice GUI for them, and all of them are free? You can deliver end-to-end Deep Learning for Computer Vision solutions easily by combining GluonCV and Python4Delphi library, inside your Delphi or C++Builder IDE software. This post will guide you on how to run the GluonCV library and use Python for Delphi…
Read more
DelphiDelphiVCLPythonPython GUIWindows

What Are The Built-In Function Objects Inside DelphiVCL?

A built-in function object is a wrapper around a C function. Examples of built-in functions are len() and math.sin() (math is a standard built-in module). The number and type of the arguments are determined by the C function. You can browse all the built-in function objects available to us for windows development inside the DelphiVCL library using the Python dir() command: import…
Read more