DelphiPythonPython GUIWindows

Learn To Build A Python GUI For Web Scraping Using BeautifulSoup Library In A Delphi Windows App

Are you looking for tools to build website scrapers to automate your data collecting process, and build a nice GUI for them? You can build scalable web scrapers easily by combining BeautifulSoup and Python4Delphi library, inside Delphi and C++Builder. BeautifulSoup is a library that makes it easy to scrape information from web pages. It sits atop an HTML or XML parser, providing Pythonic…
Read more
DelphiDelphiVCLPythonPython GUIWindows

Add Strings to Various Components using .Items

In previous examples, we already use .Items several times (see Getting Started with DelphiVCL III: Overview of Commonly used VCL Components). We use it in ListBox, ComboBox, and RadioGroup. Items contain the strings that appear in the ListBox, ComboBox, and RadioGroup. Use Items to add, insert, delete and move items. By default, the items in a list box are of type Strings. Use this item type to…
Read more
DelphiDelphiVCLPythonPython GUIWindows

Learn About DelphiVCL.Splitter

DelphiVCL.Splitter or TSplitter divides the client area of a form into resizable panes. Add a splitter to a form between two aligned controls to allow users to resize the controls at runtime. The splitter sits between a control aligned to one edge of the form and the controls that fill up the rest of the client area. Give the splitter the same alignment as the control that is anchored to…
Read more
DelphiDelphiVCLPythonPython GUIWindows

Learn About TGridDrawState for GUI Development with Python’s DelphiVCL

TGridDrawState represents information useful when rendering the cell of a grid. TGridDrawState represents state information about the cell of a grid that is being rendered. It is a set that includes one or more of the states listed in the following table: Value Meaning gdSelected The cell is currently selected. gdFocused The cell has input…
Read more