DelphiPythonPython GUIWindows

Build An Artificial Intelligence Solution With TensorFlow Library In A Delphi Windows App

Are you looking for an end-to-end open-source machine learning and deep learning platform, and build a nice GUI for them? You can deliver enterprise-grade AI solutions easily by combining TensorFlow and Python4Delphi library, inside Delphi and C++Builder. TensorFlow is an open-source software library for high-performance numerical computation. Its flexible architecture allows easy deployment of…
Read more
DelphiDelphiVCLPythonPython GUIWindows

Create a Multiline Edit Control on a Form using DelphiVCL.Memo

DelphiVCL.Memo is a wrapper for a Windows multiline edit control. We use Memo to put a standard Windows multiline edit control on a form. Multiline edit boxes allow the user to enter more than one line of text. They are appropriate for representing lengthy information. Note: Under Windows, there may be a limit of 64k of text for this control. Browse all the properties, methods, and…
Read more
DelphiDelphiVCLPythonPython GUIWindows

Learn About DelphiVCL.SpinEdit

DelphiVCL.SpinEdit or TSpinEdit combines a TEdit box with a TSpinButton. DelphiVCL.SpinEdit component is a TEdit with a TSpinButton attached. The Value of the edit box is numerical. By pressing the up and down buttons of TSpinButton, the Value is increased or decreased. Let’s browse all the properties, methods, and built-in properties of the DelphiVCL.SpinEdit using dir()…
Read more
DelphiDelphiVCLPythonPython GUIWindows

Learn Buttons Using DelphiVCL.Button

DelphiVCL.Button is a push-button control. Use Button to put a standard push button on a form. Button introduces several properties to control its behavior in a dialog-box setting. To initiate actions, users choose button controls To use a button that displays a bitmap instead of a label, use BitBtn. To use a button that can remain in a pressed position, use SpeedButton. The Caption…
Read more