Get Text from ComboBox : ComboBox « GUI « VB.Net Tutorial

Home
VB.Net Tutorial
1.Language Basics
2.Data Type
3.Operator
4.Statements
5.Date Time
6.Class Module
7.Development
8.Collections
9.Generics
10.Attributes
11.Event
12.LINQ
13.Stream File
14.GUI
15.GUI Applications
16.Windows Presentation Foundation
17.2D Graphics
18.I18N Internationlization
19.Reflection
20.Regular Expressions
21.Security
22.Socket Network
23.Thread
24.Windows
25.XML
26.Database ADO.net
27.Design Patterns
VB.Net
VB.Net by API
VB.Net Tutorial » GUI » ComboBox 
14.6.1.Get Text from ComboBox
Get Text from ComboBox
Imports System.Windows.Forms

public class GetComboBoxText
   public Shared Sub Main
        Application.Run(New Form1)
   End Sub
End class

Public Class Form1

    Private Sub Button1_Click(ByVal sender As System.Object, _
                              ByVal e As System.EventArgs_
                              Handles Button1.Click
        Dim Language As String

        Language = ComboBox1.Text
        If Language = "Visual Basic" Then
            MsgBox("We have a winner!")
        Else
            MsgBox(Language & " is not a bad language.")
        End If

    End Sub
End Class
Partial Public Class Form1
    Inherits System.Windows.Forms.Form

    <System.Diagnostics.DebuggerNonUserCode()> _
    Public Sub New()
        MyBase.New()

        'This call is required by the Windows Form Designer.
        InitializeComponent()

    End Sub

    'Form overrides dispose to clean up the component list.
    <System.Diagnostics.DebuggerNonUserCode()> _
    Protected Overloads Overrides Sub Dispose(ByVal disposing As Boolean)
        If disposing AndAlso components IsNot Nothing Then
            components.Dispose()
        End If
        MyBase.Dispose(disposing)
    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.Button1 = New System.Windows.Forms.Button
        Me.ComboBox1 = New System.Windows.Forms.ComboBox
        Me.SuspendLayout()
        '
        'Label1
        '
        Me.Label1.AutoSize = True
        Me.Label1.Location = New System.Drawing.Point(1322)
        Me.Label1.Name = "Label1"
        Me.Label1.Size = New System.Drawing.Size(16014)
        Me.Label1.TabIndex = 0
        Me.Label1.Text = "What's your favorite language?"
        '
        'Button1
        '
        Me.Button1.Location = New System.Drawing.Point(1370)
        Me.Button1.Name = "Button1"
        Me.Button1.Size = New System.Drawing.Size(26723)
        Me.Button1.TabIndex = 2
        Me.Button1.Text = "Evaluate my choice"
        '
        'ComboBox1
        '
        Me.ComboBox1.FormattingEnabled = True
        Me.ComboBox1.Items.AddRange(New Object() {"C++""C#""Java""Visual Basic""Cobol"})
        Me.ComboBox1.Location = New System.Drawing.Point(1343)
        Me.ComboBox1.Name = "ComboBox1"
        Me.ComboBox1.Size = New System.Drawing.Size(26721)
        Me.ComboBox1.TabIndex = 1
        '
        'Form1
        '
        Me.AutoScaleBaseSize = New System.Drawing.Size(513)
        Me.ClientSize = New System.Drawing.Size(292117)
        Me.Controls.Add(Me.ComboBox1)
        Me.Controls.Add(Me.Button1)
        Me.Controls.Add(Me.Label1)
        Me.Name = "Form1"
        Me.Text = "Form1"
        Me.ResumeLayout(False)
        Me.PerformLayout()

    End Sub
    Friend WithEvents Label1 As System.Windows.Forms.Label
    Friend WithEvents Button1 As System.Windows.Forms.Button
    Friend WithEvents ComboBox1 As System.Windows.Forms.ComboBox

End Class
14.6.ComboBox
14.6.1.Get Text from ComboBoxGet Text from ComboBox
14.6.2.Set text for ComboBoxSet text for ComboBox
14.6.3.ComboBox Selected Index Changed eventComboBox Selected Index Changed event
14.6.4.Add value to ComboBoxAdd value to ComboBox
14.6.5.ComboBox selection event and Add itemsComboBox selection event and Add items
14.6.6.Using ComboBox to select shape to drawUsing ComboBox to select shape to draw
14.6.7.ComboBox Cell rendererComboBox Cell renderer
14.6.8.Use ComboBox to control TextBox font colorUse ComboBox to control TextBox font color
14.6.9.HatchBrush Illustration by using ComboBoxHatchBrush Illustration by using ComboBox
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.