-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathuAddTable.dfm
More file actions
151 lines (151 loc) · 2.6 KB
/
Copy pathuAddTable.dfm
File metadata and controls
151 lines (151 loc) · 2.6 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
object FormAddTable: TFormAddTable
Left = 426
Top = 314
BorderIcons = [biSystemMenu]
BorderStyle = bsSingle
Caption = 'New table'
ClientHeight = 103
ClientWidth = 375
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = []
OldCreateOrder = False
Position = poScreenCenter
OnActivate = FormActivate
PixelsPerInch = 96
TextHeight = 13
object Label1: TLabel
Left = 8
Top = 16
Width = 27
Height = 13
Caption = 'Rows'
end
object Label2: TLabel
Left = 8
Top = 40
Width = 40
Height = 13
Caption = 'Columns'
end
object Label3: TLabel
Left = 136
Top = 16
Width = 31
Height = 13
Caption = 'Border'
end
object Label4: TLabel
Left = 248
Top = 16
Width = 57
Height = 13
Caption = 'Border color'
end
object Label5: TLabel
Left = 248
Top = 40
Width = 58
Height = 26
Alignment = taRightJustify
Caption = 'Background'#13#10'color'
end
object EditRows: TEdit
Left = 64
Top = 8
Width = 41
Height = 21
TabOrder = 0
Text = '2'
end
object EditCols: TEdit
Left = 64
Top = 40
Width = 41
Height = 21
TabOrder = 1
Text = '2'
end
object UpDownRows: TUpDown
Left = 105
Top = 8
Width = 16
Height = 21
Associate = EditRows
Min = 1
Max = 10
Position = 2
TabOrder = 2
end
object UpDownCols: TUpDown
Left = 105
Top = 40
Width = 16
Height = 21
Associate = EditCols
Max = 10
Position = 2
TabOrder = 3
end
object ButtonOK: TButton
Left = 296
Top = 72
Width = 75
Height = 25
Caption = 'OK'
TabOrder = 4
OnClick = ButtonOKClick
end
object EditBorder: TEdit
Left = 176
Top = 8
Width = 49
Height = 21
TabOrder = 5
Text = '1'
end
object UpDownBorder: TUpDown
Left = 225
Top = 8
Width = 16
Height = 21
Associate = EditBorder
Max = 10
Position = 1
TabOrder = 6
end
object PanelBorderColor: TPanel
Left = 312
Top = 8
Width = 57
Height = 25
Color = clBlack
TabOrder = 7
OnClick = PanelBorderColorClick
end
object PanelBackGrColor: TPanel
Left = 312
Top = 40
Width = 57
Height = 25
Color = clWhite
TabOrder = 8
OnClick = PanelBackGrColorClick
end
object Button1: TButton
Left = 8
Top = 72
Width = 73
Height = 25
Caption = 'Default'
TabOrder = 9
OnClick = Button1Click
end
object ColorDialog1: TColorDialog
Left = 200
Top = 40
end
end