Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Visual Basic: Change forms title to: Your full name Loan Assignment 3. Form contains four Labels, three TextBoxes, one ListBox, and three Button controls. Use

Visual Basic:

Change forms title to: Your full name Loan Assignment 3. Form contains four Labels, three TextBoxes, one ListBox, and three Button controls. Use labels to identify loan components (three TextBoxes) and results (ListBox). ListBox displays the Month, Monthly Payment, Principal, Interest and Loan Balance for each month. Buttons are to Calculate, Clear Input and Exit program. See below Form Layout with Controls for more details. Note: The control Names are shown in callouts. You will declare two set of variables: - Input variables: Loan Amount (Double) Period (Integer) Interest (Double) - Output variables: Count (Integer, to be used for For Loop to keep track of Loan period) Months (Integer, to calculate Loan number of months Payment (Double, for monthly payment) ToInterest (Double, how much of the monthly payment to Interest) ToPrincipal (Double, how much of the monthly payment to Principal) Balance (Double, displays loan's balance on monthly basis) Output (String, to display Month, Monthly payment, ToPrincipal, ToInterest and Balance in the ListBox. To convert Interest Rate to monthly interest rate, do the following: 1. divide by 100; 2. divide by 12. To calculate Number of Years into months, do the following: multiply by 12. To calculate Monthly payment, use PMT function: PMT(interest rate, months, -loan amount). Pay attention to minus symbol in front of loan amount. Create a For ... Next loop to calculate the values you need for ListBox For loop starts with: For Counter = 1 to months To calculate ToInterest, do the following: Balance * Interest To calculate ToPrincipal, do the following: Payment - ToInterest To calculate Balance, do the following: Balance - ToPrincipal Build the string for displaying Output in ListBox. See my comments in Discussion. Items to note: Label control that displays: Month, Payment, ToInterest, ToPrincipal and Loan is one control. Use spaces to type in its Text property. 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. Text property of controls must use the text shown in the image below. Clear Input button, clears TextBoxes and ListBox. 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 delete them. Run the program, enter values for Loan, Period and Interest rate, then click Calculate button, to see the Monthly information display in the ListBox. See example for the ListBox entry below.

Write a simple program.

image text in transcribedimage text in transcribed

Yourname-Loan-Assignment 3 Amount of Loan txtLoan Labels Number of Years txtPeriod Annual Interest Rate txtlnterestRate Month Payment To Interest To Principal Balance ListBox IstOutput Calculate Clear input Exit Buttons: Name them according to their text property. i.e., btnClearlnput Yourname - Loan - Assignment 3 Amount of Loan Number of Years Annual Interest Rate 7.75 Month Payment Interest T0 Principal Balance 3 0001 S3,223.86 $2,906.25 $317.61 $449,682.39 0002 $3,223.86 $2,904.20 $319.66 $449,362.74 0003 S3,223.86 $2,902.13 $321.72 $449,041.02 0004 $3,223.86 $2,900.06 $323.80 $448,717.22 0005 S3,223.86 $2,897.97 $325.89 $448,391.33 0006 $3,223.86 $2,895.86 $327.99 S448,063.34 0007 $3,223.86 $2,893.74 $330.11 $447,733.22 0008 $3,223.86 $2,891.61 $332.24 $447,400.98 0009 S3,223.86 $2,889.46 $334.39 $447,066.59 0010 $3,223.86 $2,887.31 $336.55 S446,730.04 0011 $3,223.86 $2,885.13 $338.72 $446,391.31 V Calculate Clear input

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

Database Machine Performance Modeling Methodologies And Evaluation Strategies Lncs 257

Authors: Francesca Cesarini ,Silvio Salza

1st Edition

3540179429, 978-3540179429

More Books

Students also viewed these Databases questions

Question

Why do experiments allow cause-and-effect inferences?

Answered: 1 week ago