Mega Code Archive

 
Categories / C# Tutorial / ADO Net
 

DataGrid DataSource Setting

using System; using System.Drawing; using System.Collections; using System.ComponentModel; using System.Windows.Forms; using System.Data; using System.Data.SqlClient; public class DataGridDataSourceSetting : System.Windows.Forms.Form {     private System.Windows.Forms.DataGrid dgBugs;   private System.ComponentModel.Container components = null;   public DataGridDataSourceSetting()   {     InitializeComponent();         string connectionString = "server=(local)\\SQLEXPRESS;database=MyDatabase;Integrated Security=SSPI;";         string commandString = "Select * from Employee";         SqlDataAdapter dataAdapter = new SqlDataAdapter(commandString, connectionString);         DataSet dataSet = new DataSet();         dataAdapter.Fill(dataSet,"Employee");         DataTable dataTable = dataSet.Tables[0];                 dgBugs.DataSource=dataTable;              }   protected override void Dispose( bool disposing )   {     if( disposing )     {       if (components != null)        {         components.Dispose();       }     }     base.Dispose( disposing );   }   private void InitializeComponent()   {         this.dgBugs = new System.Windows.Forms.DataGrid();         ((System.ComponentModel.ISupportInitialize)(this.dgBugs)).BeginInit();         this.SuspendLayout();         //          // dgBugs         //          this.dgBugs.DataMember = "";         this.dgBugs.HeaderForeColor = System.Drawing.SystemColors.ControlText;         this.dgBugs.Location = new System.Drawing.Point(8, 16);         this.dgBugs.Name = "dgBugs";         this.dgBugs.Size = new System.Drawing.Size(448, 176);         this.dgBugs.TabIndex = 0;         //          // DataGridDataSourceSetting         //          this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);         this.ClientSize = new System.Drawing.Size(464, 205);         this.Controls.AddRange(new System.Windows.Forms.Control[] {                                                                       this.dgBugs});         this.Name = "DataGridDataSourceSetting";         this.Text = "DataGridDataSourceSetting";         ((System.ComponentModel.ISupportInitialize)(this.dgBugs)).EndInit();         this.ResumeLayout(false);     }   [STAThread]   static void Main()    {     Application.Run(new DataGridDataSourceSetting());   } }