DelphiDelphiVCLPythonPython GUIWindows

More On Built-In Function Objects Inside DelphiVCL Library (Part 3)

When running dir() to DelphiVCL library or any DelphiVCL methods and properties in all previous sections, you might find many of Python’s built-in objects and properties. Previously, we already discussed about  __doc__, __file__, __loader__, __name__, __package__,__spec__, __class__, __contains__, __delattr__, __dir__, __eq__, __format__, __ge__, __getattribute__, __getitem__, __gt__, __hash…
Read more
DelphiDelphiVCLPythonPython GUIWindows

Create a Main Panel using delphivcl.Panel or TPanel

delphivcl.Panel or TPanel implements a generic panel control. We can use TPanel to put an empty panel on a form. Panels have properties for providing a beveled border around the control, as well as methods to help manage the placement of child controls embedded in the panel. You can also use panels to group controls together, similar to the way you can use a group box, but with a beveled…
Read more
DelphiDelphiVCLPythonPython GUIWindows

Learn About DelphiVCL.Notebook or TNotebook

DelphiVCL.Notebook or TNotebook displays multiple pages, each with its own set of controls. Notebook components are frequently used with tab set controls (TTabSet) to let the user select pages in the notebook by clicking a tab. TNotebook is provided for backward compatibility. New applications should use TPageControl instead. Let’s browse all the properties, methods, and built-in…
Read more
Learn PythonPythonPython GUIVideos

Learn Python With 9 Years of PyLadies: Lessons Learned and What Comes Next by Lorena Mesa, Elaine Wong, and Mariatta (PyCon 2020) Video

There is definitely no gender when it comes to programming. Interestingly, there is a growing number of female programmers today. PyLadies, for instance, has come a long way ever since the organization was established in 2011. In this video from the recently concluded PyCon 2020, we will learn more about the interesting history of PyLadies and their incredible milestone all through the years. In…
Read more