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

How To Build A GUI For Optical Character Recognition

Are you looking for the easiest way to build an Optical Character Recognizer for 80+ languages and build a nice GUI for them, and all of them are free? You can deliver end-to-end multilingual OCR solutions easily by combining EasyOCR and Python4Delphi library, inside Delphi and C++Builder. This post will guide you on how to run the EasyOCR library and use Python for Delphi to display it in the…
Read more
DelphiDelphiVCLPythonPython GUIWindows

What is an OnGetActiveFormHandle Event in DelphiVCL.Application?

OnGetActiveFormHandle or DelphiVCL.Application.OnGetActiveFormHandle is the event triggered when reading the value of the ActiveFormHandle property. Let’s take a look at all of DelphiVCL.Application.OnGetActiveFormHandle properties, methods, and built-in properties: import DelphiVCL dir(DelphiVCL.Application.OnGetActiveFormHandle) See the responses in our Windows…
Read more
DelphiDelphiVCLPythonPython GUIWindows

What Is The DelphiVCL4Python Sender Property?

The Sender property specifies which component notifies the change link object of changes. We use Sender to access the component that has changed. Here is a working example of the implementation of Sender property in DelphiVCL: # Implementation in Color Box Creation def ColorChangeHandler(Sender): shpRectangle.Brush.Color = clbSelect.Selected # Implementation in…
Read more