Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Visual Basic: Summary : In this assignment you create a program to convert feet and inches to meter. The conversion is done with a function

Visual Basic:

Summary: In this assignment you create a program to convert feet and inches to meter. The conversion is done with a function you write in the program and then call it.

Input data:

Feet: User enters a number for feet

Period: User enters a number for inches

Instructions:

Create a new project and name it as yourlastname-firstname-Assignment4. Save this project in VB folder you created earlier.

Change form?s title to: Your full name ? Assignment 4 - Conversion.

Form contains four Labels, two TextBoxes, and three Button controls.

Use labels to identify Feet, Inches and Meters. See below Form Layout with Controls for more details. Note: You will use the same control Names shown below.

- Input variables:

Feet (Single)

Inches (Single)

- Output variables:

Meters (Single)

To convert feet and inches to meters, use this formula: (feet * 12 + inches) * 0.0254. 0.0254 is a constant value to convert English system to Metric. Make sure to declare a Constant for this literal number.

You construct a Function for this conversion. It will be placed after End Sub for btnConvert_Click.

Start the Function code with typing Function keyword, followed by the function name, followed by parameters, followed by function type.

This Function has two parameters; feet and inches. See below for suggested program's infrastructure.

Items to note:.

Variables names must follow the conventions and rules explained earlier and must have proper data type for the values that will be stored in them.

Appearance of the form is very important; Make sure that your design is clean; Spelling is important.

Clear button, clears TextBoxes and Label control that displays Meters.

Exit button, closes the Form.

You will write the code for the three buttons.

Avoid double-clicking on TextBox and Label Controls to create unnecessary code. If you do, please delete them.

Run the program, enter values for Feet and Inches, then click Convert button, to see the Meters equivalent displays in the Label control. See example for the complete program below.

Write a simple program

image

image

image

txtFeet Your Name - Assignment 4 - Conversion Feet Convert btnConvert Meters Clear btnClear Inches Exit btnExit X txtInches IblMeters

Step by Step Solution

3.40 Rating (153 Votes )

There are 3 Steps involved in it

Step: 1

Answer VB Application File Form1Designervb Partial Class Form1 Inherits SystemWindowsFormsForm Form overrides dispose to clean up the component list Protected Overrides Sub DisposeByVal disposing As B... 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

An Introduction to Programming with C++

Authors: Diane Zak

8th edition

978-1285860114

More Books

Students also viewed these Electrical Engineering questions

Question

=+b) What are the upper and lower 3s control limits?

Answered: 1 week ago