
PreferredCustomer Class
Program plan:
Design the form:
Place a four text boxes control on the form, and change its name and properties to get the full name, address, phone number, and amount purchased from the user.
Place a four label boxes control on the form, and change its name and properties.
Place a one radio buttons control on the form, and change its name and properties.
Place a command button on the form, and change its name and properties to retrieve the object properties and then display the values in message box.
In code window, write the code:
Program.cs:
Include the required libraries.
Define the namespace “Program11_5”.
Define a class “Program”.
Define a constructor for the class.
Define required functions to run “Form1”.
Form1.cs:
Include the required libraries.
Define namespace “Program11_5”.
Define a class “Form1”.
In Form1_Load() method,
Create an object for Customer derived class.
Assign the text box input to field of base class using derived class object.
Display the retrieved fields in message box.
Close the application.
Person.cs:
Include the required libraries.
Define namespace “Program11_5”.
Define a base class “Person”.
Declare the required fields.
Define the parameterless constructor.
Define Name, address, and phone number property to use get and set methods.
Customer.cs:
Include the required libraries.
Define namespace “Program11_5”.
Define a derived class “Customer” which is derived from base class “Person”.
Declare the required fields.
Define the parameterless constructor to initialize the required fields.
Define Customer number and addToMailList property to use get and set methods.
PreferredCustomer.cs:
Include the required libraries.
Define namespace “Program11_5”.
Define a derived class “PreferredCustomer” which is derived from base class “Customer”. But this “Customer” class is derived from base class “Person”.
Declare the required fields.
Define the parameterless constructor to initialize the required fields.
Define purchased amount and discount level property to use get and set methods. Calculate the discount level based on purchased amount.
Form Design:
View the Form Design in IDE.
Set the Form Control properties in Properties window as follows:
Object | Property | Setting |
Form1 | Text | Program11_5 |
label1 | Text | Full Name: |
label2 | Text | Address: |
label3 | Text | Phone Number: |
Label4 | Text | Amount Purchased: $ |
textBox1 | Text | (Empty) |
textBox2 | Text | (Empty) |
textBox3 | Text | (Empty) |
textBox4 | Text | (Empty) |
radioButton1 | Text | Don’t add me to mailing list |
btnDisplay | Text | Display |
Add four label box controls to the form from Toolbox.
Add four text box controls to the form from Toolbox.
Add one radio button control to the form from Toolbox.
Add one command button control to the form from Toolbox.

Want to see the full answer?
Check out a sample textbook solution
Chapter 11 Solutions
Pearson eText for Starting out with Visual C# -- Instant Access (Pearson+)
- How do the concepts of balancing and leveling affect the process of creating a data model of a system? thanksarrow_forwardwhat is the relationship between a Context Diagram and Diagram 0 in the DFD process. I need to Use an examplearrow_forwardWord Processing The assignment is a newsletter for your friends and family to let them know what’s going on in your life. Your document cannot contain profanity or obscene material—this is a business assignment. The minimum requirements for your newsletter are listed below. It should contain: 2 – 4 pages Your name A title using WordArt with one or more effects applied Articles with formatted titles using a font and color different than that of the article text A section of at least 2 columns Headers and page numbers on all pages except the first page. A bulleted or numbered list A relevant picture or clip art A formatted table Tabs with leaders going to the tabbed items At least one Sidebar Your name as the document author Boldface, italicized, and underlined text A paragraph with justified margins that is shaded and has a border A paragraph with different line spacing than the rest of the document A left, right, or both indented paragraph NOTE: If providing information from outside…arrow_forward
- You are designing a set of firewall rules for server subnet. You have a Web server that constantly gets high volume of traffic from both internal and public clients, a file server that gets moderate use during regular business hours, a VPN appliance used by sales team when they have occasional travels, and an application server for custom apps served on internal network. Describe the firewall rules you would create and the order in which you would place them. Explain why.arrow_forwardPlease original work In the progression from raw data to actionable knowledge, business analysts play a crucial role in transforming and interpreting data to support strategic decision-making. What do you think are the most important skills a business analyst needs to effectively navigate the transition from data to information and then to knowledge? How can organizations ensure that analysts are equipped to extract meaningful insights that drive informed decisions? Share examples or insights from your own experiences or studies. Please cite in text references and add weblinksarrow_forwardResearch enterprise network services commonly performed by Linux servers. Choose 3 and describe their function, as well as why they are typically set up on Linux machines.arrow_forward
- The term color tone refers to the "temperature" of a photo. Question 17Select one: True Falsearrow_forwardYou cannot add 3-dimensional effects to a shape. Question 18Select one: True Falsearrow_forwardWhich gallery shows available shapes for WordArt text? Question 10Select one: a. Transform b. Shape Styles c. Themes d. WordArt Stylesarrow_forward
- Database System ConceptsComputer ScienceISBN:9780078022159Author:Abraham Silberschatz Professor, Henry F. Korth, S. SudarshanPublisher:McGraw-Hill EducationStarting Out with Python (4th Edition)Computer ScienceISBN:9780134444321Author:Tony GaddisPublisher:PEARSONDigital Fundamentals (11th Edition)Computer ScienceISBN:9780132737968Author:Thomas L. FloydPublisher:PEARSON
- C How to Program (8th Edition)Computer ScienceISBN:9780133976892Author:Paul J. Deitel, Harvey DeitelPublisher:PEARSONDatabase Systems: Design, Implementation, & Manag...Computer ScienceISBN:9781337627900Author:Carlos Coronel, Steven MorrisPublisher:Cengage LearningProgrammable Logic ControllersComputer ScienceISBN:9780073373843Author:Frank D. PetruzellaPublisher:McGraw-Hill Education





