I\'m trying to load some data into a DataGridView, but either the DataGridView is not showing the data (even though it says in Debug-Mode that it has the items in it)
dataGridView1.DataSource = ds;
dataGridView1.DataMember = ds.Tables[0].TableName;
//or if you want to use DataTable as DataSource for your grid
dataGridView1.DataSource = ds.Tables[0];