THIS SHOULD BE WRITTEN IN VISUAL C# FORMS: Create an application that lets the user know how many Pounds he/she will have when they get to England based on the number of dollars they have now. Also do the reverse. Calculate how many Dollars they will have when they return based on the number of Pounds they have when in England. Do the same for travelers going to Europe. Convert Dollars to Euro and Euro to Dollars. Program should allow you to enter the customer name, destination, money converted from and money converted to. After each customer transaction the name, destination, and both money amounts should be stored on a history file. Because the exchange rate changes daily you want a system that will easily adapt to the change. Your program needs to read text file (notepad) that will contain the conversion rates. That way each morning when you get to work you can put the new rates in the text file. Your program will read the text file as soon as you turn it on (Form_Load) and be ready to make conversions that day. FOR EXAMPLE: you have a client couple coming to your office Friday morning. They are traveling to London that day. When you came in to work you updated the conversion rates for the day. Your client couple have $1,000 in US Dollars. Your program will convert that to 1,280 Pound Sterling (assuming the exchange rate for the day is 1.28). THIS SHOULD USE ONLY METHODS/CONTENT FOUND IN Starting Out with Visual C#® 5/e CHAPTERS 1 THOUGH 5 ONLY CRITERIA User tabs logically from one entry/button to the next. Body of program is well commented. Program has no unwanted Event Handlers. Program uses a proper naming convention. Exchange rate data should be read in Form Load using a loop. History records are appended to the history file for each customer. Program calculations are accurate and based on rates read in Form Load. Program handles non-numeric entry. Program handles negative entry. Program opens, reads, and closes text files properly. Travel is limited to Europe, Great Britain, and the United States. Exit button Clear button (properly sets focus)
THIS SHOULD BE WRITTEN IN VISUAL C# FORMS:
Create an application that lets the user know how many Pounds he/she will have when they get to England based on the number of dollars they have now. Also do the reverse. Calculate how many Dollars they will have when they return based on the number of Pounds they have when in England. Do the same for travelers going to Europe. Convert Dollars to Euro and Euro to Dollars. Program should allow you to enter the customer name, destination, money converted from and money converted to. After each customer transaction the name, destination, and both money amounts should be stored on a history file. Because the exchange rate changes daily you want a system that will easily adapt to the change. Your program needs to read text file (notepad) that will contain the conversion rates. That way each morning when you get to work you can put the new rates in the text file. Your program will read the text file as soon as you turn it on (Form_Load) and be ready to make conversions that day.
FOR EXAMPLE: you have a client couple coming to your office Friday morning. They are traveling to London that day. When you came in to work you updated the conversion rates for the day. Your client couple have $1,000 in US Dollars. Your program will convert that to 1,280 Pound Sterling (assuming the exchange rate for the day is 1.28).
THIS SHOULD USE ONLY METHODS/CONTENT FOUND IN
Starting Out with Visual C#® 5/e
CHAPTERS 1 THOUGH 5 ONLY
CRITERIA
- User tabs logically from one entry/button to the next.
- Body of program is well commented.
- Program has no unwanted Event Handlers.
- Program uses a proper naming convention.
- Exchange rate data should be read in Form Load using a loop.
- History records are appended to the history file for each customer.
- Program calculations are accurate and based on rates read in Form Load.
- Program handles non-numeric entry.
- Program handles negative entry.
- Program opens, reads, and closes text files properly.
- Travel is limited to Europe, Great Britain, and the United States.
- Exit button
- Clear button (properly sets focus)
Step by step
Solved in 4 steps with 3 images