Scraper

How to Create a Proxy Grabber/Scraper in Visual Basic

Introduction: Welcome to my tutorial on how to create a proxy ip:port grabber. Steps of Creation: Step 1: First create a form with one button, this will allow the user to select a save location and begin the process. We also want to import a few things and create a global string of the link in which we want to extract the proxy information from...
  1. Imports System.Text.RegularExpressions
  2. Imports System.Net

How to Create a Any Page Web Scraper in Visual Basic

Introduction: Welcome to a tutorial on how to make a visual basic program which will scrape between two given points from a given page and create a list of output. Pre-Creation: My form will have: Textbox1 Extract From Textbox2 Extract To Textbox3 Page to extract from Button1 Begin extraction Steps of Creation: Step 1: First we want some imports and a function.

How to Create a Quick Bing Searcher in Visual Basic

Introduction: Welcome to my tutorial on how to create a quick bing searcher in visual basic. It will search a given query and launch the first three links. Steps of Creation: Step 1: First we want to import some namespaces and create a function get a list of strings between two points within a given string... Imports System.Text.RegularExpressions Imports System.Net Imports System.IO Private

Visual Basic Twitter Feed Scraper

Introduction: Welcome to my tutorial on how to create a Twitter profile tweet scraper. First create a form which contains a textbox for the profile username and a button to begin the process. Steps of Creation: Step 1: Import the following two imports so we can get the profile page source and manipulate it: Imports System.Net Imports System.Text.RegularExpressions Step 2: Now, add two functions

Visual Basic Webpage Scraper

Introduction: In this tutorial I will be showing you how to create a webpage scraper in Visual Basic. This can be used to gather information from certain websites through an automated process. Steps of Creation: Step 1: First we want to create a form with a simple button (set the name to scrapeButton), a Text Box (set the name to linkURL), a Rich Text Box (set the name to srcBox) and a Web Browser (set the name to srcBrowser).