C#中点击button将需要的信息显示在datagridview中
如图,通过comboBox选择需要的项,点击button,将连接的数据库中需要的信息显示在datagridview中,程序怎么写都运行不出来,求大神帮忙...
如图,通过comboBox选择需要的项,点击button,将连接的数据库中需要的信息显示在datagridview中,程序怎么写都运行不出来,求大神帮忙
展开
1个回答
展开全部
我不信~~~~~~~~~~
根据条件查数据你应该会吧,把查询结果放入datatable中,用下面方式放入datagridview中
if (db.Rows.Count > 0) //db是一个datatable变量
{
for (int IntRow = 0; IntRow < db.Rows.Count; IntRow++)
{
string strCol_0 = db.Rows[IntRow][0].ToString();
string strCol_1 = db.Rows[IntRow][1].ToString();
string strCol_2 = db.Rows[IntRow][2].ToString();
string strCol_3 = db.Rows[IntRow][3].ToString();
string strCol_4 = db.Rows[IntRow][4].ToString();
string strCol_5 = db.Rows[IntRow][5].ToString();
string strCol_6 = db.Rows[IntRow][6].ToString();
string strCol_7 = db.Rows[IntRow][7].ToString();
string strCol_8 = db.Rows[IntRow][8].ToString();
string strCol_9 = db.Rows[IntRow][9].ToString().ToUpper()=="P"?"零件号":"客户编号";
string strCol_10= db.Rows[IntRow][10].ToString();
string strCol_11 = db.Rows[IntRow][11].ToString()=="0"?"是":"否";
dataview_productNo.Rows.Add(new object[] { strCol_0, strCol_1, strCol_2, strCol_3, strCol_4, strCol_5, strCol_6, strCol_7, strCol_8, strCol_9, strCol_10, strCol_11});
}
}
根据条件查数据你应该会吧,把查询结果放入datatable中,用下面方式放入datagridview中
if (db.Rows.Count > 0) //db是一个datatable变量
{
for (int IntRow = 0; IntRow < db.Rows.Count; IntRow++)
{
string strCol_0 = db.Rows[IntRow][0].ToString();
string strCol_1 = db.Rows[IntRow][1].ToString();
string strCol_2 = db.Rows[IntRow][2].ToString();
string strCol_3 = db.Rows[IntRow][3].ToString();
string strCol_4 = db.Rows[IntRow][4].ToString();
string strCol_5 = db.Rows[IntRow][5].ToString();
string strCol_6 = db.Rows[IntRow][6].ToString();
string strCol_7 = db.Rows[IntRow][7].ToString();
string strCol_8 = db.Rows[IntRow][8].ToString();
string strCol_9 = db.Rows[IntRow][9].ToString().ToUpper()=="P"?"零件号":"客户编号";
string strCol_10= db.Rows[IntRow][10].ToString();
string strCol_11 = db.Rows[IntRow][11].ToString()=="0"?"是":"否";
dataview_productNo.Rows.Add(new object[] { strCol_0, strCol_1, strCol_2, strCol_3, strCol_4, strCol_5, strCol_6, strCol_7, strCol_8, strCol_9, strCol_10, strCol_11});
}
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询