-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFrmCalcularDosTiemposUnit1.dfm
121 lines (121 loc) · 2.26 KB
/
FrmCalcularDosTiemposUnit1.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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
object CalcularDosTiemposForm: TCalcularDosTiemposForm
Left = 0
Top = 0
BorderStyle = bsSizeToolWin
Caption = 'Calcular dos Tiempos'
ClientHeight = 164
ClientWidth = 560
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -16
Font.Name = 'Tahoma'
Font.Style = []
OldCreateOrder = False
Position = poMainFormCenter
PixelsPerInch = 96
TextHeight = 19
object Label1: TLabel
Left = 48
Top = 72
Width = 27
Height = 19
Caption = 'Fin:'
end
object Label2: TLabel
Left = 30
Top = 32
Width = 45
Height = 19
Caption = 'Inicio:'
end
object Label3: TLabel
Left = 304
Top = 32
Width = 59
Height = 19
Caption = 'Hora(s):'
end
object Label4: TLabel
Left = 288
Top = 72
Width = 73
Height = 19
Caption = 'Minuto(s):'
end
object Label5: TLabel
Left = 275
Top = 116
Width = 87
Height = 19
Caption = 'Segundo(s):'
end
object InicioTiempoDateTimePicker: TDateTimePicker
Left = 81
Top = 24
Width = 152
Height = 27
Date = 43180.639154675930000000
Time = 43180.639154675930000000
Kind = dtkTime
TabOrder = 0
end
object FinTiempoDateTimePicker: TDateTimePicker
Left = 81
Top = 64
Width = 152
Height = 27
Date = 43180.639154675930000000
Time = 43180.639154675930000000
Kind = dtkTime
TabOrder = 1
end
object HorasEdit: TEdit
Left = 369
Top = 29
Width = 121
Height = 27
Alignment = taCenter
Enabled = False
ReadOnly = True
TabOrder = 2
end
object MinutosEdit: TEdit
Left = 368
Top = 72
Width = 121
Height = 27
Alignment = taCenter
Enabled = False
ReadOnly = True
TabOrder = 3
end
object SegundosEdit: TEdit
Left = 368
Top = 113
Width = 121
Height = 27
Alignment = taCenter
Enabled = False
ReadOnly = True
TabOrder = 4
end
object GenerarButton: TButton
Left = 77
Top = 112
Width = 75
Height = 44
Caption = 'Generar'
TabOrder = 5
OnClick = GenerarButtonClick
end
object LimpiarButton: TButton
Left = 158
Top = 112
Width = 75
Height = 44
Caption = 'Limpiar'
TabOrder = 6
OnClick = LimpiarButtonClick
end
end