Here comes another part of the Tkinter Python GUI tutorial series For Beginners presented by the Programming Knowledge channel. They recently made a great introduction to Tkinter, a built-in module in Python Programming knowledge that allows you to create Graphical User Interface applications. Tkinter is often praised for its simplicity and easy-to-use widgets that make it a perfect GUI toolkit…
DelphiVCL.Strings or TStrings is the base class for objects that represent a list of strings.
Use DelphiVCL.Strings or TStrings to store and manipulate a list of strings.
Descendants of TStrings can represent several individual strings, such as the individual…
DelphiVCL.DateTimePicker or TDateTimePicker displays a list box for entering dates or times.
TDateTimePicker is a visual component designed specifically for entering dates or times. It resembles a list box or combo box, except that the drop-down list is replaced with…
Python Windows App: Draw A Rectangle With delphivcl.Shape
March 27, 2021
DelphiVCL.Shape represents a geometric shape that can be drawn on a form.
Add a Shape object to a form to draw a simple geometric shape on the form. TShape introduces properties to describe the pen used to outline the shape and the brush used to fill it.
If the shape is only part of the image of custom control, use the methods of the control’s canvas instead.Browse all the properties…
DelphiVCL.ColorBox represents a combo box that lets users select a color.
Use ColorBox to provide the user with a drop-down combo box from which to select a color. Use the Style property to specify which colors the color box should list. Each color is displayed next…
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…
Learn Python With Build A Python GUI App Tutorial Video
March 24, 2021
Did you know that you can create a GUI app that can drastically improve your workflow? Well, this video will show us how! Dev Ed recently shared a video tutorial that will teach us how to create a GUI app using Python and its default GUI module ~ the Tkinter. In this new Learn Python video, he will walk us through how to build a GUI app that will automatically open other apps that we normally use.
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…