Python GUI

The Top 4 Python Development Tools You Need To Know About

There are various tools for writing, developing and running Python code, from interactive mode to full-featured IDE software such as PyScripter and the excellent RAD Studio. In this article I will give a complete overview introduction of the tools that I have used myself to write great Python apps over the years. What is the simplest way to run Python code? The quickest way to run Python…
Read more
DelphiDelphiVCLPythonPython GUIWindows

What Are Bi-Directional Properties In DelphiVCL Applications?

What is Bi-Directional (BiDi)? Some languages do not follow the left to right reading order commonly found in Western languages, but rather use the right to left reading order for words and the left to right reading order for numbers. These languages are termed bi-directional (BiDi) because of this separation. The most common bi-directional languages are Arabic and Hebrew, although other Middle…
Read more
DelphiDelphiVCLPythonPython GUIWindows

This Is How The OnGetMainFormHandle Event Works

For development on Windows OnGetMainFormHandle or DelphiVCL.Application.OnGetMainFormHandle is the event triggered when reading the value of the MainFormHandle property. Let’s take a look at all of DelphiVCL.Application.OnGetMainFormHandle properties and methods: import DelphiVCL dir(DelphiVCL.Application.OnGetMainFormHandle) See the responses in our Windows command…
Read more
DelphiDelphiVCLPythonPython GUIWindows

What You Need To Know About The Observers Property

In windows app development, the Observers or DelphiVCL.Application.Observers property indicates the TObservers object added to the TComponent. Observers is a read-only property that returns the TObservers added to the TComponent, in order to use the notifications provided by the observers either with LiveBindings or for the developers’ own purposes. Let’s browse all the properties…
Read more