-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEve.Designer.vb
106 lines (102 loc) · 3.12 KB
/
Eve.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
<Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()> _
Partial Class Eve
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()
Label1 = New Label()
Label2 = New Label()
TextBox1 = New TextBox()
Label3 = New Label()
TextBox2 = New TextBox()
Button1 = New Button()
SuspendLayout()
'
' Label1
'
Label1.AutoSize = True
Label1.Location = New Point(252, 106)
Label1.Name = "Label1"
Label1.Size = New Size(56, 15)
Label1.TabIndex = 0
Label1.Text = "Calculate"
'
' Label2
'
Label2.AutoSize = True
Label2.Location = New Point(69, 209)
Label2.Name = "Label2"
Label2.Size = New Size(28, 15)
Label2.TabIndex = 1
Label2.Text = "Age"
'
' TextBox1
'
TextBox1.Location = New Point(153, 206)
TextBox1.Name = "TextBox1"
TextBox1.Size = New Size(100, 23)
TextBox1.TabIndex = 2
'
' Label3
'
Label3.AutoSize = True
Label3.Location = New Point(555, 40)
Label3.Name = "Label3"
Label3.Size = New Size(33, 15)
Label3.TabIndex = 3
Label3.Text = "Time"
'
' TextBox2
'
TextBox2.Location = New Point(615, 37)
TextBox2.Name = "TextBox2"
TextBox2.Size = New Size(100, 23)
TextBox2.TabIndex = 4
'
' Button1
'
Button1.Location = New Point(614, 107)
Button1.Name = "Button1"
Button1.Size = New Size(75, 23)
Button1.TabIndex = 5
Button1.Text = "Greetings"
Button1.UseVisualStyleBackColor = True
'
' Eve
'
AutoScaleDimensions = New SizeF(7F, 15F)
AutoScaleMode = AutoScaleMode.Font
ClientSize = New Size(800, 450)
Controls.Add(Button1)
Controls.Add(TextBox2)
Controls.Add(Label3)
Controls.Add(TextBox1)
Controls.Add(Label2)
Controls.Add(Label1)
Name = "Eve"
Text = "Eve"
ResumeLayout(False)
PerformLayout()
End Sub
Friend WithEvents Label1 As Label
Friend WithEvents Label2 As Label
Friend WithEvents TextBox1 As TextBox
Friend WithEvents Label3 As Label
Friend WithEvents TextBox2 As TextBox
Friend WithEvents Button1 As Button
End Class