python

  1. FireWind

    Delphi What is DelphiVCL.Application.DesignInfo?

    What is DelphiVCL.Application.DesignInfo? By Muhammad Azizul Hakim July 7, 2021 The DesignInfo property or DelphiVCL.Application.DesignInfo contains information used by the Form designer. DesignInfo is used internally. Do not use this property in applications. Let’s browse all the properties...
  2. FireWind

    Delphi What is the ExeName Property in DelphiVCL.Application?

    What is the ExeName Property in DelphiVCL.Application? By Muhammad Azizul Hakim July 6, 2021 The ExeName property or DelphiVCL.Application.ExeName contains the file name of the application’s executable file including path information. Use ExeName to obtain the name of the executable file for...
  3. FireWind

    Delphi What Is The ExecuteAction Property In DelphiVCL.Application?

    What Is The ExecuteAction Property In DelphiVCL.Application? By Muhammad Azizul Hakim July 5, 2021 Use the ExecuteAction property or DelphiVCL.Application.ExecuteAction to generate an OnActionExecute event. When the user invokes an action, a series of calls ensue to respond to that action...
  4. FireWind

    Delphi Specify the Alignment of a Control using Align or TAlign

    Specify the Alignment of a Control using Align or TAlign By Muhammad Azizul Hakim June 30, 2021 Align or TAlign is used to specify the alignment of control within its parent. TAlign specifies how control is placed relative to its parent. It can have one of the following values: Value...
  5. GuDron

    Виртуальное окружение Python

  6. FireWind

    Delphi How to use the State Property

    How to use the State Property By Muhammad Azizul Hakim June 23, 2021 State property is used as an indicator for which items are selected or checked. For example, for each member of the Items array, we use State to determine whether the checkbox is selected (cbChecked), cleared (cbUnchecked)...
  7. FireWind

    Delphi Learn To Integrate Python Cryptographic Services To A Delphi Windows GUI App

    Learn To Integrate Python Cryptographic Services To A Delphi Windows GUI App By Muhammad Azizul Hakim June 21, 2021 Python offers various built-in algorithms for cryptographic tasks. On Unix systems, the crypt module may also be available. This post will demonstrate hashlib: One of the...
  8. FireWind

    webinar: Getting to Know PyScripter: Your Native Python IDE

    webinar: Getting to Know PyScripter: Your Native Python IDE Thu, Jun 24, 2021 6:00 PM - 7:00 PM MSK While the Python command-line tools and REPL are great for working with Python, sometimes you need a little more power. That is where PyScripter comes in, giving you a huge wealth of...
  9. FireWind

    Delphi How to use the DelphiVCL.DrawGrid.Col

    How to use the DelphiVCL.DrawGrid.Col By Muhammad Azizul Hakim June 14, 2021 DelphiVCL.DrawGrid.Col specifies the index of the column that contains the selected cell. Use DelphiVCL.DrawGrid.Col at runtime to determine the current column in the grid. Setting Col moves focus to the cell in the...
  10. FireWind

    Delphi How to use the DelphiVCL.Application.Destroy Property

    How to use the DelphiVCL.Application.Destroy Property By Muhammad Azizul Hakim June 13, 2021 We use DelphiVCL.Application.Destroy to destroy the application instance and all of its associated memory. Never call DelphiVCL.Application.Destroy or DelphiVCL.Application.Free. Instead, use the...
  11. FireWind

    Delphi How to use the DelphiVCL.Application.Run Property

    How to use the DelphiVCL.Application.Run Property By Muhammad Azizul Hakim June 12, 2021 DelphiVCL.Application.Run property used to execute the application. Do not call DelphiVCL.Application.Run. In Delphi’s VCL, when creating a new project, The IDE automatically creates a main program block...
  12. FireWind

    Delphi Learn To Build A Python GUI For Programming Quantum Computers With Cirq In A Delphi Windows App

    Learn To Build A Python GUI For Programming Quantum Computers With Cirq In A Delphi Windows App By Muhammad Azizul Hakim June 10, 2021 Are you looking for an open-source framework for programming quantum computers and build a nice GUI for them? Try Cirq library for Python. And for the GUI...
  13. FireWind

    Delphi Build An Artificial Intelligence Solutions With PyTorch Library In A Delphi Windows App

    Build An Artificial Intelligence Solutions With PyTorch Library In A Delphi Windows App By Muhammad Azizul Hakim June 11, 2021 Are you looking for an end-to-end open-source machine learning and deep learning platform, and build a nice GUI for them? You can deliver enterprise-grade AI solutions...
  14. FireWind

    Delphi How to use the Title Property

    How to use the Title Property By Muhammad Azizul Hakim June 8, 2021 DelphiVCL.Application.Title Property contains the text that appears below the icon representing the application when it is minimized. We use the DelphiVCL.Application.Title property to modify the name of the text string...
  15. FireWind

    Delphi How to use the Text Property

    How to use the Text Property By Muhammad Azizul Hakim June 6, 2021 Text property contains a text string associated with the control. We use the Text property to read the Text of the control or to specify a new string for the Text value. By default, Text is the control name. For edit controls...
  16. FireWind

    Delphi Write a String inside a Clipping Rectangle using TextRect

    Write a String inside a Clipping Rectangle using TextRect By Muhammad Azizul Hakim June 2, 2021 We use TextRect to write a string inside a clipping rectangle or within a limited rectangular region. Any portions of the string that fall outside the rectangle passed in the Rect parameter are...
  17. FireWind

    Delphi OnClose Event in DelphiVCL Library

    OnClose Event in DelphiVCL Library By Muhammad Azizul Hakim June 1, 2021 OnClose event occurs when the form closes. We use OnClose to perform special processing when the form closes. The OnClose event specifies which event handler to call when a form is about to close. The handler specified...
  18. FireWind

    Delphi OnDrawCell Event in DelphiVCL Library

    OnDrawCell Event in DelphiVCL Library By Muhammad Azizul Hakim May 30, 2021 OnDrawCell event Occurs when a cell in the grid needs to be drawn. We write an OnDrawCell event handler to draw the contents of all the cells in the grid. Draw on the cell using the methods of the Canvas property. The...
  19. FireWind

    Delphi Learn ColorBoxStyles from DelphiVCL.ColorBox

    Learn ColorBoxStyles from DelphiVCL.ColorBox By Muhammad Azizul Hakim May 27, 2021 TColorBoxStyle specifies how a color box control displays its selections. The following table lists the possible values of TColorBoxStyle: Style Meaning when included cbStandardColors The color box lists...
  20. FireWind

    Delphi Discover Delphi VCL’s Available Colors

    Discover Delphi VCL’s Available Colors By Muhammad Azizul Hakim May 24, 2021 Color is used to specify the color of a Windows-only control. It is used by the Color property of many components and by several other properties that specify color values. The DelphiVCL.Graphic unit contains...