-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathUnit3.pas
More file actions
45 lines (34 loc) · 1.5 KB
/
Unit3.pas
File metadata and controls
45 lines (34 loc) · 1.5 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
(******************************************************************************)
(* *)
(* Author : Uwe Schächterle (Corpsman) *)
(* *)
(* This file is part of Bitverknuepfungen *)
(* *)
(* 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 Unit3;
{$MODE ObjFPC}{$H+}
Interface
Uses
LCLIntf, LCLType, SysUtils, Classes, Graphics, Controls,
Forms, Dialogs, ComCtrls;
Type
{ TForm3 }
TForm3 = Class(TForm)
ProgressBar1: TProgressBar;
private
{ Private-Deklarationen }
public
{ Public-Deklarationen }
End;
Var
Form3: TForm3;
Implementation
{$R *.lfm}
End.