delphivcl

  1. 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...
  2. 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...
  3. 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...
  4. 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...
  5. 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...
  6. 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...
  7. 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...
  8. FireWind

    Delphi Getting Started with DelphiVCL: Simple Windows Form Example In Python

    Getting Started with DelphiVCL: Simple Windows Form Example In Python By Muhammad Azizul Hakim March 8, 2021 In essence, DelphiVCL is a wrapper that helps to create and access Delphi Objects quickly from Python. These wrappers contain container classes to extend and expose your custom events...
  9. FireWind

    Delphi Quickly Browse All Available Functions in DelphiVCL Library For Python Windows Apps

    Quickly Browse All Available Functions in DelphiVCL Library For Python Windows Apps March 7, 2021 By Muhammad Azizul Hakim To make sure that you already install the DelphiVCL Python library correctly, you can simply test it using the Python dir() command: import DelphiVCL dir(DelphiVCL) If...