📄 unit1.pas
字号:
unit Unit1;
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
StdCtrls;
type
TForm1 = class(TForm)
Label1: TLabel;
Label2: TLabel;
clientcount: TLabel;
querycount: TLabel;
private
{ Private declarations }
Nclientcount:integer;
Nquerycount:integer;
public
{ Public declarations }
procedure UpdateClientCount(inc:integer);
procedure UpdateQueryCount;
end;
var
Form1: TForm1;
implementation
{$R *.DFM}
procedure Tform1.UpdateClientCount(inc:integer);
begin
nClientCount := nClientCount + inc;
ClientCount.Caption := intTostr(nClientCount);
end;
procedure Tform1.UpdateQueryCount;
begin
nQueryCount := nQueryCount + 1;
QueryCount.Caption := intTostr(nQueryCount);
end;
end.
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -