sendtp.~dpr

来自「delphi LED 显示屏用,带串口发送,内容编辑,演示功能」· ~DPR 代码 · 共 19 行

~DPR
19
字号
program sendtp;

uses
  Forms,
  frmtp in 'frmtp.pas' {frmtpsend},
  Unit1 in 'Unit1.pas' {Form1},
  myedit in 'myedit.pas',
  fillcolor in 'fillcolor.pas' {Formfill};

{$R *.RES}

begin
  Application.Initialize;
  Application.CreateForm(Tfrmtpsend, frmtpsend);
  Application.CreateForm(TForm1, Form1);
  Application.CreateForm(TFormfill, Formfill);
  Application.Run;
end.

⌨️ 快捷键说明

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