vb

How to Create a Any Page Web Scraper in Visual Basic

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

ProgressBar Clock in VB.NET

Submitted by donbermoy on
Today, I will teach you how to create a program that displays a clock using the ProgressBar in VB.NET. 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. Next, add a Timer named Timer1.

Displaying Digital and Analog Clock in VB.NET

Submitted by donbermoy on
Today, I will teach you how to create and display the digital and analog time. 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. Next, add two radioButtons named rbDigital and rbanalog. Insert also a timer named Timer1, add a label named Label2, and a webbrowser named WebBrowser1.

[BBC iPlayer] File Version Checker in Visual Basic #1 Design, Imports and GetSource Function

Submitted by GeePee on
Introduction: This tutorial is on how to create an update checker tool. Note; this is not a software/application self updating feature, this is to check whether there are new versions of another program/video/audio file ready to view. Purpose: I am going to be making this program for BBC iPlayer so I can check if there are new episodes of certain TV Shows I watch.

Creating an File Update Checker Tool #2 Versions

Submitted by GeePee on
Introduction: This tutorial is on how to create an update checker tool. Note; this is not a software/application self updating feature, this is to check whether there are new versions of another program/video/audio file ready to view. Purpose: I am going to be making this program for BBC iPlayer so I can check if there are new episodes of certain TV Shows I watch.

Skype Profile Image Downloader in Visual Basic

Submitted by GeePee on
Introduction: In this tutorial we are going to be making a simple program in Visual Basic to download someones Skype profile picture. How It Works: We are going to use the Skype API to act as a link to get the profile picture, from that we can use a simple download function within Visual Basic .NET to download the returned image through the link. Design: This program will take two components; Button, named 'skypeButton', text set as 'Download Profile Image' Textbox, named 'skypeText', where the user will enter the skype profile username.

Email Validation Tool in Visual Basic

Submitted by GeePee on
Introduction: This tutorial is on how to make an email addres validator tool in Visual Basic. Design: This tool will contain; a textbox, named defaultly textbox1, this is where the string to be validated will be enetered. a button, named defaulty button1, this is how the validation process will begin. Imports: To validate the string as an email, we are going to be using RegEx which requires it's own import from...

How to Create a Custom Command Line program in Visual Basic

Submitted by GeePee on
Introduction: Welcome to my tutorial on how to create a Custom Command Line in Visual Basic using a form design. Steps of Creation: Step 1: First we want to create a form with; listbox1 - to contain program output, textbox1 - to contain user input. Step 2: Next we want to access teh textbox1 keyPress event.