ComboBoxDemoForm.Designer.vb

 1: <Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()> _
 2: Partial Class ComboBoxDemoForm
 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.ComboBox1 = New System.Windows.Forms.ComboBox
26:         Me.SuspendLayout()
27:         '
28:         'ComboBox1
29:         '
30:         Me.ComboBox1.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.Append
31:         Me.ComboBox1.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.ListItems
32:         Me.ComboBox1.FormattingEnabled = True
33:         Me.ComboBox1.IntegralHeight = False
34:         Me.ComboBox1.Items.AddRange(New Object() {"one", "two", "three", "four", "five", "six"})
35:         Me.ComboBox1.Location = New System.Drawing.Point(23, 27)
36:         Me.ComboBox1.Name = "ComboBox1"
37:         Me.ComboBox1.Size = New System.Drawing.Size(121, 24)
38:         Me.ComboBox1.TabIndex = 2
39:         '
40:         'Form1
41:         '
42:         Me.AutoScaleDimensions = New System.Drawing.SizeF(8.0!, 16.0!)
43:         Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
44:         Me.ClientSize = New System.Drawing.Size(282, 255)
45:         Me.Controls.Add(Me.ComboBox1)
46:         Me.Name = "Form1"
47:         Me.Text = "ComboBox Demo"
48:         Me.ResumeLayout(False)
49: 
50:     End Sub
51:     Friend WithEvents ComboBox1 As System.Windows.Forms.ComboBox
52: 
53: End Class