Learn PythonPythonPython GUIVideos

Everything You Need To Create A Python GUI Using Tkinter

John Elder of Codemy.com is back to teach us how to create a really great Python GUI, graphical user interfaces, with Python and Tkinter. In case you have missed his 5-hour long full course tutorial about Tkinter, this video is actually the first part of his tutorial. If you’re not ready yet to go on a full course tutorial and you prefer to learn Tkinter step by step, this is the right video…
Read more
IDELearn PythonPython GUI

20 Things Python Desktop Absolute Beginners Need To Know

If you want to learn programming but have little to no experience, congratulations, you have come to the right place. Python is an excellent choice for the absolute beginner to get started. There are various Python desktop tools available to make the task easier, let’s take a look a selection of them now. 1. How to install Python? Obviously, you have to install python on your computer…
Read more
DelphiDelphiVCLPythonPython GUIWindows

What Is The Application.Dispatch DelphiVCL Method?

Use the Dispatch method or DelphiVCL.Application.Dispatch from the DelphiVCL library to call message-handling methods for the object, based on the contents of the Message parameter. Call Dispatch to automatically pass messages to the appropriate message handler. Dispatch determines whether a message is in the list of message handlers declared for the object. If the object does not handle the…
Read more
DelphiDelphiVCLPythonPython GUIWindows

This Is What DoApplicationIdle Does For Windows Development

The DoApplicationIdle method or DelphiVCL.Application.DoApplicationIdle is used to process messages in the Message queue for certain events as part of your Windows development. The DoApplicationIdle method forces a call to the protected method TApplication.Idle. Idle triggers the event OnIdle, processes the events OnMouseEnter and OnMouseLeave, and updates the hints. Let’s browse all the…
Read more