I'm writting an application that will count the letters in a text file. I
want to use threads to do the acctual counting. I have figured out how to
start one thread, and pass information to it. My problem is that I want
to use multiple threads to divide the work up. The default amount of
threads that I'm setting is 4, but the user should be able to specify
more if they want. How can I create 2 or more threads? I have a form that
has a button to start/stop the threads and an other button to
Pause/Continue the threads. So i will need to be able to access the
threads from those buttons.
Thanks
Seth