More newbie questions:
This code grabs a number of proxies from the list in the main window (I couldn\'t figure out how to make variables be available between diffe
If anyone's curious, I kinda figured it out but I'm not sure if that's good programming or any way to deal with the issue.
I created a new thread like so:
Thread t = new Thread(do_checks); t.Start();
and put away all of the parallel stuff inside of do_checks().
Seems to be doing okay.