
-> ATM Simulator Version 1.0
Created by Izzat Zainol using Microsoft Visual C# 2008 Express Edition
Description:
This is a basic ATM simulation and it will give the idea on how transaction were made by a real ATM. It has a login page. An account number will substitute our ATM card in this situation. Once you are login, you will be presented a menu varies from check your balance, deposit, withdrawal and quick withdrawal.
This is a login page.

This is the welcome screen soon after you login in. You can choose your operation back and forth from here.

Mine the silly girlish background. I’m in loved with things that has retro touch in it
I might stress this is very basic function of ATM. I just done it for my C# Course Training provided by MDEC. So I thought it would be a good idea if I share the code and it might benefits others. If you have any suggestions or features that you would like to see in this ATM simulator please do so in the comment form below. I will try my best to add it. Also notify me any bugs or error that you encounter.
Instruction on how to use the program. First download the file. Extract it into one folder. In that archive files includes all the Microsoft Visual C# 2008 programming files together with the database that being used for this ATM simulator. Database file named MDECBank.mdf.
Please don’t forget to update your connection strings with the database details
Open up GlobalDBConnection file and edit the database value to your respective database file location.
//Connection to database
private string con = "Data Source=.\\SQLEXPRESS;AttachDbFilename=C:\\Users\\Izzatz\\Desktop\\MDECBank.mdf;Integrated Security=True;Connect Timeout=30;User Instance=True";
The default login is;
Account number : 123
Pin Number : 123
The default login will be my account, Izzat Zainol. You can edit all of these details in database explorer later.
Version History
Version 1.0 – (14 June 2010)
-Initial release
