Learn PythonPythonPython GUIVideos

Everything You Need For Cross Platform Development In This CRM Video

John Elder of Codemy launched a Python Tkinter GUI tutorial series that aims to teach us all the basic information of cross platform development using the Tkinter framework in Python. Interestingly, part of this series is some advanced projects that help us discover Tkinter to its full potential. One of his recent projects is a comprehensive Customer Report Management database app. In this…
Read more
DelphiDelphiVCLPythonPython GUIWindows

Learn about DelphiVCL.Application.ComponentState For Development On Windows

When performing development on Windows, the ComponentState property or DelphiVCL.Application.ComponentState is used to describe the current state of the component, indicating when a component needs to avoid certain actions. ComponentState is a set of constants defined in the TComponentState type. Components use the ComponentState property to detect states in which certain kinds of actions…
Read more
DelphiDelphiVCLPythonPython GUIWindows

What is the ClassNameIs Method in DelphiVCL.Application?

The ClassNameIs method or DelphiVCL.Application.ClassNameIs is used to determine whether an object is of a specific type when you develop windows software. ClassNameIs determines whether an object instance or class reference has a class name that matches a specified string. This is useful to query objects across modules or shared libraries. Let’s browse all the properties, methods, and…
Read more
Learn PythonPythonPython GUIVideos

Everything You Need To Create Transparent Windows With Tkinter

The best part of using the Tkinter GUI framework in Python is that you can get full control of the elements you want to add to your application. The widget-based system makes it easy to input elements and functions using a simple line of codes and commands. There are many areas to explore in Tkinter and despite the apparent simplicity, you will be surprised by the things you can do in this…
Read more