为什么我没有在网格中显示数据?

时间:2013-04-17 08:24:22

标签: c# gridview data-binding desktop-application

我正在使用一个网格来限制代码,这些代码的列是在设计时定义的。

我在form_load()中绑定网格的代码是:

private void SearchForm_Load(object sender, EventArgs e)
{
     dataGridView1.AutoGenerateColumns = false;
     try
     {
         cn = db.createConnection();
         if (cn.State == System.Data.ConnectionState.Open)
            cn.Close();
            cn.Open();
            cmd = new OleDbCommand("Select BillNo,PartyName,City,State,FORMAT(BillDt,'dd-mm-yyyy')as BillDt from BillMaster", cn);
            da = new OleDbDataAdapter(cmd);
            ds = new DataSet();
            da.Fill(ds);
            cn.Close();
     }
     catch (Exception ex)
     {
            MessageBox.Show(ex.Message.ToString());

     }
     dataGridView1.AutoGenerateColumns = false;
     dataGridView1.DataSource = ds.Tables[0];
     for (int i = 0; i < ds.Tables[0].Rows.Count; i++)
     {
         dataGridView1.Rows[i].Cells[0].Value = ds.Tables[0].Rows[i]["BillNo"].ToString();
         dataGridView1.Rows[i].Cells[1].Value = ds.Tables[0].Rows[i]["PartyName"].ToString();
         dataGridView1.Rows[i].Cells[2].Value = ds.Tables[0].Rows[i]["City"].ToString();
         dataGridView1.Rows[i].Cells[3].Value = ds.Tables[0].Rows[i]["State"].ToString();
         dataGridView1.Rows[i].Cells[4].Value = ds.Tables[0].Rows[i]["BillDt"].ToString();
     }

     ds.Dispose();
     cmd.Dispose();
     da.Dispose();
     cn.Close();
}

我调试了程序,并且在调试时将数据分配给从立即窗口观察到的每个字段,但是当显示表单时,数据不会出现。并创建从数据集中获取的空行数。

我该如何解决这个问题?请帮忙。

1 个答案:

答案 0 :(得分:0)

试试这个: dataGridView1.DataSource = ds; //数据集 dataGridView1.DataMember =“TableName”; // TableName

希望它能奏效。