Search results for query: *

  1. B

    Threading, Progress Indicator, etc.

    Yep... Yep, it works great. I wasn't sure what Application.DoEvents would allow, but it apparently has few limits (if any). Other subs and threads can be spawned off, meanwhile the original loop sits there doing its thang. Yep, I started with VB a few years back, but so far I've written it...
  2. B

    Threading, Progress Indicator, etc.

    Works perfectly! You are the man. That works perfectly. I had NO idea about DoEvents. That solves the problem of tying up the entire application with loops while waiting for something else to happen. I've been programming primarily in ASP.Net, so some of the basic Windows.Forms stuff is...
  3. B

    Threading, Progress Indicator, etc.

    Hey all, I am having trouble accurately knowing when a thread has completed without holding up my application with loops & the like. My basic goal is this: Run a recursive directory/file search program, and provide the user with a small progress indicator form with a Cancel option while...
Back
Top