Learn PythonPythonPython GUI

What You Need To Enable Drag and Drop For Images In Your App

One of the key user interface paradigms when you develop Windows software is the ability for users to interact with objects on the screen with their mouse. Most often this means being able to click things but over time the concept of being able to drag – and drop – items has become a common capability. It enables users to be able to do things like reorder lists, add items to selections…
Read more
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 Is The Lines Property And How Do I Use It?

The Lines Property contains the individual lines of text in the memo control. This works for native Windows development. We use Lines to manipulate text in a memo control on a line-by-line basis. Lines is a DelphiVCL.Strings or TStrings object, so the TStrings methods may be used for Lines to perform manipulations such as counting the lines of text, adding new lines, deleting lines, or…
Read more
Python GUI

This Is The Beginner's Guide to Python GUI Tools

Since its introduction, Python has emerged as one of the most powerful programming technologies. Its simple syntax and robust object-oriented nature have made it a favorite among different developer communities. Today, teams can rely on Python whether they are carrying out…
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