I have a sub that recurses a directory structure (using GetFiles and GetDirectories). My form has a label to provide progress feedback. I have a Timer which fires every 1000 msecs, puts the current time (in seconds) in the label, and calls label1.update(). The label updates every second as expected, but as soon as the recursive sub starts, the label freezes until the sub completes. The sub takes about 8 seconds to complete. When the sub returns, the label resumes its update every second. My gut instinct is that the app is so busy recursing my directory that it is unable to service the timer. Suggestions?
Thanks
Thanks