-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathunit18.pas
More file actions
61 lines (45 loc) · 1.75 KB
/
unit18.pas
File metadata and controls
61 lines (45 loc) · 1.75 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
(******************************************************************************)
(* *)
(* Author : Uwe Schächterle (Corpsman) *)
(* *)
(* This file is part of config_td *)
(* *)
(* See the file license.md, located under: *)
(* https://github.com/PascalCorpsman/Software_Licenses/blob/main/license.md *)
(* for details about the license. *)
(* *)
(* It is not allowed to change or remove this text from any *)
(* source file of the project. *)
(* *)
(******************************************************************************)
Unit Unit18;
{$MODE ObjFPC}{$H+}
Interface
Uses
Classes, SysUtils, Forms, Controls, Graphics, Dialogs, StdCtrls, ComCtrls,
ExtCtrls;
Type
{ TForm18 }
TForm18 = Class(TForm)
Label1: TLabel;
ProgressBar1: TProgressBar;
Timer1: TTimer;
Procedure FormCreate(Sender: TObject);
Procedure Timer1Timer(Sender: TObject);
private
public
End;
Var
Form18: TForm18;
Implementation
{$R *.lfm}
{ TForm18 }
Procedure TForm18.FormCreate(Sender: TObject);
Begin
caption := 'Information';
End;
Procedure TForm18.Timer1Timer(Sender: TObject);
Begin
ProgressBar1.Position := (ProgressBar1.Position + 1) Mod 100;
End;
End.