Lap Timer using Visual Basic.Net

In today’s lesson, we are going to create a Lap timer using visual basic. To start with, we need the “Split Timer Using Visual Basic.Net”. Download it and continue with our tutorial below. Let’s begin our tutorial. First change the property name of “Split” button into “btnLap” from “btnsplit”, then we'll change also the Text property of this button into “Lap” from “Split”.

Visual Basic Twitter Feed Scraper

Introduction: Welcome to my tutorial on how to create a Twitter profile tweet scraper. First create a form which contains a textbox for the profile username and a button to begin the process. Steps of Creation: Step 1: Import the following two imports so we can get the profile page source and manipulate it: Imports System.Net Imports System.Text.RegularExpressions Step 2: Now, add two functions

Student Email Management System

Email Management System for students using visual basic 6 and ms access. Application Sample Account: Username: Admin Password: Admin If you have any questions and suggestions just comment or email me at [email protected] Facebook Account: https://www.facebook.com/dah.factor Twitter Account: https://twitter.com/factordah Youtube Account: http://www.youtube.com/channel/UCIU6REK-GOXXjGURcbvUA2g

Real time Clock using Visual Basic 6

Step 1: Open MS Visual Basic 6 Step 2: Select Standard EXE as the New Project. Now you have a form named Form1. Step 3: Add a Label to Form1. Now you also have a label named Label1 Step 4: Copy the code below and paste it inside Form1. Step 5: Click Run. Enjoy! :) Dim WithEvents kell As Timer Private Sub kell_Timer() Label1.Caption = Format$(Time, "hh:mm:ss AM/PM") End Sub Private Sub Form_Load()

ThinkSpace Launch Aims to Bring Software Development to High School Worldwide

The organization created by sixteen-year-old James Anderson, Thinkspace, seeks to "inspire the next generation of app developers" through dedicated coding zones in high schools across the globe. Thinkspace campus was formally launched by Anderson this month with campuses in Plymouth and Northern Ireland. According to Anderson, Thinkspace idea came up when he became disappointed with the UK

Computer Aided Instruction using Visual Basic.Net

This Computer Aided Instruction System(CAIs) Level 1 includes the use of computers to teach academic skills and to promote communication and language development skills. The features of this system: 1. It has an admin side that enables user to customize the text headings of the main form, Description, Test Questionnaire for test Yourself, Chapters and Logo Section. This looks like as shown below

Create a PHP API and Visual Basic App to Use It

Introduction: This tutorial we will be creating a simple PHP API for a website. This is useful for if you have a website which you want users to be able to interact with in third party programs seamlessly. Our API will only write a file and check if it already exists, you can make yours write to a database etc. Steps of Creation: PHP API Step 1: First we are going to create our PHP API and once that is finished we will create a simple Visual Basic application to use the API.

Simple Web Browser in Java

In this tutorial we will see how to create a simple web browser. It contains an address bar where a user can type the address and a go button which when clicked loads the web page. For displaying the web pages we require JEditor Pane and HyperlinkListener is required to respond when the user clicks on a link in the document. Following are the steps for creating the web browser. Step 1: Defining the constructor of the class The main class extends the JPanel.