I speak no VB, so in general terms:You open a connection to (some web service)
You provide your bona fides to that server
You make your request
You receive and parse the data
You close the connection
You massage the new data
You display the massaged data
Repeat
There are several places where this can be troublesome.Opening the connection: VB will have some way to do it
Providing your bona fides: Each service has its own requirements. Probably a username and password. You don't want to send that in the clear, so think about it first.
Sending requests and receiving data: You will need to understand the service requirements in both directions
Parsing: You have to handle what they send you. Probably XML or json. VB has parser tools, I'm sure.
Closing the connection: They are a scarce resource, so when you're done for the moment, close it.