Learn PythonPythonPython GUIVideos

How To Make Your Data Visualization Effective

PyCon is an annual conference dedicated to the Python community. This is an important event where Pythonistas and python enthusiasts gather together for a fruitful learning experience. Despite the pandemic, PyCon 2020 was still celebrated successfully. Since large events are strictly prohibited, all the talks were presented digitally. In this video, for instance, Husni Almoubayyed will provide…
Read more
DelphiDelphiVCLPythonPython GUIWindows

Creating A New Application With DelphiVCL.Application.Create

In this post, we’ll use the Create method of the DelphiVCL.Application object, & DelphiVCL.Application.Create, to create a new VCL-based application.Do not call Create directly. Each GUI application automatically creates an instance of an application object. Learning how to do it will allow you to easily build GUIs with Python Program Maker. For DelphiVCL.Application or TApplication…
Read more
DelphiDelphiVCLPythonPython GUIWindows

What is the FindComponent Method in DelphiVCL.Application?

In this post, we’ll use the FindComponent method or DelphiVCL.Application.FindComponent to indicate whether a given component is owned by the component. Learning how to do it will allow you to easily build GUIs with Python Windows GUI Builder. FindComponent returns the component in the Components property array with the name that matches the string in the AName parameter. Use…
Read more
DelphiDelphiVCLPythonPython GUIWindows

What You Need To Know About Application.EndFunctionInvoke

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