Our current software, which is made in FoxPro, got a very nice feature: when we type something over a grid, the search feature is automatically called.
Example: I have a grid containing a list of truck. When I click on the grid and I type a truck number, the grid go directly to the grid’s truck record.
I need to implement it in C#, how could I do it?
P.S. In some situation, a grid COULD have editable field. But if it’s too complicated, I won’t implement-it on the those editable grid.
You can try something like this within your form code:
That will get you a pop up “search”
TextBox, that will disappear after 5 seconds. You can use the text from the box to perform the search as you see fit on the data in theDataGridView