i'm tring to work on a atm program that works just like an atm but i have no clue were to start. i need to set a pin of 123 this is what i'm tring to do
Program Details:
Beginning Balance: The program should begin with a balance of $1,000.00
Enter Button: Used to enter personal identification number, and complete user functions.
PIN Number: The program must have only one valid PIN (123). Initially the user must enter the valid pin in order to access the user functions. Invalid PIN entries must be ignored and cause an error message to be displayed.
Clear Button: Resets all application variables to initial values. Essentially restarting the application from the beginning
Exit Button: Used to end program execution.
User Functions: Initially disabled until a valid PIN is entered.
Balance Button: Used to display the accounts current balance.
Balance must be displayed in a currency format.
Deposit Button: Used to increase the account balance. The user should be prompted to enter a deposit amount (in currency format) and to press the enter button. The deposit should be confirmed and the new account balance displayed (in currency format).
Withdrawal Button: Used to decrease the account balance. The user should be prompted to enter a withdrawal amount (in currency format) and to press the enter button. The withdrawal should be confirmed and the new account balance displayed (in currency format). Withdrawals greater than the current account balance must be rejected and an error message should be displayed.
Digit Keys: Must be implemented as a control array. Used to enter PINs and amounts for deposits and withdrawals. Entries must be limited to having only one decimal point.
Display Box: Users must not be allowed to directly enter any data into the applications display box. All entries into the display box must be made though the digit keys. Output should be displayed in the proper format (i.e. dollar amounts with dollar sign, decimal point, and two decimal places).
I have the form set up just dont know weere to start with the codeing
Program Details:
Beginning Balance: The program should begin with a balance of $1,000.00
Enter Button: Used to enter personal identification number, and complete user functions.
PIN Number: The program must have only one valid PIN (123). Initially the user must enter the valid pin in order to access the user functions. Invalid PIN entries must be ignored and cause an error message to be displayed.
Clear Button: Resets all application variables to initial values. Essentially restarting the application from the beginning
Exit Button: Used to end program execution.
User Functions: Initially disabled until a valid PIN is entered.
Balance Button: Used to display the accounts current balance.
Balance must be displayed in a currency format.
Deposit Button: Used to increase the account balance. The user should be prompted to enter a deposit amount (in currency format) and to press the enter button. The deposit should be confirmed and the new account balance displayed (in currency format).
Withdrawal Button: Used to decrease the account balance. The user should be prompted to enter a withdrawal amount (in currency format) and to press the enter button. The withdrawal should be confirmed and the new account balance displayed (in currency format). Withdrawals greater than the current account balance must be rejected and an error message should be displayed.
Digit Keys: Must be implemented as a control array. Used to enter PINs and amounts for deposits and withdrawals. Entries must be limited to having only one decimal point.
Display Box: Users must not be allowed to directly enter any data into the applications display box. All entries into the display box must be made though the digit keys. Output should be displayed in the proper format (i.e. dollar amounts with dollar sign, decimal point, and two decimal places).
I have the form set up just dont know weere to start with the codeing
Last edited: