This repository has been archived by the owner on Nov 8, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Form1.Designer.vb
220 lines (215 loc) · 8.34 KB
/
Form1.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
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
<Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()> _
Partial Class Form1
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()
Me.Label1 = New System.Windows.Forms.Label()
Me.txtfname = New System.Windows.Forms.TextBox()
Me.Label2 = New System.Windows.Forms.Label()
Me.txtsnum = New System.Windows.Forms.TextBox()
Me.Label3 = New System.Windows.Forms.Label()
Me.lblTotal = New System.Windows.Forms.Label()
Me.GroupBox1 = New System.Windows.Forms.GroupBox()
Me.rdoDivision = New System.Windows.Forms.RadioButton()
Me.rdoMultiplication = New System.Windows.Forms.RadioButton()
Me.rdoSubtract = New System.Windows.Forms.RadioButton()
Me.rdoAddition = New System.Windows.Forms.RadioButton()
Me.cmdClear = New System.Windows.Forms.Button()
Me.cmdExit = New System.Windows.Forms.Button()
Me.cmdCalc = New System.Windows.Forms.Button()
Me.GroupBox1.SuspendLayout()
Me.SuspendLayout()
'
'Label1
'
Me.Label1.AutoSize = True
Me.Label1.Location = New System.Drawing.Point(21, 39)
Me.Label1.Name = "Label1"
Me.Label1.Size = New System.Drawing.Size(124, 22)
Me.Label1.TabIndex = 0
Me.Label1.Text = "First Number:"
'
'txtfname
'
Me.txtfname.Location = New System.Drawing.Point(194, 39)
Me.txtfname.Name = "txtfname"
Me.txtfname.Size = New System.Drawing.Size(154, 29)
Me.txtfname.TabIndex = 1
'
'Label2
'
Me.Label2.AutoSize = True
Me.Label2.Location = New System.Drawing.Point(21, 86)
Me.Label2.Name = "Label2"
Me.Label2.Size = New System.Drawing.Size(153, 22)
Me.Label2.TabIndex = 2
Me.Label2.Text = "Second Number:"
'
'txtsnum
'
Me.txtsnum.Location = New System.Drawing.Point(194, 83)
Me.txtsnum.Name = "txtsnum"
Me.txtsnum.Size = New System.Drawing.Size(154, 29)
Me.txtsnum.TabIndex = 3
'
'Label3
'
Me.Label3.AutoSize = True
Me.Label3.Location = New System.Drawing.Point(97, 139)
Me.Label3.Name = "Label3"
Me.Label3.Size = New System.Drawing.Size(77, 22)
Me.Label3.TabIndex = 4
Me.Label3.Text = "TOTAL:"
'
'lblTotal
'
Me.lblTotal.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
Me.lblTotal.Location = New System.Drawing.Point(194, 134)
Me.lblTotal.Name = "lblTotal"
Me.lblTotal.Size = New System.Drawing.Size(154, 32)
Me.lblTotal.TabIndex = 5
Me.lblTotal.Text = "0.00"
Me.lblTotal.TextAlign = System.Drawing.ContentAlignment.MiddleLeft
'
'GroupBox1
'
Me.GroupBox1.Controls.Add(Me.rdoDivision)
Me.GroupBox1.Controls.Add(Me.rdoMultiplication)
Me.GroupBox1.Controls.Add(Me.rdoSubtract)
Me.GroupBox1.Controls.Add(Me.rdoAddition)
Me.GroupBox1.Location = New System.Drawing.Point(12, 182)
Me.GroupBox1.Name = "GroupBox1"
Me.GroupBox1.Size = New System.Drawing.Size(193, 159)
Me.GroupBox1.TabIndex = 6
Me.GroupBox1.TabStop = False
Me.GroupBox1.Text = "Operator"
'
'rdoDivision
'
Me.rdoDivision.AutoSize = True
Me.rdoDivision.Location = New System.Drawing.Point(27, 124)
Me.rdoDivision.Name = "rdoDivision"
Me.rdoDivision.Size = New System.Drawing.Size(94, 26)
Me.rdoDivision.TabIndex = 3
Me.rdoDivision.TabStop = True
Me.rdoDivision.Text = "Division"
Me.rdoDivision.UseVisualStyleBackColor = True
'
'rdoMultiplication
'
Me.rdoMultiplication.AutoSize = True
Me.rdoMultiplication.Location = New System.Drawing.Point(27, 92)
Me.rdoMultiplication.Name = "rdoMultiplication"
Me.rdoMultiplication.Size = New System.Drawing.Size(135, 26)
Me.rdoMultiplication.TabIndex = 2
Me.rdoMultiplication.TabStop = True
Me.rdoMultiplication.Text = "Multiplication"
Me.rdoMultiplication.UseVisualStyleBackColor = True
'
'rdoSubtract
'
Me.rdoSubtract.AutoSize = True
Me.rdoSubtract.Location = New System.Drawing.Point(27, 60)
Me.rdoSubtract.Name = "rdoSubtract"
Me.rdoSubtract.Size = New System.Drawing.Size(123, 26)
Me.rdoSubtract.TabIndex = 1
Me.rdoSubtract.TabStop = True
Me.rdoSubtract.Text = "Subtraction"
Me.rdoSubtract.UseVisualStyleBackColor = True
'
'rdoAddition
'
Me.rdoAddition.AutoSize = True
Me.rdoAddition.Location = New System.Drawing.Point(27, 28)
Me.rdoAddition.Name = "rdoAddition"
Me.rdoAddition.Size = New System.Drawing.Size(97, 26)
Me.rdoAddition.TabIndex = 0
Me.rdoAddition.TabStop = True
Me.rdoAddition.Text = "Addition"
Me.rdoAddition.UseVisualStyleBackColor = True
'
'cmdClear
'
Me.cmdClear.Location = New System.Drawing.Point(224, 232)
Me.cmdClear.Name = "cmdClear"
Me.cmdClear.Size = New System.Drawing.Size(124, 33)
Me.cmdClear.TabIndex = 8
Me.cmdClear.Text = "Clear"
Me.cmdClear.UseVisualStyleBackColor = True
'
'cmdExit
'
Me.cmdExit.Location = New System.Drawing.Point(224, 271)
Me.cmdExit.Name = "cmdExit"
Me.cmdExit.Size = New System.Drawing.Size(124, 33)
Me.cmdExit.TabIndex = 9
Me.cmdExit.Text = "Exit"
Me.cmdExit.UseVisualStyleBackColor = True
'
'cmdCalc
'
Me.cmdCalc.Location = New System.Drawing.Point(224, 193)
Me.cmdCalc.Name = "cmdCalc"
Me.cmdCalc.Size = New System.Drawing.Size(124, 33)
Me.cmdCalc.TabIndex = 10
Me.cmdCalc.Text = "Calculate"
Me.cmdCalc.UseVisualStyleBackColor = True
'
'Form1
'
Me.AutoScaleDimensions = New System.Drawing.SizeF(11.0!, 22.0!)
Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
Me.ClientSize = New System.Drawing.Size(376, 457)
Me.Controls.Add(Me.cmdCalc)
Me.Controls.Add(Me.cmdExit)
Me.Controls.Add(Me.cmdClear)
Me.Controls.Add(Me.GroupBox1)
Me.Controls.Add(Me.lblTotal)
Me.Controls.Add(Me.Label3)
Me.Controls.Add(Me.txtsnum)
Me.Controls.Add(Me.Label2)
Me.Controls.Add(Me.txtfname)
Me.Controls.Add(Me.Label1)
Me.Font = New System.Drawing.Font("Arial", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.Margin = New System.Windows.Forms.Padding(6, 5, 6, 5)
Me.MaximizeBox = False
Me.MinimizeBox = False
Me.Name = "Form1"
Me.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen
Me.Text = "Simple Calculator"
Me.GroupBox1.ResumeLayout(False)
Me.GroupBox1.PerformLayout()
Me.ResumeLayout(False)
Me.PerformLayout()
End Sub
Friend WithEvents Label1 As Label
Friend WithEvents txtfname As TextBox
Friend WithEvents Label2 As Label
Friend WithEvents txtsnum As TextBox
Friend WithEvents Label3 As Label
Friend WithEvents lblTotal As Label
Friend WithEvents GroupBox1 As GroupBox
Friend WithEvents rdoDivision As RadioButton
Friend WithEvents rdoMultiplication As RadioButton
Friend WithEvents rdoSubtract As RadioButton
Friend WithEvents rdoAddition As RadioButton
Friend WithEvents cmdClear As Button
Friend WithEvents cmdExit As Button
Friend WithEvents cmdCalc As Button
End Class