DataTable.Columns.Add : DataTable « System.Data « VB.Net by API

Home
VB.Net by API
1.Microsoft.VisualBasic
2.Microsoft.Win32
3.System
4.System.Collections
5.System.Collections.Generic
6.System.Collections.Specialized
7.System.ComponentModel
8.System.Configuration.ConfigurationSettings
9.System.Data
10.System.Data.Odbc
11.System.Data.OleDb
12.System.Data.OracleClient
13.System.Data.SqlClient
14.System.Diagnostics
15.System.Drawing
16.System.Drawing.Drawing2D
17.System.Drawing.Imaging
18.System.Drawing.Printing
19.System.Drawing.Text
20.System.Globalization
21.System.IO
22.System.IO.IsolatedStorage
23.System.IO.Ports
24.System.Media
25.System.Messaging
26.System.Net
27.System.Net.Sockets
28.System.Reflection
29.System.Runtime.InteropServices
30.System.Runtime.Remoting.Channels
31.System.Runtime.Serialization
32.System.Runtime.Serialization.Formatters.Binary
33.System.Runtime.Serialization.Formatters.Soap
34.System.Security.Cryptography
35.System.Security.Cryptography.X509Certificates
36.System.Security.Permissions
37.System.Security.Principal
38.System.ServiceProcess
39.System.Text
40.System.Text.RegularExpressions
41.System.Threading
42.System.Web
43.System.Web.Mail
44.System.Windows.Forms
45.System.Xml
46.System.Xml.Schema
47.System.Xml.Serialization
48.System.Xml.Xsl
VB.Net
VB.Net Tutorial
VB.Net by API » System.Data » DataTable 
DataTable.Columns.Add
  

Imports System.Data
Imports System.Data.OleDb
Imports System.Windows.Forms

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



