Purchase Solution

C# Windows Forms Application for Car Rental Company

Not what you're looking for?

Ask Custom Question

Create a Windows Form Application in C# as per the following guidelines.

1. Create a Form for a car rental company and set the form text property to Car Rental and the form backcolor to GradientInactiveCaption.
2. Allow the user to select from a list of car styles: Compact, Standard, or Luxury.
3. Use a calendar that defaults to the current day and allows the user to select a future date when the car will be returned.
4. Add a Selection Complete button.
5. After these two selections are made, the user will click the Selection Complete button that will compute the total price of rental.
6. The number of days that the customer will have the car will be determined by the difference between the current date and the future date selected on the calendar.
7. The total price will be the number of computed rental days times the cost for the model of car selected ($19.95/day for Compact, $24.95/day for Standard and $39/day for Luxury).
8. Display the Number of Rental Days: and Total Price is: values on the form in two separate non-updateable controls.
9. Add an Exit button that will close the application.
10. Each button will have a Light Cyan backcolor property.

Purchase this Solution

Solution Summary

The solution contains a C# windows forms application form with a nice user interface using calendar control to specify the return date.

Solution Preview

Please find attached the zipped file containing C# project. Rename the project, solution and file names accordingly with your last name.

All the code logic is ...

Purchase this Solution


Free BrainMass Quizzes
Java loops

This quiz checks your knowledge of for and while loops in Java. For and while loops are essential building blocks for all Java programs. Having a solid understanding of these constructs is critical for success in programming Java.

Word 2010: Table of Contents

Ever wondered where a Table of Contents in a Word document comes from? Maybe you need a refresher on the topic? This quiz will remind you of the keywords and options used when working with a T.O.C. in Word 2010.

Basic Networking Questions

This quiz consists of some basic networking questions.

C# variables and classes

This quiz contains questions about C# classes and variables.

Inserting and deleting in a linked list

This quiz tests your understanding of how to insert and delete elements in a linked list. Understanding of the use of linked lists, and the related performance aspects, is an important fundamental skill of computer science data structures.