V9.0
This commit is contained in:
f1iwq2
2024-07-21 10:25:58 +02:00
parent f2cbfc2936
commit d2909cc5eb
43 changed files with 9783 additions and 3658 deletions

49
UnitInfo.pas Normal file
View File

@@ -0,0 +1,49 @@
unit UnitInfo;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, ExtCtrls, StdCtrls;
type
TFormInfo = class(TForm)
Timerinfo: TTimer;
LabelInfo: TLabel;
procedure TimerinfoTimer(Sender: TObject);
procedure FormActivate(Sender: TObject);
procedure FormCreate(Sender: TObject);
private
{ Déclarations privées }
public
{ Déclarations publiques }
end;
var
FormInfo: TFormInfo;
TickInfo : integer;
implementation
{$R *.dfm}
procedure TFormInfo.TimerinfoTimer(Sender: TObject);
begin
if TickInfo>0 then
begin
dec(TickInfo);
if TickInfo=0 then close;
end;
end;
procedure TFormInfo.FormActivate(Sender: TObject);
begin
TickInfo:=5;
end;
procedure TFormInfo.FormCreate(Sender: TObject);
begin
labelInfo.Width:=formInfo.Width-20;
end;
end.