Learn PythonPythonPython GUIVideos

Learn Python With Transitioning From Developing Software to Developing People by Matthew Knapp Bachman (PyCon 2020) Video

Every employee, no matter what field you are in, always seek for career growth. In this video presented by Matthew Knapp Bachmann, we will learn how he managed to transition from developing software to developing people. Matthew will share his story of success from being an individual contributor role as an engineer to a managerial position. In this talk, Matthew will share with us some useful…
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…
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