digits.dpr

来自「Controled counter delphi」· DPR 代码 · 共 19 行

DPR
19
字号
// Create BMP and JPG (and optionally GIF) from string of digits.
//
// efg, November 2000
// www.efg2.com/Lab

program Digits;

uses
  Forms,
  ScreenDigits in 'ScreenDigits.pas' {FormDigits};

{$R *.RES}

begin
  Application.Initialize;
  Application.CreateForm(TFormDigits, FormDigits);
  Application.Run;
end.

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?