如何使用datagrid字段过滤数据
我创建了一个包含多种表单的 vb.net 项目,现在我有一个问题。我想根据月份过滤存储在 datagridview
中的数据。
考虑下面给出的数据
CUSTOMERNAME MONEY DATE
RAJA 1000 5/22/2011
RAM 15872 12/28/2010
RESHMA 12542 10/15/2010
POONAM 12345 2/25/2011
SANDEEP 54543 5/15/2011
考虑一个包含月份列表的组合框 (1 2 3 ... 12) ,当用户选择月份时,我想根据以下内容过滤 datagridview
中的数据选择的月份。
如果用户选择 5,则必须过滤结果并仅显示
RAJA 1000 5/22/2011
SANDEEP 54543 5/15/2011
I have created a vb.net project with several forms and now I have a question. I want to filter the data stored in a datagridview
according to the months.
Consider the data as given below
CUSTOMERNAME MONEY DATE
RAJA 1000 5/22/2011
RAM 15872 12/28/2010
RESHMA 12542 10/15/2010
POONAM 12345 2/25/2011
SANDEEP 54543 5/15/2011
Consider a combobox with a list of months (1 2 3 ... 12) , when the user chooses a month, I want to filter the data in the datagridview
according to the chosen month.
If the user selects 5 it must filter the result and show only
RAJA 1000 5/22/2011
SANDEEP 54543 5/15/2011
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
由于您的问题相当笼统,这里有几个链接可以帮助您找到正确的一般问题。如果您需要更具体的帮助,您可以编辑您的问题并包括您迄今为止尝试过的内容。
这是一篇关于 DataView.RowFilter 属性 的文章
这是 linq 解决方案 对数据集上的列进行求和,这远不是您可以执行此操作的唯一方法。
Since your question is fairly general here are a couple of links that will get you in the right general question. If you want more specific help you can Edit your question and include what you've tried so far.
Here's an article on the DataView.RowFilter Property
Here's a linq solution to sum a column on a dataset, it far from the only way you can do this.