-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathVesselType.dfm
executable file
·104 lines (104 loc) · 2.22 KB
/
VesselType.dfm
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
object VesselTypeForm: TVesselTypeForm
Left = 0
Top = 0
BorderStyle = bsSingle
Caption = 'Helium Management :: Vessel Settings'
ClientHeight = 142
ClientWidth = 433
Color = clHighlightText
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = []
OldCreateOrder = False
Position = poScreenCenter
PixelsPerInch = 96
TextHeight = 13
object HeadLab: TLabel
Left = 24
Top = 18
Width = 260
Height = 15
Caption = 'Select a vessel to adapt the settings for vessel '
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = 15
Font.Name = 'Tahoma'
Font.Style = []
ParentFont = False
end
object TypeLab: TLabel
Left = 240
Top = 50
Width = 22
Height = 11
Caption = 'Type'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -9
Font.Name = 'Tahoma'
Font.Style = []
ParentFont = False
end
object NameLab: TLabel
Left = 24
Top = 50
Width = 67
Height = 11
Caption = 'Vessel (number)'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -9
Font.Name = 'Tahoma'
Font.Style = []
ParentFont = False
end
object NameCoBox: TComboBox
Left = 16
Top = 62
Width = 185
Height = 21
Style = csDropDownList
ItemHeight = 0
TabOrder = 0
end
object TypeEd: TEdit
Left = 232
Top = 62
Width = 185
Height = 21
Enabled = False
Font.Charset = ANSI_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = []
ParentFont = False
TabOrder = 1
end
object OkBtn: TButton
Left = 254
Top = 109
Width = 75
Height = 25
Caption = 'Ok'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = [fsBold]
ParentFont = False
TabOrder = 2
OnClick = OkBtnClick
end
object CancelBtn: TButton
Left = 335
Top = 109
Width = 75
Height = 25
Caption = 'Cancel'
ModalResult = 2
TabOrder = 3
end
end