Binding DataSet to DataGrid : DataGrid « ADO.Net « C# / CSharp Tutorial

Home
C# / CSharp Tutorial
1.Language Basics
2.Data Type
3.Operator
4.Statement
5.String
6.struct
7.Class
8.Operator Overload
9.delegate
10.Attribute
11.Data Structure
12.Assembly
13.Date Time
14.Development
15.File Directory Stream
16.Preprocessing Directives
17.Regular Expression
18.Generic
19.Reflection
20.Thread
21.I18N Internationalization
22.LINQ
23.GUI Windows Forms
24.Windows Presentation Foundation
25.Windows Communication Foundation
26.Workflow
27.2D
28.Design Patterns
29.Windows
30.XML
31.XML LINQ
32.ADO.Net
33.Network
34.Directory Services
35.Security
36.unsafe
C# / C Sharp
C# / C Sharp by API
C# / CSharp Open Source
C# / CSharp Tutorial » ADO.Net » DataGrid 
32.52.6.Binding DataSet to DataGrid
using System;
using System.Drawing;
using System.Collections;
using System.ComponentModel;
using System.Windows.Forms;
using System.Data;
using System.Data.SqlClient;

  public class Form1 : System.Windows.Forms.Form
  {
        private System.Windows.Forms.DataGrid dataGrid1;
        private System.Windows.Forms.Label label1;
        private System.Windows.Forms.Button button1;
    public Form1()
    {
            this.dataGrid1 = new System.Windows.Forms.DataGrid();
            this.label1 = new System.Windows.Forms.Label();
            this.button1 = new System.Windows.Forms.Button();
            ((System.ComponentModel.ISupportInitialize)(this.dataGrid1)).BeginInit();
            this.SuspendLayout();
            // 
            this.dataGrid1.DataMember = "";
            this.dataGrid1.HeaderForeColor = System.Drawing.SystemColors.ControlText;
            this.dataGrid1.Location = new System.Drawing.Point(1656);
            this.dataGrid1.Name = "dataGrid1";
            this.dataGrid1.Size = new System.Drawing.Size(264168);
            this.dataGrid1.TabIndex = 0;
            // 
            this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif"24F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
            this.label1.Location = new System.Drawing.Point(88);
            this.label1.Name = "label1";
            this.label1.Size = new System.Drawing.Size(29640);
            this.label1.TabIndex = 1;
            this.label1.Text = "Databases in Code";
            // 
            this.button1.Location = new System.Drawing.Point(80240);
            this.button1.Name = "button1";
            this.button1.Size = new System.Drawing.Size(12023);
            this.button1.TabIndex = 2;
            this.button1.Text = "Connect to database";
            this.button1.Click += new System.EventHandler(this.button1_Click);
            // 
            this.AutoScaleBaseSize = new System.Drawing.Size(513);
            this.ClientSize = new System.Drawing.Size(292273);
            this.Controls.Add(this.button1);
            this.Controls.Add(this.label1);
            this.Controls.Add(this.dataGrid1);
            this.Name = "Form1";
            this.Text = "Form1";
            ((System.ComponentModel.ISupportInitialize)(this.dataGrid1)).EndInit();
            this.ResumeLayout(false);

        }
    [STAThread]
    static void Main() 
    {
      Application.Run(new Form1());
    }

        private void button1_Click(object sender, System.EventArgs e)
        {
            DataSet dataset1 = new DataSet("dataset1");

            string connectionString = "workstation id=STEVE;packet size=4096;integrated security=SSPI;initial catalog=pubs;persist security info=False";

            SqlConnection connection1 = new SqlConnection(connectionString);

            SqlCommand command1 = new SqlCommand("SELECT * FROM authors");
            command1.CommandType = CommandType.Text;

            connection1.Open();
            command1.Connection = connection1;

            SqlDataAdapter sqlDataAdapter1 = new SqlDataAdapter();

            sqlDataAdapter1.SelectCommand = command1;
            sqlDataAdapter1.Fill(dataset1, "authors");

            dataGrid1.SetDataBinding(dataset1, "authors");
        }
  }
32.52.DataGrid
32.52.1.Load data in DataTable to DataGridLoad data in DataTable to DataGrid
32.52.2.Link two DataTable in a DataGridLink two DataTable in a DataGrid
32.52.3.Load Data to DataGridLoad Data to DataGrid
32.52.4.DataGrid View: on data error
32.52.5.Data binding for Multiple Controls
32.52.6.Binding DataSet to DataGrid
32.52.7.Programmatic Data Display
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.