Automated Teller Machine System

Submitted by joken on
This Automated Teller Machine System is created by a BSIT-2 student wherein this system allows you to register a new account, Deposit certain amount, Balance Inquire, and withdraw amount, as well as this system has an admin side, wherein the admin can block or unblock a specific account and also the administrator can modify the information of the account owner. The system is created using Visual

Jak’s Computer Renting System

Submitted by joken on
This system is created by a BSIT-2 student as their final requirements in one of their subjects. The system is made using Visual Basic 2008 and Microsoft Access for database support and Crystal Reports for the reporting. Here’s the following feature’s available in this system: Acquired new Transaction, Register New Customer, Manage User (Add, Update and Delete), Generate Reports for List of

List of Thesis Title for IT/CS Students (more on Android App and Hardware Integration)

Submitted by donbermoy on
Good day to all. Some of the thesis projects for today's generation have been already made or sometimes the professors/instructors of a college institution rejected your thesis proposals because it is already existed or it does not meet the standards. So, I came up with a possible and most modern list of thesis proposals to help you all. Below is the list of thesis title. List of Thesis Proposals

How to get a SubString of a String in Java

Submitted by donbermoy on
This is a tutorial in which we are going to create a program that gets substring of a string in java. We all know that a substring is a part of a sentence or a string. Java String class provides substring method with some overloaded parameter. So, now let's start this tutorial! 1. Open JCreator or NetBeans and make a java program with a file name of subString.java. 2. Import java.lang package because in this library, substring class is there.

Memory Game in JavaScript

Submitted by GeePee on
You may be familiar with "Memory Game". Here, you will learn how to create a fun game that challenges your visual ability to remember numbers. The puzzle is composed of 24 checkered tiles with hidden numbers (12 pairs). When you click two consecutive tiles with the same corresponding number, it steadily appears; if not, the tiles flip to back. And when the puzzle is solved, the game automatically

How to Generate a Random Number in Java

Submitted by donbermoy on
In this tutorial, we will going to create a program that generates a random number using Java. We will just use the Math.random() function which returns a random number between 0.0 and 1.0 Now let's start this tutorial! 1. Open JCreator or NetBeans and make a java program with a file name of randomNumber.java. 2. Import javax.swing package.

Checking an Internet Connection in C#

Submitted by donbermoy on
This is a tutorial in which we will going to create a program that can determine if your are connected in the internet or not using C#. 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. Name your program internet csharp. 2. Next, add only one Button named Button1 and labeled it as "Check Internet Connection".

Text Editor in Visual Basic

Submitted by Yorkiebar on
Introduction: This tutorial is on how to create a basic text editor in Visual Basic. Design: The design for this program is; Button, button1, Save the document. Button, button2, Open a document. Textbox, textbox1, Contain the document text. Imports: The only thing we need to import is System.IO which allows us to access files from the computers FileSystem...