-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtimes.Designer.vb
188 lines (184 loc) · 5.46 KB
/
times.Designer.vb
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
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
<Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()> _
Partial Class times
Inherits System.Windows.Forms.Form
'Form overrides dispose to clean up the component list.
<System.Diagnostics.DebuggerNonUserCode()> _
Protected Overrides Sub Dispose(ByVal disposing As Boolean)
Try
If disposing AndAlso components IsNot Nothing Then
components.Dispose()
End If
Finally
MyBase.Dispose(disposing)
End Try
End Sub
'Required by the Windows Form Designer
Private components As System.ComponentModel.IContainer
'NOTE: The following procedure is required by the Windows Form Designer
'It can be modified using the Windows Form Designer.
'Do not modify it using the code editor.
<System.Diagnostics.DebuggerStepThrough()> _
Private Sub InitializeComponent()
Button1 = New Button()
Label1 = New Label()
TextBox1 = New TextBox()
Label2 = New Label()
Label3 = New Label()
TextBox2 = New TextBox()
TextBox3 = New TextBox()
Button2 = New Button()
Label4 = New Label()
Label5 = New Label()
Label6 = New Label()
Label7 = New Label()
Label8 = New Label()
SuspendLayout()
'
' Button1
'
Button1.Location = New Point(131, 233)
Button1.Name = "Button1"
Button1.Size = New Size(75, 23)
Button1.TabIndex = 0
Button1.Text = "Greetings"
Button1.UseVisualStyleBackColor = True
'
' Label1
'
Label1.AutoSize = True
Label1.Location = New Point(26, 44)
Label1.Name = "Label1"
Label1.Size = New Size(74, 15)
Label1.TabIndex = 1
Label1.Text = "Current time"
'
' TextBox1
'
TextBox1.Location = New Point(128, 48)
TextBox1.Name = "TextBox1"
TextBox1.Size = New Size(100, 23)
TextBox1.TabIndex = 2
'
' Label2
'
Label2.AutoSize = True
Label2.Location = New Point(562, 42)
Label2.Name = "Label2"
Label2.Size = New Size(41, 15)
Label2.TabIndex = 3
Label2.Text = "Label2"
'
' Label3
'
Label3.AutoSize = True
Label3.Location = New Point(562, 92)
Label3.Name = "Label3"
Label3.Size = New Size(41, 15)
Label3.TabIndex = 4
Label3.Text = "Label3"
'
' TextBox2
'
TextBox2.Location = New Point(646, 36)
TextBox2.Name = "TextBox2"
TextBox2.Size = New Size(100, 23)
TextBox2.TabIndex = 5
'
' TextBox3
'
TextBox3.Location = New Point(646, 92)
TextBox3.Name = "TextBox3"
TextBox3.Size = New Size(100, 23)
TextBox3.TabIndex = 6
'
' Button2
'
Button2.Location = New Point(585, 157)
Button2.Name = "Button2"
Button2.Size = New Size(75, 23)
Button2.TabIndex = 7
Button2.Text = "Result"
Button2.UseVisualStyleBackColor = True
'
' Label4
'
Label4.AutoSize = True
Label4.Location = New Point(345, 128)
Label4.Name = "Label4"
Label4.Size = New Size(29, 15)
Label4.TabIndex = 8
Label4.Text = "First"
'
' Label5
'
Label5.AutoSize = True
Label5.Location = New Point(345, 176)
Label5.Name = "Label5"
Label5.Size = New Size(46, 15)
Label5.TabIndex = 9
Label5.Text = "Second"
'
' Label6
'
Label6.AutoSize = True
Label6.Location = New Point(345, 233)
Label6.Name = "Label6"
Label6.Size = New Size(49, 15)
Label6.TabIndex = 10
Label6.Text = "Product"
'
' Label7
'
Label7.AutoSize = True
Label7.Location = New Point(350, 282)
Label7.Name = "Label7"
Label7.Size = New Size(50, 15)
Label7.TabIndex = 11
Label7.Text = "Average"
'
' Label8
'
Label8.AutoSize = True
Label8.Location = New Point(522, 296)
Label8.Name = "Label8"
Label8.Size = New Size(56, 15)
Label8.TabIndex = 12
Label8.Text = "Calculate"
'
' times
'
AutoScaleDimensions = New SizeF(7F, 15F)
AutoScaleMode = AutoScaleMode.Font
ClientSize = New Size(800, 450)
Controls.Add(Label8)
Controls.Add(Label7)
Controls.Add(Label6)
Controls.Add(Label5)
Controls.Add(Label4)
Controls.Add(Button2)
Controls.Add(TextBox3)
Controls.Add(TextBox2)
Controls.Add(Label3)
Controls.Add(Label2)
Controls.Add(TextBox1)
Controls.Add(Label1)
Controls.Add(Button1)
Name = "times"
Text = "times"
ResumeLayout(False)
PerformLayout()
End Sub
Friend WithEvents Button1 As Button
Friend WithEvents Label1 As Label
Friend WithEvents TextBox1 As TextBox
Friend WithEvents Label2 As Label
Friend WithEvents Label3 As Label
Friend WithEvents TextBox2 As TextBox
Friend WithEvents TextBox3 As TextBox
Friend WithEvents Button2 As Button
Friend WithEvents Label4 As Label
Friend WithEvents Label5 As Label
Friend WithEvents Label6 As Label
Friend WithEvents Label7 As Label
Friend WithEvents Label8 As Label
End Class