Checker

How to Create a Website URL Verifier in Visual Basic

Submitted by GeePee on
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.

Spelling Checker

Submitted by donbermoy on
Hi! this is my other tutorial for VB.NET that is an ideal in a program that will check if the spelling is correct or wrong. Now, let's start this spelling checker 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 Syntax Checker in Visual Basic

Submitted by Yorkiebar on
Introduction: This tutorial is on how to create a simple tool to check the amount of opening and closing braces in your script syntax. Steps of Creation: Step 1: First we want to create a form with: - Button1 - To begin the checking process - RichTextBox1 - To contain the source code Step 2: Next we want to go to the button1 click event and create two new integers, one to count the amount of

Visual Basic Valid Email Checker

Submitted by Yorkiebar on
Introduction: This tutorial is on how to create a simple email checker in Visual Basic. Steps of Creation: Step 1: First we will need a new form with a textbox1 for the email file path, a file full of emails ready for checking, a textbox2 to define the path to save the valid emails and a button to start checking the emails. We will also require the following imports...

Visual Basic Proxy Checker

Submitted by Yorkiebar on
Introduction: This tutorial will be on how to create a proxy checker which will test a list of proxies and report if they respond within 3000ms/3seconds (can be changed using .Timeout). Steps of Creation: Step 1: First we will need to Import two packages, one to use StreamReader and StreamWriter and another to use HttpWebRequest and HttpWebResponse