Here's the scenario. I set a datagrid to contain five columns. One of the columns contains addresses. The datagrid's datasource is based on a dataview. What I am asking is there a way to filter the dataview to only show the records that contain a specific string. For instance:
I have a list of addresses in the dataview:
101 Main Ave.
99 Route 8
78 Jackson Ave.
353 Main Ave.
If I just want the records containing the word Main how can I filter for it?? Should I be trying to using InStr, the downside is that I would have to loop through the entire dataset. Appreciate the assist.
I have a list of addresses in the dataview:
101 Main Ave.
99 Route 8
78 Jackson Ave.
353 Main Ave.
If I just want the records containing the word Main how can I filter for it?? Should I be trying to using InStr, the downside is that I would have to loop through the entire dataset. Appreciate the assist.