emonth.~pas
来自「串口监控程序,可与UPS进行通信,适合初学者使用」· ~PAS 代码 · 共 37 行
~PAS
37 行
unit emonth;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, StdCtrls, Buttons, RzButton;
type
Tfemonth = class(TForm)
RzButton5: TRzButton;
Edit1: TEdit;
BitBtn1: TBitBtn;
BitBtn2: TBitBtn;
GroupBox1: TGroupBox;
Memo1: TMemo;
procedure RzButton5Click(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;
var
femonth: Tfemonth;
implementation
{$R *.dfm}
procedure Tfemonth.RzButton5Click(Sender: TObject);
begin
close;
end;
end.
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?