Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Visual Basic project question: Project 1 Specifications: Metric Conversion Write a program to convert a U.S. Customary System length in miles, yards, feet, and inches

Visual Basic project question: Project 1 Specifications: Metric Conversion 

Write a program to convert a U.S. Customary System length in miles, yards, feet, and inches to a Metric System length in kilometers, meters, and centimeters. A Sample run is shown below. After the number of miles, yards, feet, and inches are read from the text boxes, the length should be converted entirely to inches and then divided by 39.37 to obtain the value in meters. The Int function should be used to break the total number of meters into a whole number of kilometers and meters. The number of centimeters should be displayed to one decimal place. Use the naming convention provided for all controls on the form and all variables used. The needed formulas are as follows:

dblTotal_inches = (63360 * intMiles) + (36 * intYards) + (12 * intFeet) + intInches

dblTotal_meters = dblTotal_inches / 39.37 intKilometers = Int(dblTotal_meters/1000)

Points: 1) Every procedure has a comment 2) Block comment at beginning of Class Form 3) All objects follow the naming convention 4) Form constructed correctly (Appearance only) 5) Program inputs data from textboxes to variables

6) Calculates the Metric Values correctly 7) The displays values using correct formatting

8) Ensure the tab order is correct from Miles

image text in transcribed

Shown at Start up: .- Project1: Length Conversion x Miles: lo Yards: 0 Convert To Metric Feet: 10 Inches: 0 0 Shown after entering data and clicking on button: Project1: Length Conversion OX Miles: 5 Yards: 20 Convert To Metric Feet: 2 Inches: 4 The Metric Length is 8 kilometers, 65 meters, 73.5 centimeters

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Genomes And Databases On The Internet A Practical Guide To Functions And Applications

Authors: Paul Rangel

1st Edition

189848631X, 978-1898486312

More Books

Students also viewed these Databases questions

Question

Are Costco's prices too low? Why or why not?

Answered: 1 week ago

Question

Understand the principles of a learning organization.

Answered: 1 week ago

Question

=+What is the extent of the use of each type of IE?

Answered: 1 week ago