DelphiDelphiVCLPythonPython GUIWindows

How To Understand DelphiVCL.Application.EndInvoke

In this post, we’ll use the EndInvoke property or DelphiVCL.Application.EndInvoke to block the caller until the specified ASyncResult completes. Learning how to do it will allow you to easily create GUIs with Python Windows GUI Builder. Returns the result from the method that BeginInvoke asynchronously executes. This result is immediately returned after the given IAsyncResult…
Read more
DelphiDelphiVCLPythonPython GUIWindows

What Is The ExecuteAction Method In DelphiVCL.Application?

When the user invokes an action, a series of calls ensue to respond to that action. First, the action list that contains the action generates an OnExecute event. If the action list does not handle the OnExecute event, then the action is routed to the Application object’s ExecuteAction method, which invokes the OnActionExecute event handler. (The application’s ExecuteAction method…
Read more
DelphiPythonPython GUIWindows

Easily Build A Python GUI For Video Games and Other Multimedia Applications Using Pygame Library In A Delphi Windows App

Are you looking for an open-source library to create video games and other multimedia applications in your GUI App? This post will get you to understand how to use the pygame Python Library using Python4Delphi (P4D) in the Delphi/C++ Builder application and create interesting Aliens or Space Invaders games.  Pygame is a free and open-source cross-platform library for the development of…
Read more
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