Are you looking for a simple, flexible, and powerful deep learning library, and build a nice GUI for them? You can deliver enterprise-grade AI solutions easily by combining Keras and Python4Delphi library, inside Delphi and C++Builder.
Keras is a high-level neural networks API for Python. Keras acts as an interface for the TensorFlow library.
Keras is designed for human beings, not machines.
Learn About delphivcl.Control
March 23, 2021
DelphiVCL.Control is the base class for all components that are visible at run time.
DelphiVCL.Control are visual components, meaning the user can see them and possibly interact with them at run time. All controls have properties, methods, and events that describe…
Learn About delphivcl.Graphic
March 23, 2021
DelphiVCL.Graphic or TGraphic is the abstract base class type for objects such as icons, bitmaps, and metafiles that can store and display visual images.
DelphiVCL.Graphic is an abstract class that cannot be instantiated. Descendant graphics objects override many of…
How to use the delphivcl.FreeConsole
March 23, 2021
When developing GUI applications and you need to provide console I/O, you need to call FreeConsole after you end your console I/O code block.
Let’s browse all the properties, methods, and built-in properties of the DelphiVCL.FreeConsole using dir() command:
import DelphiVCL
dir(DelphiVCL.FreeConsole)
See the responses in our Windows command…
ActionList in DelphiVCL4Python
March 23, 2021
ActionList or TActionList maintains a list of actions that your application can take in response to something a user does, such as components and controls (e.g. menu items and buttons).
Use Action lists to centralize the response to user commands (actions). Action…
In this tutorial, we will learn about how to do data visualizations using Delphi’s TChart or TeeChart.
TChart is the 100% Native Data-Aware Charting Component Library for Delphi and C++ Builder (v5 and later) and all RAD Studio versions.
1.
Powerful Python For Delphi VCL vs Python GUI Generator: PAGE
March 20, 2021
Are you an expert in desktop apps and GUI development who want to also work with Python because of its simplicity, flexible use, and growing demand in the market out there? Or are you a Python Developer at any level who wants to start a GUI development journey? This article is for you.
We will review the two examples of the most powerful Python Desktop App and GUI Frameworks:Python For…
The documentation for Delphi’s VCL is available on Embarcadero’s DocWiki. You will notice that on DocWiki, all the VCL components are prefixed with a T. This is a convention of the Delphi language, but the DelphiVCL4Python module removes the T prefix for a more…
How to use the Show Method for DelphiVCL4Python Applications
March 14, 2021
We use the Show method to make a form or window visible.
Use the Show method to make visible a control that was previously hidden.
The Show method sets the control’s Visible property to true and ensures that the parent control is also visible.
Here is…
How to Change the Font Attributes
March 14, 2021
We use Font or TFont to specify the attributes of text written on or in the control.
To change to a new font, specify a new TFont object. To modify a font, change the value of the Charset, Color, Height, Name, Pitch, Size, or Style of the TFont object.
Note: Changing the font color of the Caption is not supported for some controls (such as TButton). In most cases, there is an…