-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.pas
48 lines (41 loc) · 911 Bytes
/
config.pas
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
unit config;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, ExtCtrls, StdCtrls, Filectrl, ComCtrls;
type
TForm2 = class(TForm)
PageControl1: TPageControl;
TabSheet1: TTabSheet;
TabSheet2: TTabSheet;
TabSheet3: TTabSheet;
TabSheet4: TTabSheet;
Label1: TLabel;
Label2: TLabel;
TabSheet5: TTabSheet;
Label3: TLabel;
Label4: TLabel;
Label5: TLabel;
CheckBox1: TCheckBox;
CheckBox2: TCheckBox;
Edit1: TEdit;
Edit2: TEdit;
Label6: TLabel;
Label7: TLabel;
CheckBox3: TCheckBox;
Edit3: TEdit;
RadioButton1: TRadioButton;
RadioButton2: TRadioButton;
private
{ Déclarations privées }
public
{ Déclarations publiques }
end;
var
Form2: TForm2;
startdir:string;
implementation
uses
ver1_4pas;
{$R *.dfm}
end.