1answer.
Ask question
Login Signup
Ask question
All categories
  • English
  • Mathematics
  • Social Studies
  • Business
  • History
  • Health
  • Geography
  • Biology
  • Physics
  • Chemistry
  • Computers and Technology
  • Arts
  • World Languages
  • Spanish
  • French
  • German
  • Advanced Placement (AP)
  • SAT
  • Medicine
  • Law
  • Engineering
Olegator [25]
3 years ago
14

Create a project named CarDealer that contains a Form for an automobile dealer. Include options for at least three car models. A

fter users make a selection, proceed to a new Form that contains information about the selected model. Use the Controls that you decide are best for each function. Label items on the Form appropriately, and use fonts and colors to achieve an attractive design

Engineering
1 answer:
PIT_PIT [208]3 years ago
7 0

Answer:

/****************** The code for a form application that uses radioButtons * *and displays new form based on the user selection *****************/

Using system;

Using system windows forms;

namespace CarDealer

{

Public partial class Form1 : Form

{

public Form1()

{

//default constructor to initialize components

InitializeComponent();

}

//when user clicks on the details button

private void detail_Click

(Object sender, EventArgs e)

{

if (model1,Checked)

{

Forms2 f = new Form2()

f.ShowDialog()

model1.Checked = false

}

if (model2.Checked)

{

Form3 f = new Form3();

f.ShowDialog();

model2.Checked = false;

}

if (model3.Checked)

{

Form4 f = new Form4();

f.ShowDialog();

model3.Checked = false;

}

}

}

}

Explanation:

Program plan

- Design form: Place label controls with text as select car model and one empty label control to display total price. Change front type and size from each other labels properties window.

- Add three radio buttons with text Renault Kwit, Tata Tiago, Mahindra KUV 100.

- Add button with text View Details.

- Add 3 new windows form from project menu for each car model.

- Change form name and respective car models.

- Place picturebox control to each form by using image property add .jpeg image and place label control containing price of each model to each form

- When user select car model and click on view details, new form containing car model details is displayed.

Form Design is attached below

You might be interested in
A 35 ft long solid steel rod is subjected to a load of 8,000 lb. This load causes the rod to stretch 0.266 in. The modulus of el
solong [7]

Answer:

53.67

Explanation:

3 0
3 years ago
This is hard please help me you will give brainlist
Musya8 [376]
It spirals clockwise
5 0
3 years ago
Read 2 more answers
Which of the following explains the main reason to cut a piece of wood on the outside of the measurement mark?
maks197457 [2]
I think it’s D ?? I’m not completely sure tho
4 0
3 years ago
Meaning of <br> Evaporation
Sedaia [141]

Answer:

The process from a liquid to a vapor.

Explanation:

Water is evaporated by heating up and turning into a vapor.

8 0
3 years ago
Read 2 more answers
A 2-mm-diameter electrical wire is insulated by a 2-mm-thick rubberized sheath (k = 0.13 W/m K), and the wire/sheath interface i
Semmy [17]

Answer:

maximum allowable electrical power=4.51W/m

critical radius of the insulation=13mm

Explanation:

Hello!

To solve this heat transfer problem we must initially draw the wire and interpret the whole problem (see attached image)

Subsequently, consider the heat transfer equation from the internal part of the tube to the external air, taking into account the resistance by convection, and  conduction as shown in the attached image

to find the critical insulation radius we must divide the conductivity of the material by the external convective coefficient

r=\frac{k}{h} =\frac{0.13}{10}=0.013m=13mm

3 0
3 years ago
Other questions:
  • What does the following program segment do? Declare Count As Integer Declare Sum As Integer Set Sum = 0 For (Count = 1; Count &l
    15·1 answer
  • Consider a system with two tasks, Task1 and Task2. Task1 has a period of 200 ms, and Task2 has a period of 300 ms. All tasks ini
    5·1 answer
  • Types of technology include:
    8·1 answer
  • Power is a fundamental dimension. a) True b) False
    15·1 answer
  • 2. One of the many methods used for drying air is to cool the air below the dew point so that condensation or freezing of the mo
    12·1 answer
  • Sadadasdasdasdasdadaaasd1
    14·1 answer
  • A ship tows a submerged cylinder, 1.5 m in diameter and 22 m long, at U = 5 m/s in fresh water at 20°C. Estimate the towing powe
    14·1 answer
  • 4.7 If the maximum tensile force in any of the truss members must be limited to 22 kN, and the maximum compressive force must be
    9·1 answer
  • The art of manipulating, influencing, or deceiving you into taking some action that isn’t in your best interest or in the best i
    5·1 answer
  • In an ungrounded electrical systems with conductors installed in grounded metal raceways and enclosures, what is the voltage fro
    9·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!