visual basic

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

Convert Whole Number and Decimal to Words in VB.NET

Today, I will teach you how to create a program that converts a whole number and a decimal into words using vb.net. This is so useful in making systems when you convert it in the receipt section that the numbers are converted into words. Now, let's start this tutorial! 1. Let's start with creating a Windows Form Application for this tutorial by following the following steps in Microsoft Visual Studio: Go to File, click New Project, and choose Windows Application. 2.

How to Create a Spell Checker in Visual Basic

Pre-Note: As seen in the image for this post, this program outputs the word "false" as incorrectly spelt. This is because I created a test dictionary (as below) which only recognized the words "a" and "word".
  1. a word
Introduction: Welcome to my tutorial on how to create a Spell Checker in Visual Basic. For this you will need a dictionary which has the words separated by a space.

How to Create a Web Browser in Visual Basic

Introduction: Welcome to my tutorial on how to create a web browser in Visual Basic. Steps of Creation: Step 1: First we want to create a form with; Button1 - Go button2 - home button3 - back button4 - forward textbox1 - address/url webbrowser1 - web browser Step 2: Next we want to go in the Go button and check if the url is valid, if it is we want to navigate to it through the web browser.
  1. Private Sub Button1_Click(sender As Object, e As EventA

Aero Glass Screen Effect in VB.NET

Today, I will teach you how to create a program that has a screen effect of aero glass in vb.net. We often see an aero glass effect as a theme in windows 7. Now, we will start the tutorial. 1. Let's start with creating a Windows Form Application for this tutorial by following the following steps in Microsoft Visual Studio: Go to File, click New Project, and choose Windows Application. 2. Next, add only a Timer named Timer1 in your Form. 3.

How to Create a Website URL Verifier in Visual Basic

Introduction: Welcome to a tutorial on how to create a website/url verifier and checker in Visual Basic. Steps of Creation: Step 1: First we want to create a form with a textbox to contain the website url, button1 to verify the url format and button2 to check the website response. Step 2: First lets make a function to check the url and return the correctly formatted url.
  1. Private Function doCheck(ByVal s As String)