DelphiDelphiVCLPythonPython GUIWindows

What Is The OnHelp Event In DelphiVCL.Application?

What is the DelphiVCL.Application.OnHelp event? The OnHelp or DelphiVCL.Application.OnHelp occurs when the application receives a request for Help. You can examine and set it in the IDE software. How to use the DelphiVCL.Application.OnHelp event properly? Write an OnHelp event handler to perform special processing when the user requests Help. The HelpContext and HelpJump methods…
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
DelphiDelphiVCLPythonPython GUIWindows

What Is A DelphiVCL.BitBtn And Why Would I Use It?

DelphiVCL.BitBtn is a push button control that can include a bitmap on its face. It’s an alternative to the regular button control which can’t directly use graphics on it. Bitmap buttons exhibit the same behavior as button controls. We use them to initiate actions from forms and dialog boxes. Bitmap buttons implement properties that specify the bitmap images, along with…
Read more
DelphiLearn PythonPythonPython GUIRAD StudioWindows

How To Build A GUI For Deep Learning With Apache’s MXNet

Are you looking for a truly open-source deep learning framework suited for flexible research prototyping and production, and building a nice GUI for them? You can deliver ultra-scalable deep learning solutions easily by combiningMXNetandPython4Delphilibrary, insideDelphi and C++Builder. This post will guide you onhow to run the MXNet library and use Python…
Read more