Real time Clock using Visual Basic 6

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

Submitted by navajocodetalker on
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

Submitted by joken on
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

Submitted by Yorkiebar on
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

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

Digital Stopwatch using Visual Basic.Net

Submitted by joken on
In this tutorial I'm going to teach you on how to create a simple digital stopwatch that will able you to start the timer when the “Start” button is click, then pause the timer when the “Pause” button is clicked. And you can also clicke the “Continue” button if you want to continue running the timer. And this program has the feature that able’s you to restart the timer anytime you want as long as you click the “Reset” button and finally you can stop the timer if you wish to stop it and the timer will go back to its original value.

SHARP BOOK Accounting System

Submitted by akora4 on
This system that I've just make works for accounting which is more simple and easy to access. It enables you to add an image to a certain customer, do some deposit and withdrawal data, User Authentication, Income and Expenses, Balance Inquiry, Bank Statement, Loan Calculator, Summary sheet, Transfer account and all of the accounting supported reports. Just backup using the built-in back-up system

Reading from and Writing to a Text File in Java

Submitted by mehfuza on
Introduction: This tutorial demonstrate the method of reading from and writing to a text file in Java. Java has two type of files: Binary and Text. Text file is processed as a sequence of characters where as Binary file is processed a sequence of bytes. This application has 4 JButtons for reading, writing, exiting, and clearing the Display Area. Also It has a display area where we can type the data to be written to text and in the same area content from file are displayed. Step 1: Creating GUI Components Create the four buttons, label, text area and text field.