I'm looking for a little bit of input on this topic. The scenario is this: I have a textbox which, using the _Changed event, searches a simple string array filled with filenames for a partial match. The find/search routine works well, but the biggest drawback I'm finding is the speed at which it takes to repopulate the listbox for the results. I'm dealing with a LOT of data (10k-20k entries) and would like anyone's input on how I might be able to speed up execution. I've considered adding a timer in the _Changed event that will give the user time to type out the query before starting to repopulate (the first letter or two causes the program to temporarily freeze/pause, anything after that is fairly quick). I can post code if it's needed, but I'm not looking for a code answer, just thoughts and/or experiences from other programmers.
Thanks in advance!
BigPapaN0z
PS - Using VS2010 for anyone interested.
Thanks in advance!
BigPapaN0z
PS - Using VS2010 for anyone interested.
Comment