Assignment:
1 Write the program in VB.NET (not Web based) with a graphical user interface. Have the user input the amount in one currency and calculate the equivalent amount in all other currencies. Assume the following currencies and their conversion rates:
1 EUR = 2 US Dollar = 3 Canadian Dollar = 4 Australian Dollar = 5 France Francs = 6 Mexico Pesos = 7 Japan Yen
Allow the user to loop back and enter new data or quit. The program should only accept numbers in the range 1 to 10,000. Insert comments to document the program.
2 Write the program in VB.NET (not Web based) with a graphical user interface. Have the user input the amount in one currency and give him a choice to either specify a currency to convert to OR calculate results for all available currency conversions. Use appropriate data structure such as Arrays. Assume the following currencies and their conversion rates:
1 EUR = 2 US Dollar = 3 Canadian Dollar = 4 Australian Dollar = 5 France Francs = 6 Mexico Pesos = 7 Japan Yen
Allow the user to loop back and enter new data or quit. Insert comments to document the program. The program should only accept numbers in the range 1 to 10,000.
3 Write the program in VB.NET (not Web based) with a graphical user interface. Have the user input the amount in one currency and give him a choice to either specify a currency to convert to OR calculate results for all available currency conversions. Assume the following currencies and their conversion rates:
1 EUR = 2 US Dollar = 3 Canadian Dollar = 4 Australian Dollar = 5 France Francs = 6 Mexico Pesos = 7 Japan Yen
Load these conversion rates from a file. Clearly point out the location of the file in your documentation. Allow the user to loop back and enter new data or quit. Insert comments to document the program. The program should only accept numbers in the range 1 to 10,000.
4 Write the program in VB.NET with a graphical user interface. Make the program Web based. Have the user input the amount in one currency and give him a choice to either specify a currency to convert to OR calculate results for all available currency conversions. Assume the following currencies and their conversion rates:
1 EUR = 2 US Dollar = 3 Canadian Dollar = 4 Australian Dollar = 5 France Francs = 6 Mexico Pesos = 7 Japan Yen
Load these conversion rates from a file. Allow the user to loop back and enter new data or quit. The program should only accept numbers in the range 1 to 10,000. Insert comments to document the program.