同一个dataGridView中,通过不同的条件查询数据绑定到dataGridView上
如图:点击活鲜在dataGridView中显示活鲜的产品点击冰鲜在dataGridView中显示冰鲜的产品依次类推活鲜可以显示出来但是冰鲜死活不显示哪里有问题??...
如图:
点击活鲜在dataGridView中显示活鲜的产品
点击冰鲜在dataGridView中显示冰鲜的产品
依次类推
活鲜可以显示出来但是冰鲜死活不显示
哪里有问题?? 展开
点击活鲜在dataGridView中显示活鲜的产品
点击冰鲜在dataGridView中显示冰鲜的产品
依次类推
活鲜可以显示出来但是冰鲜死活不显示
哪里有问题?? 展开
- 你的回答被采纳后将获得:
- 系统奖励15(财富值+成长值)+难题奖励10(财富值+成长值)+提问者悬赏50(财富值+成长值)
1个回答
展开全部
button2_Click事件中,调用的方法应该是FreshIceQuery(),而且dateGridView.DataSource=ds.Tables[0]。
另外,建议FreshQuery()与FreshIceQuery()可以抽取为一个公用的方法:
private bool FreshQuery(string categoryName)
{
string sql = string.Format(@"
select ProductName
from ProductClassfication
where CategoryName='{0}'", categoryName);
……
}
另外,建议FreshQuery()与FreshIceQuery()可以抽取为一个公用的方法:
private bool FreshQuery(string categoryName)
{
string sql = string.Format(@"
select ProductName
from ProductClassfication
where CategoryName='{0}'", categoryName);
……
}
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询