主要用到 DELPHI XE 10.2新增HASH函数 class function TUtils.GetStringMD5(const AInPut: string): string; begin Result := THashMD5.GetHashString(AInPut).ToLower; ...……
unit Unit1;
interface
uses
Winapi.Windows,Winapi.Messages,System.SysUtils,System.Variants,System.Classes,Vcl.Graphics,
Vcl.Controls,Vcl.Forms,Vcl.Dialogs,Vcl.OleCtrls,SHDocVw,Vcl.StdCtrls;
type
TForm1……
Jon L. Aasenden
Calling node.js from Delphi
Jon Lennart Aasenden
6 months ago
We got a good question about how to start a node.js program from Delphi on our Facebook group today (third one in ...……
TList
TList stores an array of pointers.
Unit
Classes
Description
TList, which stores an array of pointers, is often used to maintain lists of objects. TList introduces properties and methods to
Add o……