I'm trying to switch to vb.net a VBA code i've written to parse web pages.
Currently I use:
IE = CreateObject("internetexplorer.application")
And navigate within web pages.
Now I'm trying to make better (and faster) the code and I'm thinking about using "System.Threading" to open more web pages at same time (it takes about 5-10 seconds to open each page because the site is slow)
I read a lot of guides and threads but the more I read the more I get confused.
It's no easy for me to write code (I'm a self-taught) and I wouldn't waste time and and effort in the wrong direction.
Currently I open one web page at time and then extract some text getting it by tag.
I have to open two types of web pages: 1) First type: I have the exact url; 2) Second type: I need to fill a form to get the text I need.
Is there a good way for both types? If not what's the best way for each of them?