Assignment Number 4 SE4D04 Page 1 of 7 The Design of the Computer-User Interface

Size: px
Start display at page:

Download "Assignment Number 4 SE4D04 Page 1 of 7 The Design of the Computer-User Interface"

Transcription

1 Assignment Number 4 SE4D04 Page 1 of 7 "Mortgage Payment Calculator" DESIGN - A program, which can be downloaded in source form with this assignment) has been created in a VB8 form (Windows.net V2), that replicates the illustration (Figure 1) at the right, upon first execution. Briefly, the user inputs the amount of money borrowed and the applicable interest rate in separate text boxes, suitably labeled for this purpose, as well as the payment schedule (once or twice monthly), and the duration of the loan, whereupon the calculator will output the payment($) required per the pay period. COMPONENTS (As given in Figure 2.) - 'include Text Boxes, Command Buttons, Option (Radio) Buttons, Check Buttons, and uses built-in Financial functions. (See last page of assignment.) A single form (default colour and shape) which is sized to about 75% of the total vertical available screen space and its title bar contains Assignment #, student name and Id ; Two Command Buttons captioned as follows: 1. Calculate 2. Close Four TextBoxes: 1. User input for an integer amount of Figure 1: The first screen that appears upon program execution. All buttons and user input boxes are active. dollars representing the amount borrowed (loan amount) labeled as Amount Borrowed ; 2. User input box for an integer representing the expected interest rate (in percentage); 3. Two text output boxes used by the program to provide the Payment($) per pay period (selected via checkboxes (see below)) either monthly or twice monthly, and the total amount of interest paid for the duration of the loan period; One set (i.e. a panel as a container) of intrinsic (only one can be user set) radio buttons which exhibit automatically mutually exclusive selection (i.e. only one button can be selected, removing another set button if one is already selected) representing the amortization period in integer years for explicit values of 15, 20, 25 & 30 years; and One set of checkboxes that must be manually programmed to behave mutually exclusively upon selection (as do the radio buttons where only one can be set), involving either twice monthly payment bi-monthly or once monthly monthly payments.

2 Assignment Number 4 SE4D04 Page 2 of 7 FUNCTIONALITY - Events: 1. On form load (or program execution run from *.exe file when compiled) all components display as shown in Figure 1. If the user selects Close, the program performs a normal stop and returns to the operating system. 2. If the user selects Calculate, (if inputs are properly assignment values (see below)) the program calculates, by using the built-in financial functions Pmt and Ipmt. The amount payable each period and The total interest payable over the lifetime of the mortage. 3. Upon output of the Payment/Period and Figure 2: This is the appearance of VB8 solution to the Total Interest($) assignment at design time, showing the two command buttons, the four textboxes, the four radio buttons and values in the textboxes two checkboxes, and their accompanying labels. (sutitably formatted as currency before displaying in the relevant textboxes), the program determines which payment schedule has been selected and changes the label on the Payment($)/Period to either Payment($)/2xMnthly or Payment($)/Mnthly. This behaviour is illustrated in Figure 3.

3 Assignment Number 4 SE4D04 Page 3 of 7 Error Conditions: 1. The program must check that the input to these text boxes is numeric, if not, an error is displayed in a message box. A group of Option (Radio) Buttons allows selection of amortization period as 15, 20, 25,30 years. Use a default value of 20 years. Mortgage payment is made either monthly or twice a month '(Not bi-weekly) at the beginning of the period. This is selected by a pair of Check Buttons. Selection of one of these buttons must deselect the other (which needs to be explicitly implemented in the code). If both check buttons are unchecked, a message box displays error, as shown in Figure The program should also detect when the two input text boxes (labelled Amount Borrowed($) or Annual Rate of Interest(%) ) contain either nothing (are null), or contain non-numeric characters, which is illustrated in Figure NOTE: it is possible upon first screen execution to not have one radio button selected. This is an unhandled exception which should be handled in any manner you feel is appropriate. (a (b Figure 3: (a) If the inputs are acceptable (i.e. they are not empty, contain integers, etc (see text) to the program, when the Calculate button is pressed, (b) both Payment($)/Period and Total Interest ($) are calculated and placed into the appropriate textbox. Also, the Payment($)/Period is changed to either Payment($)/2xMnthly or Payment($)/Mnthly, depending on which Payment Schedule is selected by the user: Bimonthly or Monthly, respectively.

4 Assignment Number 4 SE4D04 Page 4 of 7 (a) (b) (c) (d) Figure 4: (a) If the Calculate button is clicked and NO Payment Schedule is selected, then a program pops up a modal window which must be acknowledged by the user (OK pressed), (b) when this is done, the program rewrites the Payment($) / Mnthly (or whatever) label back to Payment($) / Period ; (c) If the Calculate button is clicked and TWO Payment Schedules are selected, then a program pops up a modal window which must be acknowledged by the user (OK pressed), (d) When user inputs a Payment Schedule via checkbox & presses calculate, the behaviour is as in step 3 above, under Events heading.

