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

Learn About DelphiVCL.Metafile

DelphiVCL.Metafile or TMetafile is an encapsulation of the Win32 Enhanced metafile. DelphiVCL.Metafile contains a metafile graphic (EMF file format). Properties of TMetafile indicate the size and characteristics of the metafile. To draw a metafile on a canvas, call the Draw or StretchDraw methods of a TCanvas object, passing a TMetafile as a parameter. The Enhanced property…
Read more
DelphiPythonPython GUIWindows

Quickly Build A Python GUI App With Powerful Natural Language Processing Capabilities Using NLTK Library In A Delphi Windows App

Do you want to perform Natural Language Processing tasks like predicting text, analyzing & visualizing sentence structure, Sentiment Analysis, gender classification, etc. in your GUI app? This post will get you to understand how to use NLTK Python Library using Python4Delphi (P4D) in the Delphi/C++ Builder application and perform some interesting NLP tasks.  NLTK is a leading platform…
Read more