If it is three separate strings, then it can be done, but if it is one long page then it will be more difficult. You would have to search for the "<TD>" strings, and knowing which ones you want to parse may be an issue.
It's possible. The way I did it, was remove the HTML tags, and replace them with a special character, then replace any doubled up special characters, newlines, and spaces, then Split the string up into an array. There a bit more to it, I attach the example anyway.
Well, will you know the format of the page you are doing every time? I mean are you just going to be doing the 3 page formats listed above or will they be random pages with proxies on them? Because I am writing an HTML parser Class Module right now that would work really well for the purpose you mentioned. You would still have to do some of the work in your program but my Class could get you the inne HTML pretty well.
It won't be ready for a few days (maybe a week to be completely done). If your interested, let me know.
Well, you can make my example do that. If I understand correctly, you want to add them to a listbox in the format IP:*Port. If so, I attached a way to do that:
Thats a god solution for this and works perfectly. I was just offering a more general Inner HTML solution. Hope chemicalNova's mini-app was what you were looking for ICENOVA. Good luck.