Well, sorry for long delay - I was hoping for some more input into this question.
Actually, I've used the thread idea but it was very messy for me. Probably just a lack of skill on my part.
I examined my code and realized that the reason my program had the slow spots was because I was doing calculation type stuff inside the loop where I also examined db record for filter. So, I moved code that does extra stuff do its own little block and I do the loop as lean as possible. That solved it for me - should have seen it sooner.
Thanks for your input knightmad. I'll go ahead and just accept your comment as an answer and close the question out.
reddarin
Main Topics
Browse All Topics





by: knightmadPosted on 2003-08-17 at 15:19:55ID: 9170039
Well, if the update will take a long time, I use to create a separated thread to deal with it. Then, the main thread doesn't stop.