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.

Animation Direction in CSS3

Submitted by alpha_luna on
What is animation-direction? The animation-direction property specifies whether or not the animation should play in reverse direction or in alternate cycles. If the animation-direction value is "alternate", the animation played as normal every odd time (1,3,5,etc...) and backwards every even time (2,3,6,etc...). Note: If the animation is set to play only once, this property will have no effect

Creating a Media Playlist using Widows Media Player in VB.NET

Submitted by donbermoy on
This tutorial will teach you on how to create a music playlist using windows media player in vb.net. So now I will be going to teach you how to do this. 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. Right click the ToolBox, and click the Choose Items. output 3.

How to Create a Ceaser Cipher Text Encrypter in Visual Basic

Submitted by GeePee on
Introduction: Welcome to a tutorial on how to create a simple Ceaser Cipher text encrypter using Visual Basic. Notes: In this tutorial I only did three letters as an example, you will want to do the same technique for every letter of the alphabet to avoid messages getting muddled. Steps of Creation: Step 1: First you want to create a form with; textbox1 - Message to encrypt textbox2 - Message to decrypt Button1 - Encrypt Button2 - Decrypt Step 2: We will be using one function to deal with all the encrypting and decrypting s

How to Create a Colour Chooser/Grabber in Visual Basic

Submitted by GeePee on
Introduction: Welcome to a tutorial on how to create a colour chooser in Visual Basic. Steps of Creation: Step 1: First we want to create a form. Mine has three textboxes (r,g,b) to show to red, green and blue colours of the current colour and a Panel to contain the colour image. Step 2: Now we want to begin the timer on form load so it is instant.

Animation Delay Property in CSS3

Submitted by alpha_luna on
Let's discuss, what is a animation-delay in CSS3. The animation-delay property specifies when the animation should start. The animation-delay value can be defined in seconds (s) or milliseconds (ms). Syntax of this property: animation-delay: time | initial | inherit ; Property Values: time - it specifies the time (can be a negative number) before the animation begins. This is a time difference

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.

Creating and Populating table with MySQL Data using Twitter Bootstrap framework

Submitted by GeePee on
In this tutorial, I’m going to discuss how to use the Twitter Bootstrap to create a table and populate this table with records from MySQL database using PHP. Using Bootstrap framework, you can save more time when working with different browsers and or devices.