HW2 VB .Net Loan Payment Due in class Friday 22 November

Slides:



Advertisements
Similar presentations
Enter question text... 1.Enter answer text.... Enter question text... 1.Enter answer text...
Advertisements

Microsoft Visual Basic: Reloaded Chapter Seven More on the Repetition Structure.
Enter question text... 1.Enter answer text.... Enter question text... 1.Enter answer text...
Microsoft Excel Setting up Constants; the Payment, Present Value, and Conditional functions; What-If analysis.
Microsoft Visual Basic: Reloaded Chapter Six Repeating Program Instructions.
Microsoft Excel How to do a quick loan using PMT.
Repeating Program Instructions Chapter Microsoft Visual Basic.NET: Reloaded 1.
With Microsoft Access 2010 © 2011 Pearson Education, Inc. Publishing as Prentice Hall1 PowerPoint Presentation to Accompany GO! with Microsoft ® Access.
T U T O R I A L  2009 Pearson Education, Inc. All rights reserved. 1 9 Car Payment Calculator Application Introducing the Do While...Loop and Do Until...Loop.
Microsoft Excel How to make a SPREADSHEET. Microsoft Excel IT is recommended that you have EXCEL running at the same time. You can try what you are reading.
XP Excel Tutorial 3 Working with Formulas and Functions.
Visual Basic 2010 How to Program © by Pearson Education, Inc. All Rights Reserved.
Excel Ch 4 Review.
Writing JavaScript Functions. Goals By the end of this unit, you should understand … How to breakdown applications into individual, re-usable modules.
Visual Basic.NET Comprehensive Concepts and Techniques Chapter 4 Working with Variables, Constants, Data Types, and Expressions.
Salary Calculator. Design a page like the following.
PHP : Validating forms and loops. Some things for helping you to validate input  The isset function can be used to test if a php variable is passed.
Salary Calculator. Design a page like the following.
Variables and Expressions Programming Right from the Start with Visual Basic.NET 1/e 7.
 =   –  + ++= = = = = CALCULATING FEDERAL INCOME TAX Lesson 25-3, page 647.
T U T O R I A L  2009 Pearson Education, Inc. All rights reserved Enhanced Car Payment Calculator Application Introducing Exception Handling.
Week 13 Simple Interest. Lesson Objectives After you have completed this lesson, you will be able to: Represent or solve simple interest problems. Solve.
How to Complete Exit Counseling
LSP 120: Quantitative Reasoning and Technological Literacy
Cell phone use is prohibited.
Excel Tutorial 3 Working with Formulas and Functions
Microsoft Excel.
AP3 You will have 5 minutes for each page to review the Applied Practice questions with your group. Use this as an opportunity to have meaningful dialogue.
Excel Part 3 Working with Formulas and Functions
Chapter 8: Writing Graphical User Interfaces
Value-Returning Functions
Tutorial 9 - Car Payment Calculator Application Introducing the while Repetition Statement Outline 9.1 Test-Driving the Car Payment Calculator Application.
LSP 120: Quantitative Reasoning and Technological Literacy
Financial calculators for Real Estate Finance
3.01 Apply Controls Associated With Visual Studio Form
3.01 Apply Controls Associated With Visual Studio Form
Analyzing Data Using Formulas
Excel Formatting Rules
Formulas A formula is a sequence of values, cell references and operators that produce a new value. = E8 + 3*(E10 - E11) Formulas always start with an.
Microsoft Excel 2003 Illustrated Complete
Data types, Expressions and assignment, Input from User
Grauer and Barber Series Microsoft Excel Chapter Three
Repeating Program Instructions
Programming with Microsoft Visual Basic 2008 Fourth Edition
POS 408 Education for Service-- snaptutorial.com.
POS 408 Teaching Effectively-- snaptutorial.com
Excel Navigation.
Microsoft Visual Basic 2005: Reloaded Second Edition
Intro to Financial Management
HW4 VB .Net Student Database Project Due COB Wednesday 18 December
WEB PROGRAMMING JavaScript.
Navya Thum February 13, 2013 Day 7: MICROSOFT EXCEL Navya Thum February 13, 2013.
Visual Basic Programming Chapter Four Notes Working with Variables, Constants, Data Types, and Expressions GROUPBOX CONTROL The _____________________________________.
HOW TO CREATE A CLASS Steps:
Excel Navigation.
CIS 16 Application Development Programming with Visual Basic
VB.NET PROGRAMMING FINAL EXAM TEST REVIEW.
Excel Navigation.
Calculating Loan Repayments
Chapter 6 Lesson 4 PMT Function.
Excel Navigation.
Home loan for $185,000 for 30 years at 8.5%
SECTION 10-2 Monthly Payment and Total Interest pp
Aniko Balogh CEU Computer & Statistics Center
Excel Tutorial 3 Working with Formulas and Functions
Excel Navigation.
Spreadsheets and Data Management
4d – Program Design Lingma Acheson CSCI N331 VB .NET Programming
1. Earning and managing money
HW1 Business Card Due in class Friday 15 November
Presentation transcript:

HW2 VB .Net Loan Payment Due in class Friday 22 November IS3001 George Zolla Naval Postgraduate School Monterey, CA

HW2 Requirements 1. Write a VB .Net project that calculates the monthly payment of a loan. The program will allow the user to input values for the amount of the loan, the annual interest rate, and the length of the loan. The program will perform the calculation and then display the results to the user. 11/18/2018

HW2 Requirements 2. Use the conventions recommended in the text and the guidance and requirements contained in the Project Evaluation Sheet including project submission instructions. Plus: Use meaningful names for controls, variables and the form Pay particular attention to the data types used. Ensure the Tab Sequence mirrors the user input sequence. Use Default and Cancel buttons Use colors and images to enhance the visual effectiveness of the project. 11/18/2018

HW2 Requirements 3. The Payment function on pages 557 & 558 may be used to calculate the monthly payment: Pmt(dblMonthlyRate, dblMonths, dblAmount) 4. You must convert the user's textbox input from text to the data type double: CDbl(ExpressiontoConvert)  'Convert to Double 5. Format the results with the FormatCurrency function found on page 114. 11/18/2018

HW2 Requirements 6. The following formulas may be used in your solution: dblMonthlyRate = CDbl(txtRate.Text) /1200 dblMonths = CDbl(txtYears.Text) * 12 dblAmount = CDbl(txtAmount.Text) lblMonthlyPayment.Text = - Pmt(dblMonthlyRate, dblMonths, dblAmount) Note: I divided the Monthly rate by "1200" vice "12“ to allow the user to enter a whole number (i.e 7.0 vice .07). You need a minus sign before the Pmt function to make a positive answer. 11/18/2018