python

  1. FireWind

    Delphi Create a Tabular Format with DelphiVCL.DrawGrid

    Create a Tabular Format with DelphiVCL.DrawGrid By Muhammad Azizul Hakim May 16, 2021 DelphiVCL.DrawGrid represents a grid control that displays information in column and row format. Add a DelphiVCL.DrawGrid object to a form to present arbitrary information in a tabular format. DrawGrid...
  2. GuDron

    Этический взлом на Python

    123 видеоурока по хакингу в Python
  3. FireWind

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

    Learn To Build A Python GUI For Scientific Computing With The Scipy Library In A Delphi Windows App By Muhammad Azizul Hakim May 14, 2021 If you need a Python-based ecosystem of open-source software for mathematics, science, and engineering, then Python’s SciPy (pronounced “Sigh Pie”) library...
  4. FireWind

    Delphi Add Strings to Various Components using .Items

    Add Strings to Various Components using .Items By Muhammad Azizul Hakim May 12, 2021 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...
  5. FireWind

    Delphi Create a Multiline Edit Control on a Form using DelphiVCL.Memo

    Create a Multiline Edit Control on a Form using DelphiVCL.Memo By Muhammad Azizul Hakim May 10, 2021 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...
  6. FireWind

    Delphi Create a ListBox using DelphiVCL.ListBox

    Create a ListBox using DelphiVCL.ListBox By Muhammad Azizul Hakim May 6, 2021 ListBox displays a collection of items in a scrollable list. We use ListBox to display a scrollable list of items that users can select, add, or delete. ListBox is a wrapper for the Windows listbox control. We can...
  7. FireWind

    Delphi Create an Edit Controls using DelphiVCL.Edit or TEdit

    Create an Edit Controls using DelphiVCL.Edit or TEdit By Muhammad Azizul Hakim May 2, 2021 DelphiVCL.Edit or TEdit is a wrapper for a Windows single-line edit control. We can use an Edit object to put a standard Windows edit control on a form. Edit controls are used to retrieve text that...
  8. FireWind

    Delphi Display Text on a Form using DelphiVCL.Label or TLabel

    Display Text on a Form using DelphiVCL.Label or TLabel By Muhammad Azizul Hakim May 1, 2021 DelphiVCL.Label or TLabel is a non-windowed control that displays text on a form. Use Label to add text that the user cannot edit on a form. This text can be used to label another control and can set...
  9. FireWind

    RAD Studio Create a Specific Component using DelphiVCL.CreateComponent

    Create a Specific Component using DelphiVCL.CreateComponent By Muhammad Azizul Hakim April 27, 2021 DelphiVCL.CreateComponent is a function to create a specified component. We call CreateComponent to create an instance of ComponentClass at the position specified by the Left and Top parameters...
  10. FireWind

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

    Quickly Build A Python GUI App With Powerful Natural Language Processing Capabilities Using NLTK Library In A Delphi Windows App By Muhammad Azizul Hakim April 17, 2021 Do you want to perform Natural Language Processing tasks like predicting text, analyzing & visualizing sentence structure...
  11. FireWind

    RAD Studio Learn To Build A Python GUI For Manipulating Date, Time, And Timestamps Using Arrow Library In A Delphi Windows App

    Learn To Build A Python GUI For Manipulating Date, Time, And Timestamps Using Arrow Library In A Delphi Windows App By Muhammad Azizul Hakim April 15, 2021 Are you looking for powerful tools to manipulate or format dates, times, and timestamps, and build a nice GUI for them? You can build it...
  12. FireWind

    Delphi Fill Solid Shapes With .Brush

    Fill Solid Shapes With .Brush By Muhammad Azizul Hakim April 14, 2021 .Brush represents the color and pattern used to fill solid shapes. Brush encapsulates the Windows brush object (HBRUSH) and is used to fill solid shapes, such as rectangles and ellipses, with a color or pattern. Here is...
  13. FireWind

    Delphi Decipher the DelphiVCL.Application

    Decipher the DelphiVCL.Application By Muhammad Azizul Hakim April 9, 2021 DelphiVCL.Application is the type used for a GUI windowed application. Application encapsulates a windowed application. The methods and properties introduced in the Application reflect the fundamentals established in the...
  14. FireWind

    Delphi Create A Drawing Space Using DelphiVCL.Canvas

    Create A Drawing Space Using DelphiVCL.Canvas By Muhammad Azizul Hakim April 13, 2021 DelphiVCL.Canvas provides an abstract drawing space for objects that must render their own images. Use DelphiVCL.Canvas as a drawing surface for objects that draw an image of themselves. Standard window...
  15. FireWind

    RAD Studio How To Use The CanSelect Parameter

    How To Use The CanSelect Parameter By Muhammad Azizul Hakim April 3, 2021 CanSelect parameter is included inside the OnSelectCell event handler, while OnSelectCell occurs before a cell in the grid is selected. Write an OnSelectCell event handler to specify whether any particular cell in the...
  16. FireWind

    Delphi Store And Manipulate Strings With DelphiVCL.Strings Or TStrings In Python

    Store And Manipulate Strings With DelphiVCL.Strings Or TStrings In Python By Muhammad Azizul Hakim March 29, 2021 DelphiVCL.Strings or TStrings is the base class for objects that represent a list of strings. Use DelphiVCL.Strings or TStrings to store and manipulate a list of strings...
  17. FireWind

    Delphi Python Windows App: Draw A Rectangle With DelphiVCL.Shape

    Python Windows App: Draw A Rectangle With DelphiVCL.Shape By Muhammad Azizul Hakim March 27, 2021 DelphiVCL.Shape represents a geometric shape that can be drawn on a form. Add a Shape object to a form to draw a simple geometric shape on the form. TShape introduces properties to describe the...
  18. FireWind

    Delphi Python GUI: Create A ComboBox To Select A Color With DelphiVCL.ColorBox

    Python GUI: Create A ComboBox To Select A Color With DelphiVCL.ColorBox By Muhammad Azizul Hakim March 26, 2021 DelphiVCL.ColorBox represents a combo box that lets users select a color. Use ColorBox to provide the user with a drop-down combo box from which to select a color. Use the Style...
  19. FireWind

    Delphi Compare Python For Delphi VCL vs Dear PyGUI For Windows Apps

    Compare Python For Delphi VCL vs Dear PyGUI For Windows Apps By Muhammad Azizul Hakim March 13, 2021 Are you an expert in desktop apps and GUI development who want to also work with Python because of its simplicity, flexible use, and growing demand in the market out there? Or are you a Python...
  20. FireWind

    Delphi Python: Getting Started with DelphiVCL II: Breakdown The Form Components

    Python: Getting Started with DelphiVCL II: Breakdown The Form Components By Muhammad Azizul Hakim March 10, 2021 This Section will break down the code example to create a simple Form app as presented in Section 5. These steps are essential for Python Developers to be familiar with Delphi VCL...