5 Assignment Number 4 SE4D04 Page 5 of 7 (b) (a) Figure 5: (a) If either or both of the two input textboxes (Amount Borrowed($) or (Annual Rate of Interest(%)) contain null or non-numeric characters), the program will popup a modal error window, as illustrated (a) and (b); while, in (c) the null Payment Schedule brings out the usual error notification window as mentioned before, AFTER the detection and popup indicating non-numerical or null entries in either or both of the Amount Borrowed($) or Annual Rate of Interest(%) labeled textboxes, as put in by the user, and its subsequent dismissal (i.e. user selects OK in the popup as in either (a) or (b)). (c) In MS visual studio, the amortization payment schedule algorithm is an intrinsic (internal) function as outlined below.

6 Assignment Number 4 SE4D04 Page 6 of 7 PMT function Format PMT(principal;interestRate;term) Parameters principal - principal amount. interestrate - interest rate. If the interest rate is annual, divide the rate by 12. term - length of time, expressed in number of months. Data type returned number Description Returns the payment required to meet the requirements of the term, interestrate, and principal you supply. Examples In the following example, the PMT function calculates payments for purchasing a sports car costing $21,000, at an annual rate of 6.9% over 48 monthly payments. PMT(21000;.069/12;48) returns the payment amount $ PMT(Cost;.13;Years) returns a payment amount, based on the purchase value stored in Cost, at a 13 percent rate, over the duration stored in Years. "Your payment will be " & PMT(150000;.13/12;Months) & "." returns Your payment will be, followed by the payment amount, based on a total cost of $150,000, at a 13 percent annual percentage rate, over the duration stored in Months.

7 Assignment Number 4 SE4D04 Page 7 of 7 As a software engineer, interested in producing the best possible user interface, make ANY adjustments to this specific user interface that you feel could be done to improve usability for the end-user (e.g. use of colours, rearrangement of components (or even use of different components, if desired), presence or absence of components, different notices and behaviour on error conditions both from the point of view of notifying the user of a problem and how it can be more easily rectified). As a guide, I would expect 25% of the marks be allocated to the changes and another 25% derived from your reasoning given in the printed (word processed) report. Now do not go nuts and change everything! What is expected is for you to make changes to about half the things that are illustrated on the given solution and explain why you think that your changes improve something. WARNING, do not change the functionality of the program this is to be preserved at all costs. (You can add minor functionality, but the minimal set of operations, must still be present in your version, and you may even find that some of the calculations must be hand-coded if library intrinsic functions are not available in the programming environment you are working within. NOTE: the reason for this statement is that the fifth assignment is to reproduce your Mortgage Calculator in the WWW environment, using JavaScript and VBScript. In that assignment, you will be asked what the constraints are encountered by the designer as a result of selecting various programming environments: VB8 (this work), VBScript and JavaScript.) Severe mark reduction will occur if this functionality is compromised! HCI enhancements should always be checked for unintended adverse effects on program functionality. Good luck and may the force be with you! By the way, the force is like duct tape: it has a light side, it has a dark side, and it binds the universe together! END of the ASSIGNMENT

Mouse Basics. Dayton Metro Library

Mouse Basics. Dayton Metro Library Mouse Basics Dayton Metro Library The mouse is a hand held device that lets you interact with the computer by pointing to things on the screen. When you move the mouse on a flat surface a cursor (pointer)

More information

Project 4 Financials (Excel)

Project 4 Financials (Excel) Project 4 Financials (Excel) Project Objective To offer an introduction to building spreadsheets, creating charts, and entering functions. Part 1 - Financial Projections One of the most important aspects

More information

The Parts of a Function:

The Parts of a Function: The Parts of a Function: Each function has a specific order, called syntax, which must be strictly followed for the function to work correctly. Syntax Order: 1. All functions begin with the = sign. 2.

More information

Wireless Setup Instructions for Windows 7

Wireless Setup Instructions for Windows 7 Wireless Setup Instructions for Windows 7 1. Make sure that your wireless feature is turned on. (You may need to flip a switch or press a button on your laptop.) On most laptops you should see a light

More information

Working with Formulas and Functions

Working with Formulas and Functions Microsoft Excel 20032003- Illustrated Introductory Working with Formulas and Functions Objectives Create a formula with several operators Use names in a formula Generate multiple totals with AutoSum Use

More information

Excel Intermediate

Excel Intermediate Excel 2010 - Intermediate (103-124) Advanced Functions Quick Links Range Names Pages EX376 EX379 EX423 EX435 Data Validation Pages EX438 EX444 VLOOKUP Pages EX387 EX394 IF Pages EX151 EX155 EX367 EX376

More information

Payment Function Exercise

Payment Function Exercise Payment Function Exercise Follow the directions below to create a payment function exercise. Read through each individual direction before performing it, like you are following recipe instructions. Remember

More information

3/1/2016 Copyrights reserved 1

3/1/2016 Copyrights reserved 1 1 2 How to create a fee term? 3 Go to Fees dropdown menu and click on Fee Terms How to create a fee term? 4 Now the page will redirected to fee term page as shown below. How to create a fee term? 5 Click

More information

