Design the form above that calculates GPAs. It has a ComboBox of grades, a NumericUpDown control for credits, a button to add grades and credits to two.

Slides:



Advertisements
Similar presentations
GRADING IN MOODLE Saint James School of Medicine Prepared - Oscar Andrade - Faculty training 2014.
Advertisements

Microsoft Visual Basic: Reloaded Chapter Six Repeating Program Instructions.
1 Lab6 Lab6 ComboBox Control Properties, Methods and Events.
Control structures Part 2 iteration control To enable repetition of a statement block.
Creating a “What-If” Spreadsheet Application GPA Prediction Calculator.
Explain the Add Transcript template Review documentation needed for Adding or Editing course codes Review changes Questions Time to work with your school.
Deviation = The sum of the variables on each side of the mean will add up to 0 X
Additional Features – GPA Calculator GPA Calculator There are two options for the GPA Calculator: the Graduation Calculator and the Advice Calculator.
12.2 – Measures of Central Tendency
Android Apps: Building Blocks Module 6, Intro to I.T., Fall 2011 Sam Scott.
Lab 9 – User Forms Design. User Forms What are user forms? –Known as dialog boxes –Major ways for getting user input An example of using user forms: Monthly.
Microsoft Visual Basic 2008 CHAPTER 8 Using Procedures and Exception Handling.
1 Κατανεμημένες Διαδικτυακές Εφαρμογές Πολυμέσων Γιάννης Πετράκης.
Visual Basic.NET Comprehensive Concepts and Techniques Chapter 5 Decision Making.
How to calculate your GPA
© Copyright by Deitel & Associates, Inc. and Pearson Education Inc. All Rights Reserved. 1 Tutorial 17 – Flag Quiz Application Introducing One-Dimensional.
QTS Numeracy Skills Test On-screen questions – topics Play as slideshow in PowerPoint Press enter or click left mouse button to move on On-screen calculator.
T U T O R I A L  2009 Pearson Education, Inc. All rights reserved Class Average Application Introducing the Do...Loop While and Do...Loop Until.
1 Chapter Ten Using Controls. 2 Objectives Learn about Controls How to create a Form containing Labels How to set a Label’s Font How to add Color to a.
College Schedule Mini- Project College Prep Stats.
GPA’s Made REALLY hard.. Cumulative GPA The Cumulative GPA relies only on data found in the Transcript tab.
Operations with Scientific Notation. Warm Up To add or subtract, rewrite the numbers to the same power of 10, add or subtract the multipliers, and rewrite.
© Copyright by Deitel & Associates, Inc. and Pearson Education Inc. All Rights Reserved. 1 Tutorial 18 – Student Grades Application Introducing.
HAWKES LEARNING SYSTEMS Students Matter. Success Counts. Copyright © 2013 by Hawkes Learning Systems/Quant Systems, Inc. All rights reserved. Section 6.1.
MIS 3200 – Unit 5.1 Iteration (looping) – while loops – for loops Working with List Items.
Visual Basic.NET BASICS Lesson 11 List Boxes, For Next Loops, and Label Settings.
Deconstructing GPA Setup GRD04 Karen Bartash. Agenda What is a GPA? What is a Rank? How is the GPA calculated? Components of a GPA Setting up before defining.
T U T O R I A L  2009 Pearson Education, Inc. All rights reserved Student Grades Application Introducing Two-Dimensional Arrays and RadioButton.
COMPUTER PROGRAMMING I 3.01 Apply Controls Associated With Visual Studio Form.
FITS ENHANCEMENTS DECEMBER Fits Enhancements Enhancements have been made to FITS for primarily three reasons. –To enhance AOP/Best Guess reporting.
COMPUTER PROGRAMMING I 3.01 Apply Controls Associated With Visual Studio Form.
21/03/ Working with Controls Text and List Boxes.
Using Forms and Form Elements In Visual Basic.NET.
Visual Basic 2010 How to Program © by Pearson Education, Inc. All Rights Reserved.
ListBox and ComboBox Controls 7.5 – Book One on the computers.
COMPUTER PROGRAMMING I Apply Procedures to Develop List Box and Combo Box Objects.
4-3 Properties of Exponents Warm Up Problem of the Day
Staff Guide Moodle Forums.
Chapter 9 Programming Based on Events
© 2016, Mike Murach & Associates, Inc.
Apply Procedures to Develop Menus, List Box and Combo Box Objects
A B C D E F G H U T S R Q P O N I J K L M Z Y X W V 6 Reset scores
Tutorial 10 – Class Average Application Introducing the Do…Loop While and Do…Loop Until Repetition Statements Outline Test-Driving the Class Average.
Tutorial 9 - Car Payment Calculator Application Introducing the while Repetition Statement Outline 9.1 Test-Driving the Car Payment Calculator Application.
3.01 Apply Controls Associated With Visual Studio Form
EMR field in Portals Work History page
3.01 Apply Controls Associated With Visual Studio Form
Lesson 2-1 Properties of Numbers.
Apply Procedures to Develop Menus, List Box and Combo Box Objects
CALCULATING A GRADE POINT AVERAGE
Custom dialog boxes Unit objectives
12.2 – Measures of Central Tendency
Moodle Gradebook Kim Taylor Spring 2018.
فصل نهم از کتاب طراحی آموزشی تألیف :آر.ام گانیه
Welcome with Ifs CSC 230 (Blum).
Review Tab Click on the Review tab to: - view the entire course - use Highwire to print the course or save the file to your computer This tab allows.
Right click and select Copy
Explanation of Grades to Numbers
Determining Your Grade Point Average (GPA)
Fonts, TabControl, ListBox
Write a program that places the names of five different states in labels, and allows the user to enter guesses of the corresponding state capitals in textboxes.
Using the Last 60 Hours Calculator
Movie Rater.
Step 1 : Click “Search” To Enter The Product Details Of 1st Unit
How to Calculate your Grade Point Average
MIS 3200 – Unit 5.1 Iteration (looping) Working with List Items
Final Revision sheet- term2
Final Revision sheet- term2
4-3 Properties of Exponents Warm Up Problem of the Day
Presentation transcript:

Design the form above that calculates GPAs. It has a ComboBox of grades, a NumericUpDown control for credits, a button to add grades and credits to two separate ListBoxes. You cannot add unless a grade is selected. The Calculate button is enabled when a grade is entered into the lists.

When the Calculate button is clicked, the GPA is calculated by summing the products of the weight for a grade () by the number of credits for the course and then dividing by the sum of the credits. If a new grade/credit combination is added to the list, then the GPA label is cleared.

Grade Weights A4 A B B3 B C C2 C D D1 F0 B+ (3 credits) and A- (4 credits) (3.333 * * 4)/(3 + 4) ( )/ /

For now grade weights can be handled using a Select Case statement Select Case Grade Case "A" GradeWeight = 4 Case "A-" GradeWeight = … End Select

When the Clear button is clicked, the lists should be cleared (the ListBoxes have an Items property and the Items property has a Clear method) and the Calculate button should be disabled.