ValidationDemo2.Designer.vb
1: <Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()> _
2: Partial Class ValidateDemo2
3: Inherits System.Windows.Forms.Form
4:
5: 'Form overrides dispose to clean up the component list.
6: <System.Diagnostics.DebuggerNonUserCode()> _
7: Protected Overrides Sub Dispose(ByVal disposing As Boolean)
8: Try
9: If disposing AndAlso components IsNot Nothing Then
10: components.Dispose()
11: End If
12: Finally
13: MyBase.Dispose(disposing)
14: End Try
15: End Sub
16:
17: 'Required by the Windows Form Designer
18: Private components As System.ComponentModel.IContainer
19:
20: 'NOTE: The following procedure is required by the Windows Form Designer
21: 'It can be modified using the Windows Form Designer.
22: 'Do not modify it using the code editor.
23: <System.Diagnostics.DebuggerStepThrough()> _
24: Private Sub InitializeComponent()
25: Me.components = New System.ComponentModel.Container
26: Me.InputTextBox = New System.Windows.Forms.TextBox
27: Me.CalculateBtn = New System.Windows.Forms.Button
28: Me.ToolTip1 = New System.Windows.Forms.ToolTip(Me.components)
29: Me.ToolTip2 = New System.Windows.Forms.ToolTip(Me.components)
30: Me.ResultTextBox = New System.Windows.Forms.TextBox
31: Me.Label1 = New System.Windows.Forms.Label
32: Me.ExitBtn = New System.Windows.Forms.Button
33: Me.Label2 = New System.Windows.Forms.Label
34: Me.SuspendLayout()
35: '
36: 'InputTextBox
37: '
38: Me.InputTextBox.Location = New System.Drawing.Point(56, 49)
39: Me.InputTextBox.Name = "InputTextBox"
40: Me.InputTextBox.Size = New System.Drawing.Size(100, 20)
41: Me.InputTextBox.TabIndex = 1
42: Me.ToolTip2.SetToolTip(Me.InputTextBox, "Enter Data")
43: '
44: 'CalculateBtn
45: '
46: Me.CalculateBtn.Location = New System.Drawing.Point(71, 110)
47: Me.CalculateBtn.Name = "CalculateBtn"
48: Me.CalculateBtn.Size = New System.Drawing.Size(75, 23)
49: Me.CalculateBtn.TabIndex = 2
50: Me.CalculateBtn.Text = "&Calculate"
51: Me.ToolTip2.SetToolTip(Me.CalculateBtn, "Do something with input data")
52: Me.CalculateBtn.UseVisualStyleBackColor = True
53: '
54: 'ToolTip1
55: '
56: Me.ToolTip1.BackColor = System.Drawing.Color.Red
57: Me.ToolTip1.IsBalloon = True
58: '
59: 'ResultTextBox
60: '
61: Me.ResultTextBox.Location = New System.Drawing.Point(56, 196)
62: Me.ResultTextBox.Name = "ResultTextBox"
63: Me.ResultTextBox.ReadOnly = True
64: Me.ResultTextBox.Size = New System.Drawing.Size(100, 20)
65: Me.ResultTextBox.TabIndex = 3
66: '
67: 'Label1
68: '
69: Me.Label1.AutoSize = True
70: Me.Label1.Location = New System.Drawing.Point(53, 171)
71: Me.Label1.Name = "Label1"
72: Me.Label1.Size = New System.Drawing.Size(40, 13)
73: Me.Label1.TabIndex = 4
74: Me.Label1.Text = "Result:"
75: '
76: 'ExitBtn
77: '
78: Me.ExitBtn.DialogResult = System.Windows.Forms.DialogResult.Cancel
79: Me.ExitBtn.Location = New System.Drawing.Point(205, 227)
80: Me.ExitBtn.Name = "ExitBtn"
81: Me.ExitBtn.Size = New System.Drawing.Size(75, 23)
82: Me.ExitBtn.TabIndex = 5
83: Me.ExitBtn.Text = "E&xit"
84: Me.ExitBtn.UseVisualStyleBackColor = True
85: '
86: 'Label2
87: '
88: Me.Label2.AutoSize = True
89: Me.Label2.Location = New System.Drawing.Point(53, 21)
90: Me.Label2.Name = "Label2"
91: Me.Label2.Size = New System.Drawing.Size(33, 13)
92: Me.Label2.TabIndex = 6
93: Me.Label2.Text = "Data:"
94: '
95: 'ValidateDemo2
96: '
97: Me.AcceptButton = Me.CalculateBtn
98: Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!)
99: Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
100: Me.CancelButton = Me.ExitBtn
101: Me.ClientSize = New System.Drawing.Size(292, 262)
102: Me.Controls.Add(Me.Label2)
103: Me.Controls.Add(Me.ExitBtn)
104: Me.Controls.Add(Me.Label1)
105: Me.Controls.Add(Me.ResultTextBox)
106: Me.Controls.Add(Me.CalculateBtn)
107: Me.Controls.Add(Me.InputTextBox)
108: Me.Name = "ValidateDemo2"
109: Me.Text = "Form1"
110: Me.ResumeLayout(False)
111: Me.PerformLayout()
112:
113: End Sub
114: Friend WithEvents InputTextBox As System.Windows.Forms.TextBox
115: Friend WithEvents CalculateBtn As System.Windows.Forms.Button
116: Friend WithEvents ToolTip1 As System.Windows.Forms.ToolTip
117: Friend WithEvents ToolTip2 As System.Windows.Forms.ToolTip
118: Friend WithEvents ResultTextBox As System.Windows.Forms.TextBox
119: Friend WithEvents Label1 As System.Windows.Forms.Label
120: Friend WithEvents ExitBtn As System.Windows.Forms.Button
121: Friend WithEvents Label2 As System.Windows.Forms.Label
122:
123: End Class