如何使用datagrid字段过滤数据

发布于 2024-11-09 10:16:20 字数 573 浏览 0 评论 0原文

我创建了一个包含多种表单的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

只是我以为 2024-11-16 10:16:20

由于您的问题相当笼统,这里有几个链接可以帮助您找到正确的一般问题。如果您需要更具体的帮助,您可以编辑您的问题并包括您迄今为止尝试过的内容。

这是一篇关于 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文