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.

Creating a Web Radio in VB.NET

Submitted by donbermoy on
Today, I will teach you how to create a web radio in vb.net. What is a web radio? I call it a web radio because this application has its radio to be played using the web. So now i will 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.

Electronics Engineering (ECE) Reviewer Android Application

Submitted by donbermoy on
ECE Reviewer app is an Android application (a capstone project) that caters the needs of Electronics Engineering students who wants to take a review for their exams. The app has four categories such as Mathematics, Electronics Engineering, Electronic Systems and Technologies, and General Engineering and Applied Sciences.

How to create a Sign up Page Using Twitter Bootstrap

Submitted by GeePee on
In this tutorial, I'm going to show you how to create a Sign up page using the twitter bootstrap framework. Using bootstrap framework, it has a ready made piece of code and you can save time because it easy to use, fast and better. If you don’t have this framework yet, you can download it here. After downloading, create a new folder and name it as “signup”. Then save this to our local server.

Social Networking Site: Improving of Login System using Advance PHP

Submitted by GeePee on
In this tutorial, we will focus on how to improve our PHP code in more dynamic ways using Object Oriented Programming. To start with this application, open first our web directories then look for the index.php file and make a copy of it, and name the old “index.php” into” index_basic.php”. Then inside the includes folder, look for the “member.php” and open it because we’re going to add another static function that will be used during the user authentication.