Thread ID: |
Created: |
Updated: |
Platform: |
Replies: |
11725 | Mar 15,2004 12:48 AM UTC | Apr 14,2004 08:45 PM UTC | WinForms | 9 |
![]() |
Tags: Grouping |
//filter states that start with N
RecordFilterDescriptor filter = new RecordFilterDescriptor("state_N");
filter.Expression = "[State] LIKE ''N*''";
this.gridGroupingControl1.TableDescriptor.RecordFilters.Add(filter);
Here is a sample.
filter.Expression = "([State] LIKE ''N*'') = 0";
Or, equivalently,
filter.Expression = "1 - ([State] LIKE ''N*'')";
This post will be permanently deleted. Are you sure you want to continue?
Sorry, An error occured while processing your request. Please try again later.
This page will automatically be redirected to the sign-in page in 10 seconds.