Learn PythonPythonPython GUIVideos

Learn Python With AsyncIO + Music by Lukasz Langa (PyCon 2020) Video

We just learned from the previous PyCon 2020 videos that you can use Python to teach computers how to write poetry with style so it is not really surprising to see many other interesting usages of this programming language. In this video presented by Lukasz Langa, we will discover how Python can help musicians to play musical instruments! Yes, you read that right! Python can also be used to…
Read more
Learn PythonPythonPython GUIVideos

Learn Python With Master the Basics of Tkinter - Full Tkinter Programming Course Video

If you are planning to create your first Graphical User Interface application, the first thing you must consider is to pick the right GUI framework. There are many available GUI frameworks to choose from including PyQT5, Kivy, PyForms, and WxPython. However, when it comes to simplicity and ease of use, the Tkinter is by far the best and most practical option for beginners. In this video…
Read more
DelphiDelphiVCLLearn PythonPythonPython GUIWindows

Learn about DelphiVCL.CustomControl

DelphiVCL.CustomControl is a base class for controls that wrap Windows screen objects but perform their own rendering. In most descendants of TWinControl, the job of drawing the control’s surface belongs to the underlying Windows screen object. If a control has visible features that cannot be rendered by a Windows screen object, it requires access to a canvas object so it can do its own…
Read more
DelphiDelphiVCLLearn PythonPythonPython GUIWindows

Create a Very Basic Empty Form using delphivcl.Form

delphivcl.Form represents a standard application window (form). Forms can represent the application’s main window, or dialog boxes, or MDI children. A form can contain other objects, such as Button, CheckBox, and ComboBox objects. You can see all the properties, methods, and built-in properties of the delphivcl.Form using dir() command: import delphivcl dir(delphivcl.Form) See the…
Read more