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
DelphiDelphiVCLPythonPython GUIWindows

Learn About DelphiVCL.Image

DelphiVCL.Image or TImage displays a graphical image. Use TImage to display a graphical image on a form. Use the TPicture object in the Picture property to specify the actual bitmap, con, metafile, or other graphic object displayed by TImage. Properties and methods of TPicture can be used for such things as loading an image from a file, clearing the image in the TImage, and assigning an…
Read more