DelphiPythonPython GUIWindows

Learn To Build A Python GUI For Interactive Data Visualizations Using Bokeh Library In A Delphi Windows App

With the growing demand for Data Science and Analytics skill sets, drawing graphics programmatically is a very popular task these days. Especially the need for real-time and interactive graphics. You can easily create a GUI app for interactive plots by combining the power of the Bokeh library with Python4Delphi (P4D). P4D is a free set of powerful tools that allows you to work with Python scripts…
Read more
DelphiPythonPython GUIWindows

Quickly Build A Python GUI Apps For Replacing And Extracting Keywords In Sentences Using FlashText Library In A Delphi Windows App

Do you want to perform Natural Language Processing tasks like replacing or extracting words in a text, in your GUI app? This post will get you to understand how to use FlashText Python Library using Python4Delphi (P4D) in the Delphi/C++ Builder application and perform some interesting NLP or Regular Expressions-like tasks.  FlashText is a module that can be used to replace keywords in…
Read more
DelphiDelphiVCLPythonPython GUIWindows

Learn About DelphiVCL.Application.Destroying

The Destroying method or DelphiVCL.Application.Destroying is used to indicate that the component and its owned components are about to be destroyed. Destroying sets the csDestroying flag in the ComponentState property. It then calls the Destroying method for each owned component so that its csDestroying flag is also set. If csDestroying is already set, Destroying does nothing. It is…
Read more
DelphiDelphiVCLPythonPython GUIWindows

Specifies the Default Font used by the Application using DelphiVCL.Application.DefaultFont

Use the DefaultFont property or DelphiVCL.Application.DefaultFont to specify the default font used by the application. DefaultFont specifies the default font used by the application. All newly created forms use DefaultFont if the ParentFont property is set to True. Changing DefaultFont later at run-time will trigger an update for all forms that use the parent font. Let’s browse all…
Read more