ShelbyNext Financials: Accounts Payable Best Practices (Course #N210)

ShelbyNext Financials: Accounts Payable Best Practices (Course #N210) ShelbyNext Financials: Accounts Payable Best Practices (Course #N210) Presented by: Carmen Dea, Shelby Consultant 2017 Shelby Systems, Inc. Other brand and product names are trademarks or registered trademarks

More information

SQL Server Express Installation Guide

SQL Server Express Installation Guide SQL Server Express Installation Guide For SQL Server Express 2014 Last Updated 12/22/2016 All user guides are available for download on our support site at www.1-stepsoftware.com. This publication is the

More information

Excel 2007 Intermediate Table of Contents

Excel 2007 Intermediate Table of Contents Table of Contents Working with Data... 1 Subtotals... 1 Removing Subtotals... 2 Grouping Columns or Rows... 2 Ungrouping Data... 3 AutoCalculate Customize Status Bar... 3 Format as Table Filters and Sorting...

More information

Excel Tutorial 4: Analyzing and Charting Financial Data

Excel Tutorial 4: Analyzing and Charting Financial Data Excel Tutorial 4: Analyzing and Charting Financial Data Microsoft Office 2013 Objectives Use the PMT function to calculate a loan payment Create an embedded pie chart Apply styles to a chart Add data labels

More information

M i c r o s o f t E x c e l A d v a n c e d P a r t 3-4. Microsoft Excel Advanced 3-4

M i c r o s o f t E x c e l A d v a n c e d P a r t 3-4. Microsoft Excel Advanced 3-4 Microsoft Excel 2010 Advanced 3-4 0 Absolute references There may be times when you do not want a cell reference to change when copying or filling cells. You can use an absolute reference to keep a row

More information

Mortgage Returns User Manual

Mortgage Returns User Manual Mortgage Returns User Manual Because Your Mortgage Customers Should Always Return To You. Mortgage Returns 314-989-9100 ext. 3 877-437-9100 Page 1 Mortgage Returns User Manual Table of Contents HOW TO

More information

LECTURE 10. SPREADSHEET

LECTURE 10. SPREADSHEET LECTURE 10. SPREADSHEET Those who excel in virtue have the best right of all to rebel, but then they are of all men the least inclined to do so. Aristotle S.M. Sitompul (2016 version) MODULE OVERVIEW Part

More information

Chapter 7 Arithmetic

Chapter 7 Arithmetic Chapter 7 Arithmetic 7-1 Arithmetic in C++ Arithmetic expressions are made up of constants, variables, operators and parentheses. The arithmetic operators in C++ are as follows + (addition) - (subtraction)

More information

Excel Intermediate

Excel Intermediate Excel 2013 - Intermediate (103-124) Advanced Functions Quick Links Range Names Pages EX394 EX407 Data Validation Pages EX410 EX419 VLOOKUP Pages EX176 EX179 EX489 EX500 IF Pages EX172 EX176 EX466 EX489

More information

PORTA ONE. PORTA Billing100. Customer Self-Care Interface.

PORTA ONE. PORTA Billing100. Customer Self-Care Interface. PORTA ONE PORTA Billing100 Customer Self-Care Interface www.portaone.com Customer Care Interface Copyright notice & disclaimers Copyright (c) 2001-2006 PortaOne, Inc. All rights reserved. PortaBilling100,

More information

Account-to-Account Transfers (A2A)

Account-to-Account Transfers (A2A) File located in S:\Public\CTI Documentation\Virtual Branch 1 Account-to-Account Transfers (A2A) Revised This feature will allow you to transfer money between your account and an account at a different

More information

Excel 2013 Part 2. 2) Creating Different Charts

Excel 2013 Part 2. 2) Creating Different Charts Excel 2013 Part 2 1) Create a Chart (review) Open Budget.xlsx from Documents folder. Then highlight the range from C5 to L8. Click on the Insert Tab on the Ribbon. From the Charts click on the dialogue

More information

Chapter 21. Payables

Chapter 21. Payables Chapter 21 Payables This Page Left Blank Intentionally CTAS User Manual 21-1 Payables: Introduction Payables are for bills that have been received or salary that has been earned but not yet paid. The Payables

More information

Bank Reconciliation Release 2015

Bank Reconciliation Release 2015 Bank Reconciliation Release 2015 Disclaimer This document is provided as-is. Information and views expressed in this document, including URL and other Internet Web site references, may change without notice.

More information

FAQ: Advanced Functions

FAQ: Advanced Functions Question 1: What are formulas and functions? Answer 1: Formulas are a type of data that can be entered into a cell in Excel. Formulas begin with an equal sign and use mathematical operators to calculate

More information

Microsoft Office Excel Use Excel s functions. Tutorial 2 Working With Formulas and Functions

Microsoft Office Excel Use Excel s functions. Tutorial 2 Working With Formulas and Functions Microsoft Office Excel 2003 Tutorial 2 Working With Formulas and Functions 1 Use Excel s functions You can easily calculate the sum of a large number of cells by using a function. A function is a predefined,

More information

EVALUATION ONLY. In this lesson, you will use advanced. Functions EXCEL 2013 CASE STUDY: ANALYZING A FUNDRAISING CAMPAIGN LEARNING OBJECTIVES

