I do this now, but I can't do it in a thread since it is part of the Form and not thread safe.
How can I search a DataGridView's data from within a thread?
Example:
|
The above is not thread safe, of course.
I don't want to pass the entire DataGridView object to a thread as a parameter because it can be rather large and our clerks enter data pretty fast!

Joe PoolPosted Apr 30, 2010, 4:05 PM
I found a solution that works for me by using the Binding Source's Find method in this article: BindingSource.Find by partial string? Hopefully others find this helpful as well.
Thanks for your help!
~Joe
Amit ChoudharyPosted Apr 30, 2010, 3:43 PM
you should check out the below articles:
1. Auto Completion using AutoCompleteStringCollection
2. Auto Suggestion TextBox
Please mark "Do you like this post" if it helps you friend
Joe PoolPosted Apr 30, 2010, 8:58 AM
I neglected to mention: This is a Windows Application, so javascript not an option.
Amit ChoudharyPosted Apr 30, 2010, 1:37 AM
if you are working on asp.net web application then you can achieve it using javascript and it'll be more efficient and performance promised rather then using Threads.
Please mark "Do you like this post" if it helps you.