Public Class Form1
    ' The data source.
    Private m_ContactsTable As DataTable

    ' The data source's CurrencyManager.
    Private m_CurrencyManager As CurrencyManager

    Private Sub Form1_Load(ByVal sender As System.Object, _
     ByVal e As System.EventArgsHandles MyBase.Load
        ' Make a DataTable.
        m_ContactsTable = New DataTable("Contacts")

        ' Add columns.
        m_ContactsTable.Columns.Add("FirstName", GetType(String))
        m_ContactsTable.Columns.Add("LastName", GetType(String))
        m_ContactsTable.Columns.Add("Street", GetType(String))
        m_ContactsTable.Columns.Add("City", GetType(String))
        m_ContactsTable.Columns.Add("State", GetType(String))
        m_ContactsTable.Columns.Add("Zip", GetType(String))

        ' Make the combined FirstName/LastName unique.
        Dim first_last_columns() As DataColumn = _
            m_ContactsTable.Columns("FirstName"), _
            m_ContactsTable.Columns("LastName"_
        }
        m_ContactsTable.Constraints.Add_
            New UniqueConstraint(first_last_columns))

        ' Make some contact data.
        m_ContactsTable.Rows.Add(New Object() {"A""B","C""D""E""11111"})
        m_ContactsTable.Rows.Add(New Object() {"F""G","H""I""J""22222"})
        m_ContactsTable.Rows.Add(New Object() {"K""L","M""N""O""33333"})
        m_ContactsTable.Rows.Add(New Object() {"P""Q","R""S""T""44444"})
        m_ContactsTable.Rows.Add(New Object() {"U""V","W""X""Y""55555"})
        m_ContactsTable.Rows.Add(New Object() {"Z""A","B""C""D""66666"})
        m_ContactsTable.Rows.Add(New Object() {"E""F","G""H""I""77777"})
        m_ContactsTable.Rows.Add(New Object() {"J""K","L""M""N""88888"})

        ' Bind to controls.
        txtFirstName.DataBindings.Add("Text", m_ContactsTable, "FirstName")
        txtLastName.DataBindings.Add("Text", m_ContactsTable, "LastName")
        txtStreet.DataBindings.Add("Text", m_ContactsTable, "Street")
        txtCity.DataBindings.Add("Text", m_ContactsTable, "City")
        txtState.DataBindings.Add("Text", m_ContactsTable, "State")
        txtZip.DataBindings.Add("Text", m_ContactsTable, "Zip")

        ' Save a reference to the CurrencyManager.
        m_CurrencyManager = _
            DirectCast(Me.BindingContext(m_ContactsTable), CurrencyManager)
    End Sub

    Private Sub btnFirst_Click(ByVal sender As System.Object, _
     ByVal e As System.EventArgsHandles btnFirst.Click
        m_CurrencyManager.Position = 0
    End Sub

    Private Sub btnPrev_Click(ByVal sender As System.Object, _
     ByVal e As System.EventArgsHandles btnPrev.Click
        m_CurrencyManager.Position -= 1
    End Sub

    Private Sub btnNext_Click(ByVal sender As System.Object, _
     ByVal e As System.EventArgsHandles btnNext.Click
        m_CurrencyManager.Position += 1
    End Sub

    Private Sub btnLast_Click(ByVal sender As System.Object, _
     ByVal e As System.EventArgsHandles btnLast.Click
        m_CurrencyManager.Position = m_CurrencyManager.Count - 1
    End Sub

    ' Add a new record.
    Private Sub btnAdd_Click(ByVal sender As System.Object, _
     ByVal e As System.EventArgsHandles btnAdd.Click
        m_CurrencyManager.AddNew()
    End Sub

    Private Sub btnDelete_Click(ByVal sender As System.Object, _
     ByVal e As System.EventArgsHandles btnDelete.Click
        If MsgBox("Are you sure you want to delete this record?", _
            MsgBoxStyle.Question Or MsgBoxStyle.YesNo, _
            "Confirm Delete?"= MsgBoxResult.Yes _
        Then
            m_CurrencyManager.RemoveAt(m_CurrencyManager.Position)
        End If
    End Sub
End Class
<Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()> _
Partial Public Class Form1
    Inherits System.Windows.Forms.Form

    '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.Label6 = New System.Windows.Forms.Label
        Me.Label5 = New System.Windows.Forms.Label
        Me.Label4 = New System.Windows.Forms.Label
        Me.Label3 = New System.Windows.Forms.Label
        Me.Label2 = New System.Windows.Forms.Label
        Me.Label1 = New System.Windows.Forms.Label
        Me.btnDelete = New System.Windows.Forms.Button
        Me.btnAdd = New System.Windows.Forms.Button
        Me.btnLast = New System.Windows.Forms.Button
        Me.btnNext = New System.Windows.Forms.Button
        Me.btnPrev = New System.Windows.Forms.Button
        Me.btnFirst = New System.Windows.Forms.Button
        Me.txtZip = New System.Windows.Forms.TextBox
        Me.txtState = New System.Windows.Forms.TextBox
        Me.txtCity = New System.Windows.Forms.TextBox
        Me.txtStreet = New System.Windows.Forms.TextBox
        Me.txtLastName = New System.Windows.Forms.TextBox
        Me.txtFirstName = New System.Windows.Forms.TextBox
        Me.SuspendLayout()
        '
        'Label6
        '
        Me.Label6.AutoSize = True
        Me.Label6.Location = New System.Drawing.Point(176104)
        Me.Label6.Name = "Label6"
        Me.Label6.Size = New System.Drawing.Size(2213)
        Me.Label6.TabIndex = 35
        Me.Label6.Text = "Zip"
        '
        'Label5
        '
        Me.Label5.AutoSize = True
        Me.Label5.Location = New System.Drawing.Point(8104)
        Me.Label5.Name = "Label5"
        Me.Label5.Size = New System.Drawing.Size(3213)
        Me.Label5.TabIndex = 34
        Me.Label5.Text = "State"
        '
        'Label4
        '
        Me.Label4.AutoSize = True
        Me.Label4.Location = New System.Drawing.Point(880)
        Me.Label4.Name = "Label4"
        Me.Label4.Size = New System.Drawing.Size(2413)
        Me.Label4.TabIndex = 33
        Me.Label4.Text = "City"
        '
        'Label3
        '
        Me.Label3.AutoSize = True
        Me.Label3.Location = New System.Drawing.Point(856)
        Me.Label3.Name = "Label3"
        Me.Label3.Size = New System.Drawing.Size(3513)
        Me.Label3.TabIndex = 32
        Me.Label3.Text = "Street"
        '
        'Label2
        '
        Me.Label2.AutoSize = True
        Me.Label2.Location = New System.Drawing.Point(832)
        Me.Label2.Name = "Label2"
        Me.Label2.Size = New System.Drawing.Size(5813)
        Me.Label2.TabIndex = 31
        Me.Label2.Text = "Last Name"
        '
        'Label1
        '
        Me.Label1.AutoSize = True
        Me.Label1.Location = New System.Drawing.Point(88)
        Me.Label1.Name = "Label1"
        Me.Label1.Size = New System.Drawing.Size(5713)
        Me.Label1.TabIndex = 30
        Me.Label1.Text = "First Name"
        '
        'btnDelete
        '
        Me.btnDelete.Location = New System.Drawing.Point(240144)
        Me.btnDelete.Name = "btnDelete"
        Me.btnDelete.Size = New System.Drawing.Size(3224)
        Me.btnDelete.TabIndex = 29
        Me.btnDelete.Text = "X"
        '
        'btnAdd
        '
        Me.btnAdd.Location = New System.Drawing.Point(200144)
        Me.btnAdd.Name = "btnAdd"
        Me.btnAdd.Size = New System.Drawing.Size(3224)
        Me.btnAdd.TabIndex = 28
        Me.btnAdd.Text = "+"
        '
        'btnLast
        '
        Me.btnLast.Location = New System.Drawing.Point(104144)
        Me.btnLast.Name = "btnLast"
        Me.btnLast.Size = New System.Drawing.Size(3224)
        Me.btnLast.TabIndex = 27
        Me.btnLast.Text = ">>"
        '
        'btnNext
        '
        Me.btnNext.Location = New System.Drawing.Point(72144)
        Me.btnNext.Name = "btnNext"
        Me.btnNext.Size = New System.Drawing.Size(3224)
        Me.btnNext.TabIndex = 26
        Me.btnNext.Text = ">"
        '
        'btnPrev
        '
        Me.btnPrev.Location = New System.Drawing.Point(40144)
        Me.btnPrev.Name = "btnPrev"
        Me.btnPrev.Size = New System.Drawing.Size(3224)
        Me.btnPrev.TabIndex = 25
        Me.btnPrev.Text = "<"
        '
        'btnFirst
        '
        Me.btnFirst.Location = New System.Drawing.Point(8144)
        Me.btnFirst.Name = "btnFirst"
        Me.btnFirst.Size = New System.Drawing.Size(3224)
        Me.btnFirst.TabIndex = 24
        Me.btnFirst.Text = "<<"
        '
        'txtZip
        '
        Me.txtZip.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Left_
                    Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
        Me.txtZip.Location = New System.Drawing.Point(200104)
        Me.txtZip.Name = "txtZip"
        Me.txtZip.Size = New System.Drawing.Size(7220)
        Me.txtZip.TabIndex = 23
        '
        'txtState
        '
        Me.txtState.Location = New System.Drawing.Point(72104)
        Me.txtState.Name = "txtState"
        Me.txtState.Size = New System.Drawing.Size(3220)
        Me.txtState.TabIndex = 22
        '
        'txtCity
        '
        Me.txtCity.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Left_
                    Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
        Me.txtCity.Location = New System.Drawing.Point(7280)
        Me.txtCity.Name = "txtCity"
        Me.txtCity.Size = New System.Drawing.Size(20020)
        Me.txtCity.TabIndex = 21
        '
        'txtStreet
        '
        Me.txtStreet.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Left_
                    Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
        Me.txtStreet.Location = New System.Drawing.Point(7256)
        Me.txtStreet.Name = "txtStreet"
        Me.txtStreet.Size = New System.Drawing.Size(20020)
        Me.txtStreet.TabIndex = 20
        '
        'txtLastName
        '
        Me.txtLastName.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Left_
                    Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
        Me.txtLastName.Location = New System.Drawing.Point(7232)
        Me.txtLastName.Name = "txtLastName"
        Me.txtLastName.Size = New System.Drawing.Size(20020)
        Me.txtLastName.TabIndex = 19
        '
        'txtFirstName
        '
        Me.txtFirstName.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Left_
                    Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
        Me.txtFirstName.Location = New System.Drawing.Point(728)
        Me.txtFirstName.Name = "txtFirstName"
        Me.txtFirstName.Size = New System.Drawing.Size(20020)
        Me.txtFirstName.TabIndex = 18
        '
        'Form1
        '
        Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!)
        Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
        Me.ClientSize = New System.Drawing.Size(278175)
        Me.Controls.Add(Me.Label6)
        Me.Controls.Add(Me.Label5)
        Me.Controls.Add(Me.Label4)
        Me.Controls.Add(Me.Label3)
        Me.Controls.Add(Me.Label2)
        Me.Controls.Add(Me.Label1)
        Me.Controls.Add(Me.btnDelete)
        Me.Controls.Add(Me.btnAdd)
        Me.Controls.Add(Me.btnLast)
        Me.Controls.Add(Me.btnNext)
        Me.Controls.Add(Me.btnPrev)
        Me.Controls.Add(Me.btnFirst)
        Me.Controls.Add(Me.txtZip)
        Me.Controls.Add(Me.txtState)
        Me.Controls.Add(Me.txtCity)
        Me.Controls.Add(Me.txtStreet)
        Me.Controls.Add(Me.txtLastName)
        Me.Controls.Add(Me.txtFirstName)
        Me.Name = "Form1"
        Me.Text = "UseCurrencyManager"
        Me.ResumeLayout(False)
        Me.PerformLayout()

    End Sub
    Friend WithEvents Label6 As System.Windows.Forms.Label
    Friend WithEvents Label5 As System.Windows.Forms.Label
    Friend WithEvents Label4 As System.Windows.Forms.Label
    Friend WithEvents Label3 As System.Windows.Forms.Label
    Friend WithEvents Label2 As System.Windows.Forms.Label
    Friend WithEvents Label1 As System.Windows.Forms.Label
    Friend WithEvents btnDelete As System.Windows.Forms.Button
    Friend WithEvents btnAdd As System.Windows.Forms.Button
    Friend WithEvents btnLast As System.Windows.Forms.Button
    Friend WithEvents btnNext As System.Windows.Forms.Button
    Friend WithEvents btnPrev As System.Windows.Forms.Button
    Friend WithEvents btnFirst As System.Windows.Forms.Button
    Friend WithEvents txtZip As System.Windows.Forms.TextBox
    Friend WithEvents txtState As System.Windows.Forms.TextBox
    Friend WithEvents txtCity As System.Windows.Forms.TextBox
    Friend WithEvents txtStreet As System.Windows.Forms.TextBox
    Friend WithEvents txtLastName As System.Windows.Forms.TextBox
    Friend WithEvents txtFirstName As System.Windows.Forms.TextBox

End Class

   
    
  
Related examples in the same category
1.DataTable.Columns
2.DataTable.Rows
3.DataTable.Rows.Add
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.