EVALUATION ONLY. In this lesson, you will use advanced. Functions EXCEL 2013 CASE STUDY: ANALYZING A FUNDRAISING CAMPAIGN LEARNING OBJECTIVES EXCEL 2013 3Applying Advanced Functions In this lesson, you will use advanced functions and what-if analyses to facilitate decision making. Complex worksheets for decision making often require advanced

More information

Excel Intermediate. Click in the name column of our Range of Data. (Do not highlight the column) Click on the Data Tab in the Ribbon

Excel Intermediate. Click in the name column of our Range of Data. (Do not highlight the column) Click on the Data Tab in the Ribbon Custom Sorting and Subtotaling Excel Intermediate Excel allows us to sort data whether it is alphabetic or numeric. Simply clicking within a column or row of data will begin the process. Click in the name

More information

Voucher Approver Quick Reference

Voucher Approver Quick Reference Approval Concepts Overview In BearBuy, the voucher (created from a supplier invoice sent to Accounts Payable) is routed for department approval when the invoice is $5,000 or greater. Vouchers are created

More information

Key-School Budget User Meeting October 26, 2018 Daleville, IN Presented by : Joy Watson

Key-School Budget User Meeting October 26, 2018 Daleville, IN Presented by : Joy Watson Key-School Budget User Meeting October 26, 2018 Daleville, IN Presented by : Joy Watson Keystone Software Systems Inc 9401 Innovation Drive, Suite 400 P O Box 669 Daleville IN 47334-0669 Key School Budget

More information

Portal > Knowledgebase > I am a Supplier/Decorator > ESP Websites > Website Settings

Portal > Knowledgebase > I am a Supplier/Decorator > ESP Websites > Website Settings Portal > Knowledgebase > I am a Supplier/Decorator > ESP Websites > Website Settings Website Settings Tamika C - 2017-02-07 - in ESP Websites Website Settings The Website Settings section enables you to

More information

NorthStar Club Management System

NorthStar Club Management System NorthStar Club Management System The Version 3.2.0 GL- 03252008 March 25, 2008 CONTENTS OVERVIEW OF THE GL (GENERAL LEDGER) MODULE... 5 ACCESSING THE GL MODULE... 6 GL INTRODUCTION:... 8 Inquiry... 8 Admin...

More information

User Guide. Customer Self Service (CSS) Web Application Progress Software Corporation. All rights reserved.

User Guide. Customer Self Service (CSS) Web Application Progress Software Corporation. All rights reserved. User Guide Customer Self Service (CSS) Web Application 1993-2017 Progress Software Corporation. Version 2.1 March 2017 Table of Contents Welcome... 3 Accessing the Customer Self Service (CSS) Web Application...

More information

BBVA Compass Spend Net Payables

BBVA Compass Spend Net Payables User Guide BBVA Compass Spend Net Payables User Guide Vault Services Table of Contents Introduction 2 Technical Requirements 2 Getting started 3 Sign In 3 General Navigation 4 Upload/Create Payment 5

More information

This guide explains how to locate the tasks you need to perform in ACT Compass 5.0 and provides detailed steps for each task.

This guide explains how to locate the tasks you need to perform in ACT Compass 5.0 and provides detailed steps for each task. For: s and Test Center Admins This guide explains how to locate the tasks you need to perform in ACT Compass 5.0 and provides detailed steps for each task. CONTENTS Roles and s 2 Detailed Steps 3 Creating

More information

Business e-banking Wires User Guide

Business e-banking Wires User Guide User Guide Business e-banking User Guide Tables of Contents Entering a One Time Wire Transfer 2 Deleting a Wire Transfer 5 Add Wire Template...8 Wire Money via Templates...12 Wire Money via Multiple Templates.....15

More information

Practical List of. MCA IV SEM Session -2010

Practical List of. MCA IV SEM Session -2010 1. WAP to create own exception. Rani Durgavati Vishwavidyalaya Jabalpur (M.P.) (UICSA) Master of Computer Application (MCA) Practical List of MCA IV SEM Session -2010 MCA-401 - Internet and Java Programming

More information

Welcome to the easy step-by-step instructions on how to register for the Energy Generation Conference.

Welcome to the easy step-by-step instructions on how to register for the Energy Generation Conference. Welcome to the easy step-by-step instructions on how to register for the Energy Generation Conference. If you have not created a profile account on our registration site before, you must do so before you

More information

Business ebanking User Guide May 2015

Business ebanking User Guide May 2015 Business ebanking User Guide May 2015 Contents INTRODUCTION... 5 Signing In... 6 Signing Off... 9 First Time Access... 10 Dashboard Setup Tool... 10 WELCOME... 11 Welcome Page... 12 Managing panels...

More information

User s Guide. (Virtual Terminal Edition)

User s Guide. (Virtual Terminal Edition) User s Guide (Virtual Terminal Edition) Table of Contents Home Page... 4 Receivables Summary... 4 Past 30 Day Payment Summary... 4 Last 10 Customer Transactions... 4 View Payment Information... 4 Customers

More information

GoPrint Scheduled Quota

