Learn PythonPythonPython GUIVideos

Learn Python With A Talk: What is Deployment, Anyway? by Katie McLaughlin (Pycon 2020) Video

If you are not familiar with Django Girls, it is a non-profit organization and a community that empowers and helps women to organize free, one-day programming workshops by providing tools, resources, and support. By the end of this workshop, participants are expected to develop and completed a Django Project. However, it should be noted that it is just the start of everything. Once you have…
Read more
DelphiDelphiVCLPythonPython GUIWindows

Learn about delphivcl.BasicAction

DelphiVCL.BasicAction is the ancestor class for all action objects. BasicAction introduces the fundamental behavior for an action. Descendants of BasicAction add functionality for containment in an action list, for being categorized, and for specializing their behavior tailored to particular clients such as controls or menu items. Use BasicAction if you want to create an action for an…
Read more
DelphiDelphiVCLPythonPython GUIWindows

Learn About delphivcl.Abort Function

DelphiVCL.Abort function is used to raise a silent exception. We use Abort to escape from an execution path without reporting an error. Abort raises a special “silent exception” (EAbort), which operates like any other exception, but does not display an error message to the end user. Abort redirects execution to the end of the last exception block. Let’s browse all the…
Read more