Simple ATM machine

Submitted by cngirwa on
Simple C++ application which demonstrate ATM machine. Developed using Visual C++ in Visual Studio 2008. User can; 1. Log In 2. Deposit 3. Withdraw 4. Check balance 5. View bank information 6. log out If you are interested on this project, please modify it by adding; 1. Input validation 2. Add more ATM features 3. Add more users (system only allow one user to log in) Log in credentials are

Creating a Zoom Application in VB.NET

Submitted by donbermoy on
This tutorial will teach you how to create a zoom application in vb.net. 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. 2. Have only a Timer on the Form named Timer1. 3. Now, we will code our program. We will declare first the variables.

How To Make Animated Information Bar Using HTML JavaScript

Submitted by alpha_luna on
This is a simple animated information bar created using HTML and it's pure JavaScript code. You can view from the top of the browser the information to your visitors in an eye catching way. The information bar in view will remain static on your screen above even when you scroll the page. Lastly, you can set the Frequency controls to limit the displaying information bar to once per session of your

Detect and Display the Screen Resolution in VB.NET

Submitted by donbermoy on
This tutorial will teach you how to create a program that can detect and display the screen resolution in vb.net. 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. 2. Next, add only two labels named Label1 and Label2 to get the width and the height of the resolution. 3. Now, lets start the coding. We will just put our code in our Form_Load.

Add Multiple Pictures Dynamically and Show the Selected Picture in VB.NET

Submitted by donbermoy on
This tutorial will teach you how to create a program that will add multiple pictures dynamically and will show the selected picture in the picturebox using vb.net. 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. Next, add only one Button named Button1 and one PictureBox named PictureBox1 in your Form. 3.

File Content Sorter in VB.NET

Submitted by donbermoy on
This tutorial will teach you how to create a program that sorts the content of file in vb.net. 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. 2. Next, add one button named openBTN and an OpenFileDialog1 that we will use to open a particular file such as text file. 3.

How to Display Output using Java

Submitted by GeePee on
In this tutorial, you will learn the basic elements and concepts of Java Programming language to create a Java Program. You will know the effect of an output statement in this program. I will be using the JCreator IDE in developing the program. To start in this tutorial, first open the JCreator IDE, click new and paste the following code.