DelphiPythonPython GUIWindows

Powerful Data Analysis And Manipulation Using Pandas Library In A Delphi Windows App

Are you looking for powerful tools to analyze and manipulate structured data, and build a nice GUI for them? You can build fast, expressive, insightful, and scalable data analysis tools easily by combining pandas and Python4Delphi library, inside Delphi and C++Builder. pandas is a Python package that provides fast, flexible, and expressive data structures designed to work with structured…
Read more
DelphiPythonPython GUIWindows

Learn To Build A Python GUI For Scientific Computing With The Scipy Library In A Delphi Windows App

If you need a Python-based ecosystem of open-source software for mathematics, science, and engineering, then Python’s SciPy (pronounced “Sigh Pie”) library is exactly what you need. You can easily run this library and give it a nice GUI using Python4Delphi (P4D). Python4Delphi is a free tool that allows you to work with Python scripts and objects, even create new Python modules and types in…
Read more
DelphiDelphiVCLPythonPython GUIWindows

Create a Multiline Edit Control on a Form using delphivcl.Memo

Description delphivcl.Memo is a wrapper for a Windows multiline edit control. We use Memo to put a standard Windows multiline edit control on a form. Multiline edit boxes allow the user to enter more than one line of text. They are appropriate for representing lengthy information. Note: Under Windows, there may be a limit of 64k of text for this control. Browse all the properties…
Read more
DelphiDelphiVCLPythonPython GUIWindows

Learn About delphivcl.SpinEdit

DelphiVCL.SpinEdit or TSpinEdit combines a TEdit box with a TSpinButton. DelphiVCL.SpinEdit component is a TEdit with a TSpinButton attached. The Value of the edit box is numerical. By pressing the up and down buttons of TSpinButton, the Value is increased or decreased. Let’s browse all the properties, methods, and built-in properties of the DelphiVCL.SpinEdit using dir()…
Read more