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
OleMash [197]
3 years ago
9

Create an application that calculates and displays the amount of a homeowner's property tax. The tax is 1.35% of the property's

assessed value, which will be entered by the user. a.) prepare a planning chart for the application. b.) draw a sketch of an appropiate interface. Be sure to follow the Gui design guidelines covered in the chapter.
C.) create a Windows Forms application. Use the following names for the project and solution, respectively: Tax project and Tax solution. Save the application in the VB2017/chap02 folder. Change the appropriate properties of the form. Also, be sure to verify the name of the startup form.
D.) use your planning Chart as a guide when building the interface.
E.) code the exit button. (You do not need to code the button that calculates and displays the tax.) Save the solution and then start the application. Test the access keys, tab orders, and exit button and then close the solution.

Please help me!!! Fast!!!

Computers and Technology
1 answer:
Valentin [98]3 years ago
5 0

Answer:

a) Planning chart:

Create the form, and add two buttons, calculate and exit, and add two labels and two textboxes, as shown in the second image. Now code the buttons as shown in the image file, and debug. The required program is ready.

b) The design is as shown in the second image,

c) And the code for the windows form is also ready. Steps in brief. Open visual studio, Go to file menu and hit on New. Now choose Windows form from project type, and give the project name VB2017/chap02. Now code as explained in A, and as explained in images.

D) We just need to follow the plan to build the interface.

E) The code of exit button. Double click exit button to enter code-behind, and add this.Close(); And that's it, we have the project ready.

Explanation:

Please check the answer section.

And If you want Rounded off value, then you need to all below code in calc_click method. Double click on calc, and code behind will appear. Add the below code over there:

double tax = Convert.ToDouble((textBox1.Text)) * 5/100;

           double Roundedtax = Math.Round(tax, 2);

           textBox2.Text = Convert.ToString(Roundedtax);

           textBox2.Show();

           textBox3.Text = Convert.ToString(Convert.ToDouble(textBox1.Text) + Convert.ToDouble(textBox2.Text));

           textBox3.Show();

For dollar sign, add a label after each textbox, and change its text to $s.

You might be interested in
The HTML tag for the smallest heading is​ what​
Gre4nikov [31]

Answer:

The HTML <h1> to <h6> tag is used to define headings in an HTML document. <h1> defines largest heading and <h6> defines smallest heading.

Explanation:

5 0
3 years ago
The Jacquard Loom used ______________ to change the operation of the loom.
BlackZzzverrR [31]

Answer:a machine loom

Explanation:

8 0
2 years ago
Match the image to its type.
boyakko [2]

Warm Colors:

  • <em>Red</em> flowers
  • Oranges

Cool Colors:

  • <em>Blue </em>skies
  • <em>Purple</em> butterflies

Neutral Colors:

  • <em>Brown</em> wood
  • <em>White</em> birds

Reds, oranges, and yellows are considered warm, and greens, teals, blues, and purples are considered cool. Colors such as white, black, brown, or gray are all neutral.

3 0
3 years ago
A store employee has a spreadsheet of the power tools he sells in Column A and their corresponding prices in Column B. In cell C
avanturin [10]

Answer:

Excel MIN Function

Explanation:

Excel MIN Function is used to get the smallest value which means, it returns the smallest value in the array(a set of data).

syntax is =MIN (number1, [number2], ...)

3 0
3 years ago
What is another name for a port on routers?
Natali5045456 [20]
Another name for port on routers is interface (port interface). The interface is defined with its physical position on the router and its IP address. Also other properties can be defined <span>such as the speed, maximum transmission unit (MTU), and the encapsulation type. 
</span>Defining the settings on the router is called configuration. 
6 0
3 years ago
Other questions:
  • A(n) _____ is a simple database program whose records have no relationship to one another.
    10·1 answer
  • Why is it important to begin development of a software solution with a programming design in place? A programming design summari
    11·2 answers
  • Que funcion tiene la sombrilla forrada de aluminio​
    6·1 answer
  • IOS jail broken or Android unrooted which is better to hack with
    6·1 answer
  • What is the name of the FOLDER in which the file named "script" is contained?
    13·1 answer
  • In computer science how can you define "copyright, designs and patents act 1988"?​
    8·1 answer
  • What is the definition of a flowchart? *
    13·1 answer
  • What is the main advantage that a website builder offers for web development?
    9·2 answers
  • Sam works in a real estate office. An offer comes in on a house but the homeowners are on vacation. He needs the homeowners to s
    13·1 answer
  • What Is What is the difference between system software and application software?<br>​
    11·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!