GoPrint Scheduled Quota GoPrint Scheduled Quota Version 4.1 Updated July 2014 GoPrint Systems 2014 GoPrint Systems, Inc, All rights reserved. One Annabel Lane, Suite 105 San Ramon, CA 94583 (925)790-0070 2017 ITC Systems, Inc.

More information

Excel 2010 Advanced. Excel 2010 Advanced SAMPLE

Excel 2010 Advanced. Excel 2010 Advanced SAMPLE Excel 2010 Advanced Excel 2010 Advanced Excel 2010 Advanced Page 2 2010 Cheltenham Courseware Pty. Ltd. All trademarks acknowledged. E&OE. No part of this document may be copied without written permission

More information

ONLINE BANKING USER GUIDE

ONLINE BANKING USER GUIDE ONLINE BANKING USER GUIDE unionsavings.com This guide is designed to walk you through specific areas of Online Banking. Please reference the online help tool and "HOW DO I" links located on each page within

More information

Bank to Bank Transfers User Guide

Bank to Bank Transfers User Guide Bank to Bank Transfers User Guide GETTING STARTED Bank to Bank Transfers allow you to transfer money between your Kansas State Bank accounts and up to two external accounts (accounts at other financial

More information

ADD/EDIT VENDOR. 1. To add a new vendor to the system from within the Accounts Payable module, navigate to: Accounts Payable Vendors.

ADD/EDIT VENDOR. 1. To add a new vendor to the system from within the Accounts Payable module, navigate to: Accounts Payable Vendors. ADD/EDIT VENDOR 1. To add a new vendor to the system from within the Accounts Payable module, navigate to: Accounts Payable Vendors. Vendors can also be added from within the Purchasing module. Regardless

More information

CCF/CCF-II/MDH Transmission Guides Medium Term Note Issuance, Cancellation and Withdrawal Activity (MTNEID) via CCF/CCF-II

CCF/CCF-II/MDH Transmission Guides Medium Term Note Issuance, Cancellation and Withdrawal Activity (MTNEID) via CCF/CCF-II CCF/CCF-II/MDH Transmission Guides 11.5 11.5 Medium Term Note Issuance, Cancellation and Withdrawal Activity (MTNEID) via CCF/CCF-II The Depository Trust Company June 2006 Copyright 2006 by The Depository

More information

Online Store. General Store Front User Guide

Online Store. General Store Front User Guide Online Store General Store Front User Guide March 2018 Version 2.3 shop.bunzl.com.au 1 Table of Contents TABLE OF CONTENTS... 2 1 INTRODUCTION... 4 2 USER ROLES AND PERMISSIONS WITHIN ONLINE STORE... 5

More information

2017 Autosoft, Inc. All rights reserved.

2017 Autosoft, Inc. All rights reserved. Revised 01/2017 Copyright 2017 Autosoft, Inc. All rights reserved. The information in this document is subject to change without notice. No part of this document may be reproduced, stored in a retrieval

More information

Using the Attendance Feature to Track Student Absenteeism

Using the Attendance Feature to Track Student Absenteeism Using the Attendance Feature to Track Student Absenteeism Creating an Attendance Scheme: You can create attendance registers to track attendance for course based activities, including mandatory grade items.

More information

lyndaclassroom Getting Started Guide

lyndaclassroom Getting Started Guide lyndaclassroom Getting Started Guide This document explains Why lyndaclassroom might be right for you and your students How to register as an approved educator with lynda.com How to set up and submit your

More information

Excel Working with Formulas and Functions. Using Relative References. Engineering Staff College of India

Excel Working with Formulas and Functions. Using Relative References. Engineering Staff College of India Excel Working with Formulas and Functions Using Relative References Using Absolute References Using Mixed References Entering Relative, Absolute, and Mixed References To enter a relative reference, type

More information

Weekly Status Call February 7, 2019

Weekly Status Call February 7, 2019 Weekly Status Call February 7, 2019 Agenda Workforce Administration Unit Visits/Testing & Training Office Hours Terminations Onboarding Workflow Highlights & Awareness One USG Encumbrance Forfeited Leave

More information

ACH Payments. User Guide

ACH Payments. User Guide ACH Payments User Guide Table of Contents Overview... 2 Supported SEC Codes... 2 Create Batch... 2 Creating a Free Form Batch... 3 Creating a Batch from a Template... 14 Manage Batch Templates... 21 Transaction

More information

SKOS Shuttle. (Welcome) Tutorial Tariffing. August 2017

SKOS Shuttle. (Welcome) Tutorial Tariffing. August 2017 SKOS Shuttle (Welcome) Tutorial Tariffing August 2017 In this tutorial you will learn how SKOS Shuttle handles its tariffs and how to choose your tariff Table of Contents RESOURCE UNITS... 2 AVAILABLE

More information

Reports: SQL & SimplyReports. Fall 2014

Reports: SQL & SimplyReports. Fall 2014 Reports: SQL & SimplyReports Fall 2014 General Links on BCCLS Staff page Username/Password the same as Polaris software. Statistics Page SQL Reports: Custom & Delivered http://rpts.bccs.org/reports Use

More information

Toledo Mobile Radio Association (TMRA - W8HHF) D-Star Registration Guide

Toledo Mobile Radio Association (TMRA - W8HHF) D-Star Registration Guide Toledo Mobile Radio Association (TMRA - W8HHF) D-Star Registration Guide BEFORE YOU REGISTER! You only have to register on the D-Star system ONCE. You do NOT need to register on every D-Star gateway/repeater

More information

Microsoft Excel Tutorial for Chapter 4 TIE-into Practice Exercises

Microsoft Excel Tutorial for Chapter 4 TIE-into Practice Exercises Integrating Educational Technology into Teaching (4 th Edition) M. D. Roblyer University of Maryland University College Microsoft Excel Tutorial for Chapter 4 TIE-into Practice Exercises Created by William

More information

(SM) User Guide. For Schools ************************************************************************* SchoolMagica.com

(SM) User Guide. For Schools ************************************************************************* SchoolMagica.com SchoolMagica (SM) User Guide For Schools ************************************************************************* Table of Contents Start using SchoolMagica:... 3 Login Screen:... 4 Settings:... 5 Payment

More information

SAMPLE. Excel 2010 Advanced. Excel 2010 Advanced. Excel 2010 Advanced Page 1

SAMPLE. Excel 2010 Advanced. Excel 2010 Advanced. Excel 2010 Advanced Page 1 Excel 2010 Advanced Excel 2010 Advanced Page 1 Excel 2010 Advanced 2010 Cheltenham Courseware Pty. Ltd. www.cheltenhamcourseware.com.au Excel 2010 Advanced Page 2 2010 Cheltenham Courseware Pty. Ltd. All

More information

User Guide for the CORE Certification Application Portal

User Guide for the CORE Certification Application Portal User Guide for the CORE Certification Application Portal Table of Contents Introduction... 3 Section I: Registration Walkthrough... 3 Entity Details... 4 Primary Contact Details... 4 C-Level Contacts...

More information

B.3 DEDICATED ACCESS ARRANGEMENTS

B.3 DEDICATED ACCESS ARRANGEMENTS B.3 DEDICATED ACCESS ARRANGEMENTS Qwest s offer for Dedicated Access Arrangements is fully compliant with Section C.2.1.5. In no case will the price for dedicated access in this Section be higher than

More information

Mobile Banking Frequently Asked Questions

Mobile Banking Frequently Asked Questions Mobile Banking Frequently Asked Questions What types of Mobile Banking does Midwest BankCentre offer? We offer three types of Mobile Banking: Mobile Apps allows you to easily connect to Midwest BankCentre

More information

Direct Debit Overview Payments Clarification of Terms Features Rejections Contact Methods & Filters...

Direct Debit Overview Payments Clarification of Terms Features Rejections Contact Methods & Filters... Table of Contents Direct Debit Overview... 2 Payments... 4 Clarification of Terms... 4 Features... 6 Rejections... 8 Contact Methods & Filters... 8 Contact Status... 9 Printing Letters... 9 Viewing the

More information

The Studio Director QuickBooks Help

The Studio Director QuickBooks Help The Studio Director QuickBooks Help Copyright 2016 The Studio Director OnVision Solutions, Inc. P.O. Box 3221 Monument, CO 80132 http://www.thestudiodirector.com Table of Contents OVERVIEW & REQUIREMENTS...

More information

Genesis Parent Portal User Guide

Genesis Parent Portal User Guide PARENT PORTAL Introduction 3 Logging In & Logging Out 4 Select Language 6 Top Tabs 7 Student Summary - The Dashboard Selecting a Student Assessments Standardized Test Scores 13 Attendance Daily Attendance

More information

AN-POV-003 Using the radio button and check-box objects

AN-POV-003 Using the radio button and check-box objects Category Software Equipment Software Demo Application Implementation Specifications or Requirements Item POV Version: 7.1 and later Service Pack: Windows Version: Windows XP SP3, Vista SP2, Win 7 SP1,

More information

CME E-quotes Wireless Application for Android Welcome

CME E-quotes Wireless Application for Android Welcome CME E-quotes Wireless Application for Android Welcome This guide will familiarize you with the application, a powerful trading tool developed for your Android. Table of Contents What is this application?

More information

Online Banking Overview. Frequently Asked Questions & Common Support Topics

Online Banking Overview. Frequently Asked Questions & Common Support Topics Online Banking Overview Frequently Asked Questions & Common Support Topics Please use the bookmarks to the left to navigate this document, or CTRL+F to search using a keyword pertaining to your question.

More information

Quartermaster Me is copyright, Clyde Thomas. All rights are reserved.

Quartermaster Me is copyright, Clyde Thomas. All rights are reserved. COPYRIGHTS AND TRADEMARKS Quartermaster Me is copyright, Clyde Thomas. All rights are reserved. Quartermaster Me software may not be reproduced (other than a back up copy) in any form whatsoever without

More information

JHA Payment Solutions ipay Solutions. Business Bill Pay. Funds Verification CSL Client Reference Guide. September 2018

JHA Payment Solutions ipay Solutions. Business Bill Pay. Funds Verification CSL Client Reference Guide. September 2018 JHA Payment Solutions ... 1 Enrollment Process... 2 Home Page... 3 Message Center... 4 Attention Required... 4 Shortcut Method... 4 Scheduled... 4 History... 4 Since You Last Logged In... 4 Payees Tab...

More information

GoPrint Quota System Overview

GoPrint Quota System Overview GoPrint Quota System Overview Version 4.2 Updated July 2016 GoPrint Systems 2014 GoPrint Systems, Inc, All rights reserved. One Annabel Lane, Suite 105 San Ramon, CA 94583 (925)790-0070 2016 GoPrint Systems,

More information

eadministration User Guide Self Billing

eadministration User Guide Self Billing eadministration User Guide Self Billing New York Information in this user guide is subject to change without notice. Companies, names and data used in examples herein are fictitious unless otherwise noted.

More information

Telusys Customer Service Center. Administration Guide

Telusys Customer Service Center. Administration Guide Revised 5-11-2016 Telusys Customer Service Center Administration Guide $2YHUYLHZ The Telusys Customer Service Center (TCSC) provides a powerful method for Web site administrators to allow users to make

More information

During the application process, all required fields need to be completed and any calculate buttons need to be clicked.

During the application process, all required fields need to be completed and any calculate buttons need to be clicked. Diocese (Updated 08-2016) Page 1 of 15 The user can register if first time user; login if already a registered user; click on the down arrow beneath the words Get Quote/Buy Online, select a program and

More information

QUICKBOOKS TRANSACTIONS

QUICKBOOKS TRANSACTIONS BILLING FOR EXPENSES FROM CHECKS OR BILLS Any expense that will be paid on behalf of a customer from the operating checking account should be allocated to the customer for purposes of billing. This can

More information

Easthampton Savings Bank Online Business Banking User Guide

Easthampton Savings Bank Online Business Banking User Guide Easthampton Savings Bank Online Business Banking User Guide Page 1 of 100 Table of Contents SECURITY...6 PASSWORD TAB FUNCTIONALITY...6 SECURE DELIVERY TAB FUNCTIONALITY...9 CHALLENGE CODE TAB FUNCTIONALITY...10

More information

Representative Payee Manager User Guide

Representative Payee Manager User Guide Representative Payee Manager User Guide Version 5.0.9 Copyright 1997-2018 Complete Computer Solutions, Inc. Table of Contents Contents... 1 System Navigation... 2 Ribbon Menu... 5 Logon to the System...

More information

Illinois Department of Public Health EGrAMS Instructional Guide: Application Entry and Submission

Illinois Department of Public Health EGrAMS Instructional Guide: Application Entry and Submission Illinois Department of Public Health EGrAMS Instructional Guide: Entry and Submission Once your User Profile has been activated, please follow the steps outlined below to initiate the grant, complete the

More information

CLIENT MANAGER PORTAL. A supplier s guide to the Supplier Finance website

CLIENT MANAGER PORTAL. A supplier s guide to the Supplier Finance website CLIENT MANAGER PORTAL A supplier s guide to the Supplier Finance website Contents Welcome to Supplier Finance 1 Your payments 2 Logging on 3 Moving around 4 Your summary 5 Requesting early payments 7 Approving

More information

mycellcom App User Guide

mycellcom App User Guide mycellcom App User Guide Updated January 2018 Table of Contents Getting Started... 3 Installing mycellcom App... 4 Logging Into mycellcom App... 5 Sign up for an Account 7 Forgot Password..10 Usage Information...

More information

Club Master Membership Administration Software

Club Master Membership Administration Software Club Master Membership Administration Software Software which simply works! From Art Software Ltd 0333 123 1170 Ease of use Ease of use Security Club Master is password protected to protect the privacy

More information

QST Mobile Application for Android

QST Mobile Application for Android QST Mobile Application for Android Welcome This guide will familiarize you with the application, a powerful trading tool developed for your Android. Table of Contents What is this application? Logging

More information

lyndaclassroom Getting Started Guide

lyndaclassroom Getting Started Guide lyndaclassroom Getting Started Guide This document explains Why lyndaclassroom might be right for you and your students How to register as an approved educator with lynda.com How to set up and submit your

More information

QuickBooks Online Student Guide. Chapter 1. New Company Setup

QuickBooks Online Student Guide. Chapter 1. New Company Setup QuickBooks Online Student Guide Chapter 1 New Company Setup Chapter 2 Chapter 1 Lesson Objectives In this chapter you ll learn how to set up a new company in QuickBooks Online. Whether your business has

More information

Excel 2016 Advanced SAMPLE

Excel 2016 Advanced SAMPLE Excel 2016 Advanced Excel 2016 Advanced Excel 2016 Advanced Page 2 2015 Cheltenham Group Pty. Ltd. All trademarks acknowledged. E&OE. No part of this document may be copied without written permission from

More information

1/11/2010 Topic 2: Introduction to Programming 1 1

1/11/2010 Topic 2: Introduction to Programming 1 1 Topic 2: Introduction to Programming g 1 1 Recommended Readings Chapter 2 2 2 Computer Programming Gain necessary knowledge of the problem domain Analyze the problem, breaking it into pieces Repeat as

More information

Excel 2013 Advanced. Excel 2013 Advanced SAMPLE

Excel 2013 Advanced. Excel 2013 Advanced SAMPLE Excel 2013 Advanced Excel 2013 Advanced Excel 2013 Advanced Page 2 2013 Cheltenham Group Pty. Ltd. All trademarks acknowledged. E&OE. No part of this document may be copied without written permission from

More information

1. About AP Invoice Wizard

1. About AP Invoice Wizard 1. About AP Invoice Wizard Welcome to AP Invoice Wizard. We have developed this tool in response to demand from Oracle Payables users for a user friendly and robust spreadsheet tool to load AP Invoices

More information

Intermediary Oracle FLEXCUBE Universal Banking Release [May] [2011] Oracle Part Number E

Intermediary Oracle FLEXCUBE Universal Banking Release [May] [2011] Oracle Part Number E Intermediary Oracle FLEXCUBE Universal Banking Release 11.3.0 [May] [2011] Oracle Part Number E51511-01 Table of Contents Intermediary 1. ABOUT THIS MANUAL... 1-1 1.1 INTRODUCTION... 1-1 1.1.1 Audience...

More information

[Type text] DLC Client Manager Welcome Manual

[Type text] DLC Client Manager Welcome Manual [Type text] DLC Client Manager Welcome Manual Table of Contents Getting Started Prepping Your Data in Expert... 3 Logging In... 4 Synching with Expert... 5 Getting Started with Client Manager... 6 Working

More information

6. Vendor Maintenance

6. Vendor Maintenance 6. Vendor Maintenance Table of Contents Vendor Maintenance... 2 Direct Pay Info... 7 History... 8 Accounts... 10 Del Move... 11 Click on 6. Vendor Maintenance from the Main Menu and the following window

More information

Payables: Priority Payments

Payables: Priority Payments Payables: Priority Payments About this guide This guides takes you through the process of creating Priority payments. Priority payments enable you to make urgent same day payment to any Australian financial

More information

RIT Exempt Absence Tracking EMPLOYEE USER GUIDE

RIT Exempt Absence Tracking EMPLOYEE USER GUIDE RIT Exempt Absence Tracking EMPLOYEE USER GUIDE JULY 2018 Contents Contents... 1 I Login & Access Exempt Absence Tracking... 2 II Request Absence... 2 III View Accrual Balance... 5 IV Accrual Balance Calculations...

More information

Fiscal Officer Payroll Certification Report Instructions

Fiscal Officer Payroll Certification Report Instructions Fiscal Officer Payroll Certification Report Instructions Before running either of the Fiscal Officer Certification Reports please make sure that you have installed the Oracle Reports Add-In for MS Word.

More information

Contents OVERVIEW... 3

Contents OVERVIEW... 3 Contents OVERVIEW... 3 Feature Summary... 3 CONFIGURATION... 4 System Requirements... 4 ConnectWise Manage Configuration... 4 Configuration of Manage Login... 4 Configuration of GL Accounts... 5 Configuration

More information

User Guide. Last Updated: 8 March Page 1 of 99

User Guide. Last Updated: 8 March Page 1 of 99 User Guide Last Updated: 8 March 2018 Page 1 of 99 Table of Contents... 1 Introduction... 5 EInvoicing / ETransaction... 5 Financio Connect... 5 User & Business Entity... 5 Signing Up... 6 Sign Up... 6

More information

Tutorial 2. Review CIS143

Tutorial 2. Review CIS143 Tutorial 2 CIS143 Review Identify Components of an Excel worksheet Navigate a Worksheet Navigate Between Worksheets Plan a Worksheet Enter Data into a Worksheet Change the Size of a Row or Column Insert

More information

RPA QUICK REFERENCE GUIDE

RPA QUICK REFERENCE GUIDE RPA QUICK REFERENCE GUIDE When you receive an invoice to be processed that is not on a PO you will create a RPA document. If it is an invoice for a BAM PO or AggieBuy PO send to invoices@tamu.edu. From

More information

Training Guide. Fees and Invoicing. April 2011

Training Guide. Fees and Invoicing. April 2011 Training Guide Fees and Invoicing April 2011 *These accreditations belong to Avelo FS Limited **This accreditation belongs to Avelo FS Limited and Avelo Portal Limited Adviser Office Workbooks Designed

More information

Client-Account Receivable

Client-Account Receivable Nexsure Training Manual - Accounting Client-Account Receivable In This Chapter Client Accounts Receivable Entity Definition Receive Payments from Clients Relating to Policies Allocation of Payment Leave

More information

Excel Forecasting Tools Review

Excel Forecasting Tools Review Excel Forecasting Tools Review Duke MBA Computer Preparation Excel Forecasting Tools Review Focus The focus of this assignment is on four Excel 2003 forecasting tools: The Data Table, the Scenario Manager,

More information

An Overview of Visual Basic.NET: A History and a Demonstration

An Overview of Visual Basic.NET: A History and a Demonstration OVERVIEW o b j e c t i v e s This overview contains basic definitions and background information, including: A brief history of programming languages An introduction to the terminology used in object-oriented

More information