When using multi threading - can I use multiple browsers? One for each thread?

Joined
Apr 13, 2011
Messages
19
Programming Experience
Beginner
I came across this app yesterday which looked strange to me as it had about 20 web browsers popped up and running all 20 processes seperatly.
I only assume that it's running 20 threads at once and each thread is using it's own web browser.
Is this possible to do in VB.NET?
 
If the browsers were visible it is more likely they were all operating in same UI thread, only in different windows/containers.
Though it is also possible to create hidden browser instances from separate threads.
 
Back
Top