Lawrence Shepperd Candidate number: 9128 Centre Number: 26202

Size: px
Start display at page:

Download "Lawrence Shepperd Candidate number: 9128 Centre Number: 26202"

Transcription

1 Data Structures and variables Data Structure Documentation Table Users Field name Data Type Description Usercode Text Contains the username, which the user will enter in order to log in. FullNames Text Contains the user s full name to allow the staff to easily search through records. Passcode Text The string the user will use to verify they are the appropriate person is using an account. AccountStatus Number (Integer) A number determining the status of a person s account. 1=administrator, 2=staff, and 3=student. Points Number (Integer) The total number of points a student has in their account. For administrators and staff members, this field is left blank. Comment Text The comment of the last staff member to modify the students points total. CommentLeav er Text Contains the name of whoever left the last comment, so students can determine LatestAction Number An integer holding the latest change to the points total of the account. ForcePasswor dchange Yes/No (Boolean) A Boolean indicating whether the user will be forced to change their password next time they login. Table prizes Field name Data Type Description Prize Text This contains the name of the prizes that the students can purchase with their prizes. Points Number (Integer) This contains the points cost of the prizes that the students can purchase. Table admin Field name Data Type Description DateA Text Contains the date of any action involving the student redeeming points for prizes. Username Text Holds the username of the person who redeemed their points for prizes. NameA Text Holds the name of the person who redeemed their points for prizes. Prize Text Holds the prize that the person redeemed their points for. Subroutine documentation (See code annotations for more detail) Subroutine name Enter Name Form btncont_click Back fmrname_shown Login Form Form1_FormClosed Description Adds the users name to the database, then calls the Back subroutine. Returns the user to the appropiate form. Changes the AcceptButton (code executed when the enter button is pressed). Completely closes all open forms of the application.

2 Form1_Load Creates the initial connection to the database. btnloggin_click Checks user-name and password, then directs the user to the appropriate form. Main Administrator Form frmadmin_formclosed Completely closes all open forms of the application. btnmulti_click Shows the Create multiple accounts form. btnsingle_click Shows the create single account form. btndelete_click Shows the delete accounts form. btnloggout_click Restarts the application. btnview_click Shows the ordered prizes form. btnmanedge_click Shows the Manage prizes form. btnchangepassword_ Shows the Password Change Form. Click Delete Accounts form btndel_click Deletes specified account. Returns the user to the Main administrator form. frmdelete_formclosed Completely closes all open forms of the application. frmdelete_shown Calls the UpdateTable Subroutine UpdateTable Loads the data view grid with all of the current accounts, the user-names, names, points totals, and account status'. Manage prizes form btnadd_click Adds a new prize to the database. frmmaedge_formclos Completely closes all open forms of the application. ed btndel_click Deletes a specified prize. Returns the user to the Main administrator form. TabelPopulate Loads the data view grid with all of the current prizes, listing there names and points cost. frmmaedge_shown Calls the TabelPopulate subroutine. Create Multiple Accounts form frmmulti_formclosed Completely closes all open forms of the application. Returns the user to the main administrator form. btncreate_click Creates multiple accounts based on user specified settings. Ordered Prizes Form frmordered_formclos Completely closes all open forms of the application. ed PopulateTabel frmordered_shown Password Change Form btnconfirm_click Back btncancel_click frmpass_formclosed frmpass_shown This loads the table with a list of all orders, their date, the user-name, and name of whoever ordered it, and the prize ordered. Returns the user to the main administrator form. Calls the PopulateTabel Subroutine. Changes the users password and calls the Back subroutine. Returns the user to the appropriate form, based on account status. Calls the Back subroutine. Completely closes all open forms of the application. Changes the AcceptButton (code executed when the

3 enter button is pressed). Prize redemption Form frmprizes_formclosed Completely closes all open forms of the application. populateprizes Fills the list box with a list of all of the prizes from the database. lstprize_selectedindex Changes a label showing a description of the current Changed prize. btnredeem_click This deducts points from the user, according to the prize they ordered, and adds a new record to the admin table, detailing the time, user-name and name or whoever ordered the prize, and what prize they ordered. Returns the user to the student form. frmprizes_shown Changes a personalized label to display the users points total and name, and calls the populateprizes subroutine. Create Single accounts Form Returns the user to the main administrator form. frmsingle_formclosed Completely closes all open forms of the application. btncreate_click Creates a single account according to the parameters the user entered. Staff Form frmstaff_formclosed Completely closes all open forms of the application. PopulateListBox This loads the list box with the names of all of the students from the Users table in the database. btnsearch_click This clears the list box, and then loads only students with names starting with certain specified letters. txtsearch_click Changes the AcceptButton (code executed when the enter button is pressed). txtsearch_textchange Changes the AcceptButton (code executed when the d enter button is pressed). btngo_click Changes the points total of the currently selected student in the list box, and adds the comment in a text box to the database. btnloggout_click Restarts the application. frmstaff_shown Calls the PopilateListBox subroutine, and changes the AcceptButton (code executed when the enter button is pressed). btnchangepassword_ Shows the password change form. Click Student Form frmstudent_formclose Completely closes all open forms of the application. d btnredeem_click Shows the Prize redemption form. btnloggout_click Restarts the application. frmstudent_shown Calls the UpdatePoints subroutine. btnchangepassword_ Shows the change password form. Click Module1 PassForm Returns a value based on weather a logging in user needs to have there password changed. NameForm Returns a value based on weather a logging in user needs to enter their name.

4 modulus Loggout UpdatePoints Returns Returns number entered positively, regardless of sign. Changes a label on the Student form, displaying the current points total of the logged in student. Local Variable Documentation Variable name Data Type Description MessageReturn Integer This holds a number determining what the user selected when presented with a choice in a message box. dbprovider String Used, in addition to other variables, to create the initial database connection. dbsource String Used, in addition to other variables, to create the initial database connection. startuppath String Used, in addition to other variables, to create the initial database connection. ds DataSet This is the dataset used to hold all of the records from one database table. da OleDb.OleDb DataAdapter This is the adapter between the dataset and the database. sql String This is used to interface between the dataset and the database. cb CommandBuil der This is the command builder used to update the dataset. ds1 DataSet This is the dataset used to hold all of the records from one database table. It is used when more than one dataset is required in a subroutine. da1 OleDb.OleDb DataAdapter This is the adapter between the dataset and the database. It is used when more than one data adapter is required in a subroutine. sql1 String This is used to interface between the dataset and the database. It is used when more than one sql statement is required in a subroutine. cb1 CommandBuil der This is the command builder used to update the dataset. It is used when more than one command builder is required in a subroutine. ds2 DataSet This is the dataset used to hold all of the records from one database table. It is used when more than two datasets are required in a subroutine. da2 OleDb.OleDb DataAdapter This is the adapter between the dataset and the database. It is used when more than two data adapters are required in a subroutine. sql2 String This is used to interface between the dataset and the database. It is used when more than two sql statements are required in a subroutine. a Integer This is used in loops, as the variable which changes on each loop. b Integer This is used in loops, as the variable which changes on each loop. This is used when stacked loops are required (loops inside loops). c Integer Used to count how many times code in a loop is performed.

5 Username String Used to hold the user name during the login phase of the program, to allow for validation and processing. Password String Used to hold the password during the login phase of the program, to allow for validation and processing. loggin Integer Used to determine the account status of the user logging in. ActiveData String Used to store the data currently being searched for in the database. Generally used in if statements inside loops. Count Integer Used to store the number of rows in a table of the database. Loops are often executed until a = count. Delname String Used in the delete account subroutine to store the account currently being deleted, allowing for validation and processing. Prizename(array) String One dimensional array used as temporary storage when re-sorting the prizes database. Prizecost(array) Integer One dimensional array used as temporary storage when re-sorting the prizes database. NoOfAccounts Integer Integer used for storing the number of accounts to be created in the creating multiple accounts process. UserId Integer Used to hold the position in the database of the currently logged in user, allowing for simple modification of that row. NewRow DataRow Used to add a row to the database. A new row must be created before it is added. PointsChange Integer Used to hold the number of points to be added or subtracted from a student when a staff member is changing their points total. person String Used to hold the name of the currently selected name in the list box. This name is then found in the database. LoggedIn String Holds the user-name of the currently logged in user. FormFrom Integer Keeps a record of which form the user came from, so they can return to the correct form after visiting shared forms, like the password change form. Global Variable Documentation Variable name Data Type Description LoggedIn String Holds the user-name of the currently logged in user. This allows the program to search for the user in the database and then edit details pertaining to the user. FormFrom Integer Keeps a record of which form the user came from, so they can return to the correct form after visiting shared forms, like the password change form. Con OleDb.OleDb Used, in addition to other variables, to create the

6 Connection initial database connection. Object Documentation Object Name Type Description Enter name Form lblname Label Contains the text Please enter your name. txtname Text Box Allows the user to enter their name. btncont Button Causes the name entered to be transferred to the database, and the user to be transferred to the appropriate next form. pctlogo Picture box Contains the Greenparks school logo. Login Form lbluser Label Contains the text Username indicating which text box is for the user-name. lblpass Label Contains the text Password indicating which text box is for the password. txtuser Text Box Allows the user to enter their user-name. txtpass Text Box Allows the user to enter their password. btnloggin Button Causes the login process, directing the user to the appropriate next form. lblwelcom Label Contains the text Greenparks reward scheme!, indicating what program the user is useing. Main administrator Form lblgreet Label Contains the text Greetings Administrator btnmulti Button Shows the create multiple accounts form. btnsingle Button Shows the create single accounts form. btnchangepas Button Shows the change password form. sword btndelete Button Shows the delete accounts form. btnmanedge Button Shows the manage prizes form. btnview Button Shows the Ordered prizes form. btnloggout Button Restarts the application. Delete accounts Form lbldescription Label Contains a description of the delete accounts form. rad1 Radio Button Allows the user to delete an exact match to their entered string. raad2 Radio Button Allows the user to delete all accounts starting with their entered string. txtname Text Box Allows the user to enter in a string to delete btndelete Button Causes accounts to be deleted according to the entered data. lblcomplete Label Describes the data grid below it. tbl1 Data Grid View Contains a complete list of all users in the database, their user-names, points total, name, and account status. Manage prizes Form

7 lbladd Label Contains the text Add or delete a prize, describing the function of the form. lblcurrent Label Contains the text Current Prizes describing the data grid below it. lblname Label Contains the text Prize name indicating the text to go in the nearby text box. txtname Text Box Allows the user to enter the prize name to delete of create. btndel Button Causes the entered prize to be deleted. btnadd Button Causes the entered prize to be created. tbl1 Data Grid View Contains a complete list of prizes, and their points cost. Create multiple accounts Form lbluser Label Contains the text User Prefix informing the user where to enter the user prefix. lblpassword Label Contains the text Password informing the user where to enter the password. lblconpass Label Contains the text Confirm Password informing the user where to confirm the password. lblno Label Contains the text Number of Accounts informing the user where to enter the number of Contains the text Account Status informing the user what the adjacent radio buttons are for. lblaccountstat Label us lblchange Label Contains the text Force Password Change informing the user what the adjacent radio buttons are for. btncreate Button Creates the accounts the user entered the details for. txtpre Text Box Allows the user to enter the user prefix. txtcpassword Text Box Allows the user to enter the password for the new txtconpass Text Box Allows the user to confirm the password entered. txtno Text Box Allows the user to enter the number of accounts they wish to create. radstudent Radio Button Allows the user to choose to create student radstaff Radon Button Allows the user to choose to create staff radadministrat or Radio Button Allows the user to choose to create administrator Panel1 Panel Groups one set of radio buttons, so one radio button from each set can be selected. radyes Radio Button Allows the user to choose to force a password change on next login for the new radno Radio Button Allows the user to choose not to force a password change for the new Ordered Prizes Form tbl1 Data Grid View Contains a list of 5 records of ordered prizes, containing the date ordered, user-name and name

8 of whoever ordered the prize, and what prize was ordered. lblrecent Label Contains the text Ordered Prizes, describing the Data Grid View below it. Password change form lblold Label Contains the text Old Password, indicating the user must enter their old password in the adjacent text box. lblpass Label Contains the text New Password, indicating the user must enter their old password in the adjacent text box. lblconfirm Label Contains the text Confirm New Password, indicating the user must enter their new password again in the adjacent text box. txtold Text Box Allows the user to enter their old password. txtnew Text Box Allows the user to enter their new password. txtcon Text Box Allows the user the confirm their new password. btnconfirm Button Change the users password, and returns them to the appropriate form. btncancel Button Returns the user to the appropriate form. Prize Redemption Form lblwelcome Label Contains a personalized welcome message. lbldec Label Contains a description of the currently selected prize in the list box. btnredeem Button Deducts the cost of the prize of the users accounts, and creates a new order in the administrator table of the database. btnback Button Return the user to the main student form. lstprize List box Allows the user to select whatever prize they want. Create single account Form lbluser Label Contains the text Username informing the user where to enter the user-name. lblpassword Label Contains the text Password informing the user where to enter the password. lblconpass Label Contains the text Confirm Password informing the user where to confirm the password. lblaccountstat us Label Contains the text Account Status informing the user what the adjacent radio buttons are for. txtusername Text Box Allows the user to enter the user-name. txtpassword Text Box Allows the user to enter the password for the new txtconpass Text Box Allows the user to confirm the password entered. radstudent Radio Button Allows the user to choose to create student radstaff Radio Button Allows the user to choose to create staff radadministrat or Radio Button Allows the user to choose to create administrator btncreate Button Creates the account the user entered the details

9 for. Staff Form radadd Radio Button Allows the user to select to add points to a student account. radsub Radio Button Allows the user to select to subtract points from a student account. lblpoints Label Contains the text Points to add/subtract indicating the purpose of the adjacent text box. txtpoints Text Box Allows the user to enter the number of points to add or subtract. lblcomment Label Contains the text Optional Comment indicating the purpose of the adjacent text box. txtcomment Text Box Allows the user to enter an optional comment. lststu List Box Contains a list of all student names, allowing the staff member to add or subtract points from student account. txtsearch Text Box Allows the user to enter a string to search through the students names. btnsearch Button Searches through the students names for the entered string. btnchangepas Button Shows the change password form. sword btnloggout Button Restarts the application. btngo Button Executes the desire operation (adding/subtracting points from a student), and updates the database. lblwelcome Label Contains the text Greetings staff user!, welcoming the staff member. lblstudentsear ch Label Contains the text Search for a student to indicate where text must be entered to search for a student. Student Form lblwelcome Label Contains a personalized welcome message including the users points total. lblpast Label This shows the latest change to the points total by a staff member, including a comment. btnhelp Button Displays a message box which contains an explanation of how the points system works. btnloggout Button Restarts the application. btnredeem Button Shows the redeem prizes form. btnchangepas sword Button Shows the change password form.

VitalSource HelpDesk for Tier 1 Support Agents

VitalSource HelpDesk for Tier 1 Support Agents VitalSource HelpDesk Training Guides Tier 1 Customer Support Training VitalSource Technologies VitalSource HelpDesk for Tier 1 Support Agents http://helpdesk.vitalsource.com VitalSource HelpDesk is the

More information

Reading Wonders: Importing Students & Adding Students to your Class

Reading Wonders: Importing Students & Adding Students to your Class Reading Wonders: Importing Students & Adding Students to your Class If you have not registered for Reading Wonders, first follow the tutorial Teacher Registration for Reading Wonders KEY POINT: You must

More information

Administrative website guide. v2 Modified

Administrative website guide. v2 Modified Administrative website guide v2 Modified 11.1.2012 Augeo is proud to offer you an easy to use application for managing your rewards program. 2 Introducing new enhancements Updated menu bar and new capabilities

More information

GMRT Data Import. 3. When you have finished adding data to the template, click File, and then click Save As

GMRT Data Import. 3. When you have finished adding data to the template, click File, and then click Save As GMRT Data Import The three (3) GMRT Import file templates are located on the Welcome page as well as under the Locations, Staff and Student tabs respectively. Creating Location, Staff, and/or Student Files

More information

How to Apply for a Position in Talent Center

How to Apply for a Position in Talent Center How to Apply for a Position in Talent Center If you are using an assistive technology, such as a screen reader, please read the following before you begin. If you need assistance at any time, please call

More information

Tutorial 5 Database. Adam Sek Keb Wira 12 A123 6 Amanah Tmn Mahkota

Tutorial 5 Database. Adam Sek Keb Wira 12 A123 6 Amanah Tmn Mahkota Task 1 Creating a database using Access 2010: Tutorial 5 Database 1. Using Microsoft Access create a database for; a. Name b. School c. Age d. Birth Cert No e. Year f. Address g. Date of birth 2. Type

More information

Center For Emergency Response and Public Safety

Center For Emergency Response and Public Safety 5 Steps to Redeeming your Course Code Welcome to CERPS (the Center for Emergency Response ), your online learning portal for the Ontario Fire Service. These instructions will help you to establish your

More information

Webmail Instructions

Webmail Instructions Medway Grid for Learning Policies and Guidance Webmail Instructions (Version 1.10-29/04/2005) Connecting to the webmail service... 1 Accessing old email... 1 To Send a New Message... 3 Organising your

More information

PowerSchool for Parents/Students

PowerSchool for Parents/Students PowerSchool for Parents/Students Logging Into PowerSchool Welcome to PowerSchool at St. Mary s College High School. By clicking on the PowerSchool Login link located at the St. Mary s College High School

More information

If your Lexington One address is not on file with your child s school, you have a choice:

If your Lexington One  address is not on file with your child s school, you have a choice: SchoolMessenger for Parents/Guardians and Lexington One Staff These directions are for parents/guardians and Lexington One staff. If you already have a SchoolMessenger account but want information on managing

More information

connected New User Guide

connected New User Guide connected New User Guide This guide will walk you through how to accomplish the following for programs launched through the McGraw-Hill connected website: Create a Teacher Account Redeem Content Create

More information

WEB ASSIGN SHORT INTRODUCTION

WEB ASSIGN SHORT INTRODUCTION WEB ASSIGN SHORT INTRODUCTION 1. LOGGING IN AND OUT You can log in to WebAssign using a Web browser connected to the Internet. Before logging in for the first time, you will need the following information,

More information

Adding and Editing Chapter and Adviser Information Logging in for the first time (Existing chapters)... 2

Adding and Editing Chapter and Adviser Information Logging in for the first time (Existing chapters)... 2 Chapter Advisers CONTENTS Adding and Editing Chapter and Adviser Information... 2 Logging in for the first time (Existing chapters)... 2 How to edit a chapter s information:... 2 How to view all chapter

More information

VHIMS QUICK REFERENCE GUIDE TO SYSTEM CONFIGURATION & TOOLS

VHIMS QUICK REFERENCE GUIDE TO SYSTEM CONFIGURATION & TOOLS Introduction VHIMS QUICK REFERENCE GUIDE TO SYSTEM CONFIGURATION & TOOLS This reference guide is aimed at VHIMS Administrators who will be responsible for maintaining your VHIMS system configuration and

More information

RooDocs Quick Reference Guide

RooDocs Quick Reference Guide RooDocs Quick Reference Guide Welcome to RooDocs, the web-based application that gives the user, via the Internet, the ability to store and retrieve electronically archived documents from anywhere in the

More information

How to Create Student Accounts and Assignments

How to Create Student Accounts and Assignments How to Create Student Accounts and Assignments From the top navigation, select My Classes and click My Students Carolina Science Online will allow you to either create a single student account, one at

More information

MANAGING SIMS.NET USERS, AND ALLOCATING TO PERMISSION GROUPS

MANAGING SIMS.NET USERS, AND ALLOCATING TO PERMISSION GROUPS MANAGING SIMS.NET USERS, AND ALLOCATING TO PERMISSION GROUPS Introduction From time to time you will want to add users to SIMS, or modify the activities that users have permission to carry out. You will

More information

Create a Login System in Visual Basic. Creating a login system. Start a new visual basic Windows Forms application project. Call it Login System

Create a Login System in Visual Basic. Creating a login system. Start a new visual basic Windows Forms application project. Call it Login System Creating a login system Start a new visual basic Windows Forms application project Call it Login System Change the form TITLE from Form1 to Login System Add the following to the form Component Text Name

More information

Attaché Server ODBC Installation and User Guide

Attaché Server ODBC Installation and User Guide Attaché Server ODBC Installation and User Guide October 2014 Publication Number Publication Date Product Version Attaché Server version 1.0.0.96 Attaché Software Australia Pty Ltd ACN 002 676 511 ABN 32002676

More information

THE LOGIN PAGE... 3 THE HOME PAGE... 4 REPORTS... 15

THE LOGIN PAGE... 3 THE HOME PAGE... 4 REPORTS... 15 CheckTrack Web Reporting User guide 1 Contents THE LOGIN PAGE... 3 THE HOME PAGE... 4 REPORTS... 5 REPORT SCREEN FUNCTIONALITY... 5 CHECK DETAILS & CHECK IMAGE... 8 NEW CHECKS... 10 ALL ACTIVE CHECKS...

More information

Deployment Guide. Version 3.0

Deployment Guide. Version 3.0 System Deployment Guide. Version 3.0 www.sweetwilliamsl.com What is HMI Editor. The HMI Editor app is the developer component of the system for creating Human Machine Interfaces for real time monitoring

More information

Guide to All Saints College Edumate Parent Portal

Guide to All Saints College Edumate Parent Portal Guide to All Saints College Edumate Parent Portal Logging In 1. Enter the Edumate address into your browser (https://edumate.saints.nsw.edu.au/) 2. Enter your username and password and click Login Dashboard

More information

Instructional Guide for Password Reset Functionality (CYBER Release 1.21)

Instructional Guide for Password Reset Functionality (CYBER Release 1.21) Instructional Guide for Password Reset Functionality (CYBER Release 1.21) 02/04/2013 Instructions for Use Table of Contents I. Introduction... 2 II. Accessing CYBER... 3 III. Entering or Editing an Email

More information

Statistical Reporting Instructions (2017) Using EZRA (GCFA s Statistical Reporting System) to Submit Your Conference Statistics

Statistical Reporting Instructions (2017) Using EZRA (GCFA s Statistical Reporting System) to Submit Your Conference Statistics Statistical Reporting Instructions (2017) Using EZRA (GCFA s Statistical Reporting System) to Submit Your Conference Statistics v12.05.2017 Step by Step Guide for Entering and Submitting your Statistical

More information

AUTOMATED APPOINTMENT REMINDER AND ANNOUNCEMENT SYSTEM

AUTOMATED APPOINTMENT REMINDER AND ANNOUNCEMENT SYSTEM SARS Messages AUTOMATED APPOINTMENT REMINDER AND ANNOUNCEMENT SYSTEM USER MANUAL 2011-2015 by SARS Software Products, Inc. All rights reserved. COPYRIGHT Copyright 2011-2015 SARS Software Products, Inc.

More information

USER GUIDE GM PARTNER PROGRAM 2.0 HOW TO ACCESS THE GM PARTNER PROGRAM

USER GUIDE GM PARTNER PROGRAM 2.0 HOW TO ACCESS THE GM PARTNER PROGRAM 2.0 HOW TO ACCESS THE 1.1 WELCOME TO THE As an employee of a valued Partner of GM Holden we want to reward you with access to special discounts and offers on a range of Holden vehicles. The Holden Partner

More information

City of Aurora. Development Review Plans Submission and Referral Website. Public and Agency Referral Instruction Guide

City of Aurora. Development Review Plans Submission and Referral Website. Public and Agency Referral Instruction Guide City of Aurora Development Review Plans Submission and Referral Website Public and Agency Referral Instruction Guide Table of Contents Introduction... 3 Project Search (Public only)... 4 Project Search

More information

STIAssessment. Pre-Slugging Forms

STIAssessment. Pre-Slugging Forms STIAssessment Pre-Slugging Forms Contents STIAssessment Pre-Slugging... 1 Important Note about Microsoft.NET Framework... 1 Downloading the Application for Install... 1 Installation Procedure... 2 Setup

More information

Microsoft Access Illustrated. Unit B: Building and Using Queries

Microsoft Access Illustrated. Unit B: Building and Using Queries Microsoft Access 2010- Illustrated Unit B: Building and Using Queries Objectives Use the Query Wizard Work with data in a query Use Query Design View Sort and find data (continued) Microsoft Office 2010-Illustrated

More information

Setting up Enterprise Reporting in PowerSchool 10.0

Setting up Enterprise Reporting in PowerSchool 10.0 Setting up Enterprise Reporting in PowerSchool 10.0 Document prepared by: Dean B. Zaharis Cape Elizabeth School Department dzaharis@capeelizabethschools.org The following was hashed out at the August workshop

More information

Laurie Copley 9032 Bourne Grammar School 26202

Laurie Copley 9032 Bourne Grammar School 26202 Processing Stages As I am using text files as my data base the processes used for the system will be very different and possibly more complicated. Many of the most frequently used code are stored within

More information

Introduction 2. Getting Started..2. Viewing a Timetable by Module.4. Viewing a Timetable by Program...6. Viewing your Personal Timetable.

Introduction 2. Getting Started..2. Viewing a Timetable by Module.4. Viewing a Timetable by Program...6. Viewing your Personal Timetable. Contents Introduction 2 Getting Started..2 Viewing a Timetable by Module.4 Viewing a Timetable by Program...6 Viewing your Personal Timetable. 8 Different ways to view timetable information......10 Week

More information

Unacknowledged/Late Delivery Web Tool

Unacknowledged/Late Delivery Web Tool Table of Contents Register:... 2 Log on to Web Site:... 2 Logoff Web Site:... 3 List PO s Page:... 4 To Acknowledge PO or Change PO date.... 5 To Mark a PO Shipped.... 6 To Change the Price.... 6 Send

More information

Programming Logic -Intermediate

Programming Logic -Intermediate Programming Logic -Intermediate 152-102 Database Access Text References Data Access Concepts No book references Diagram Connected vs. Disconnected Adding a Data Source View Data in Grid View Data in Fields

More information

Symplicity Employer Manual

Symplicity Employer Manual Symplicity Employer Manual Your Account We have already set you up with an account in Symplicity. Each contact person within your organization may set up a separate account and all information pertaining

More information

How to Use the Online Helpdesk

How to Use the Online Helpdesk How to Use the Online Helpdesk Author(s): The ICT Service Reviewed by: Publication date: 08 January 2017 Version1: 1.1 email: support@theictservice.org.uk website: www.theictservice.org.uk phone: 0300

More information

Rev 7/10. Online Community. USER Help Guide

Rev 7/10. Online Community. USER Help Guide Rev 7/10 Online Community USER Help Guide Contents Welcome 2 Logging In 3 Finding Your Church Organization 3 User Name/Password Reminders 4 Changing User Name/Password 5 My Profile 6 Viewing Your Profile

More information

LMSnet NYEIS Training Self Registration

LMSnet NYEIS Training Self Registration Please follow the steps outlined below to create an LMSnet NYEIS Training user account through the self registration process. Please contact the NYEIS Help Desk at nyeis@cma.com if you have any questions

More information

RWT Network System Installation Guide

RWT Network System Installation Guide RWT Network System Installation Guide Copyright 2003, Talking Fingers, Inc. Page 1 of 48 This document is Copyright 2003 by Talking Fingers, Inc. All rights are reserved. This document may not be copied

More information

Pembina Trails School Division Information Technology Department 181 Henlow Bay Winnipeg, MB R3Y 1M7. Parent System Manual

Pembina Trails School Division Information Technology Department 181 Henlow Bay Winnipeg, MB R3Y 1M7. Parent System Manual Information Technology Department 181 Henlow Bay Winnipeg, MB R3Y 1M7 Parent System Manual Contents Introduction... 3 Explanation... 3 Example... 3 Creating Your Account... 4 Assigning your Children to

More information

MBTA Student Pass Program - User Guide

MBTA Student Pass Program - User Guide MBTA Student Pass Program - User Guide Student Pass Customer Service 617-222-5710 studentpassprogram@mbta.com Monday through Friday 7AM to 3PM EST Table of Contents 1 Overview... 2 2 Registration... 2

More information

ELEMENTARY SUMMER SCHOOL ASSESSMENT (ESSA) APPLICATION USER MANUAL

ELEMENTARY SUMMER SCHOOL ASSESSMENT (ESSA) APPLICATION USER MANUAL ELEMENTARY SUMMER SCHOOL ASSESSMENT (ESSA) APPLICATION USER MANUAL Version 2.0, June 2015 Mike Desrochers TABLE OF CONTENTS SECTION 1: ALL USERS... 2 LOGGING IN TO ESSA... 3 SAMPLE PROGRESS REPORT (CON

More information

Org & Club Admin Resource ~ Managing User Accounts. Use these step-by-step instructions to manage user accounts within your club or organization.

Org & Club Admin Resource ~ Managing User Accounts. Use these step-by-step instructions to manage user accounts within your club or organization. Use these step-by-step instructions to manage user accounts within your club or organization. Go to www.dotfit.com and click Login in the upper right corner. Login as Club Admin for a single club location,

More information

Import Grades from Canvas to My Sac State

Import Grades from Canvas to My Sac State Import Grades from Canvas to My Sac State This manual will show you the process of assigning letter grades in Canvas, exporting grades from Canvas to a CSV file, and importing and approving grades in My

More information

The website can be accessed at: https://www.griffith.edu.au/mentoring

The website can be accessed at: https://www.griffith.edu.au/mentoring Contents Starting up... 2 Accessing the website... 2 Register as member (staff or student) or guest... 3 Logging in... 5 Editing My Profile... 6 Joining a program... 8 Join by application... 8 Join by

More information

Additionally, you may be able to change your password and enter challenge questions to be used if you forget your username or password.

Additionally, you may be able to change your password and enter challenge questions to be used if you forget your username or password. Page 1 of 6 My Account Use the My Account option to view your account data. Your account data includes your user name, address, email address, and the last date and time that you accessed Home Access Center.

More information

1 Register 2 Take Course 3 Take Test 4 Get Certificate

1 Register 2 Take Course 3 Take Test 4 Get Certificate Training Guide for Group Administrators Use this Admin Guide if you manage a training account for a group of learners. If you are not managing a group account, please use the Learner Guide instead. Training

More information

Destiny Library Manager

Destiny Library Manager Destiny Library Manager Setting Up One Search Your teachers and students can take advantage of your school s subscription databases all in one place through Destiny One Search. One Search saves staff and

More information

If user is School. Fig On successful login you would be presented with screen as shown in Fig 2: Fig.2

If user is School. Fig On successful login you would be presented with screen as shown in Fig 2: Fig.2 1. Select role as School 2. Enter username and password to login. If user is School Fig.1 3. On successful login you would be presented with screen as shown in Fig 2: Fig.2 4. This is the home page of

More information

CSC4370/6370 Spring/2010 Project 1 Weight: 40% of the final grade for undergraduates, 20% for graduates. Due: May/8th

CSC4370/6370 Spring/2010 Project 1 Weight: 40% of the final grade for undergraduates, 20% for graduates. Due: May/8th CSC4370/6370 Spring/2010 Project 1 Weight: 40% of the final grade for undergraduates, 20% for graduates. Due: May/8th Note: This project is done by two people team or individual. This project must be completed

More information

National Emergency Laparotomy Audit. NELA Local Administrator User Notes

National Emergency Laparotomy Audit. NELA Local Administrator User Notes National Emergency Laparotomy Audit NELA Local Administrator User Notes As the NELA local administrator you have access to the admin screen of the data collection web tool. Once the audit is underway you

More information

Setup Hit the start button in the bottom left corner of your screen and select Outlook 2016.

Setup Hit the start button in the bottom left corner of your screen and select Outlook 2016. Student Device Setup Instructions Power on your device by pressing the Power button in the upper right hand side. Either swipe up on the touchscreen or Tap the touchpad to get to the login screen. Click

More information

Q-global: Administrator Best Practices. Jarett Lehner Training and Implementation Consultant

Q-global: Administrator Best Practices. Jarett Lehner Training and Implementation Consultant Q-global: Administrator Best Practices Jarett Lehner Training and Implementation Consultant jarett.lehner@pearson.com 952-681-4106 Agenda Managing your Account: Manage Accounts Managing your Account: Account

More information

The University of New Orleans WebSTAR (PeopleSoft Learning Solutions v 9.0): Basic Navigation Training Manual

The University of New Orleans WebSTAR (PeopleSoft Learning Solutions v 9.0): Basic Navigation Training Manual The University of New Orleans WebSTAR (PeopleSoft Learning Solutions v 9.0): Manual 10/19/2010 Training Group 2 PeopleSoft 9.0 Welcome to the module! This module contains the information and tools needed

More information

Instructional Management Program and Academic Communication Tool. Quick Guide to SIM 8.4 Upgrade Features. 10/14/2014 Version 2.

Instructional Management Program and Academic Communication Tool. Quick Guide to SIM 8.4 Upgrade Features. 10/14/2014 Version 2. Instructional Management Program and Quick Guide to SIM 8.4 Upgrade Features 10/14/2014 Version 2.0 FINAL (Page Intentionally Left Blank) TABLE OF CONTENTS Introduction... 1 Basic Navigation Overview...

More information

Enterprise Library Catalog Home Page

Enterprise Library Catalog Home Page Enterprise Library Catalog Home Page The Library Catalog Home page allows users access to any content the library would like to add, such as library announcements, links to websites, etc. Book Lists Enterprise

More information

Accessing Skyward Mobile Access App

Accessing Skyward Mobile Access App Accessing Skyward Mobile Access App Previous: Keyboard Shortcuts Parent: General Navigation Additional... The Skyward Mobile Access app is available for free download on Android and ios devices. Once you

More information

RISKMAN QUICK REFERENCE GUIDE TO SYSTEM CONFIGURATION & TOOLS

RISKMAN QUICK REFERENCE GUIDE TO SYSTEM CONFIGURATION & TOOLS Introduction This reference guide is aimed at RiskMan Administrators who will be responsible for maintaining your RiskMan system configuration and also to use some of the System Tools that are available

More information

Generate Coupon Codes to Waive the LSAC Fees for Applicants

Generate Coupon Codes to Waive the LSAC Fees for Applicants Generate Coupon Codes to Waive the LSAC Fees for Applicants To ease the cost applicants incur when applying to law school, you can pay for the CAS or DAS subscription fee, the LLM ITAES Subscription fee,

More information

Protect My Ministry Integrated Background Checks for Church Community Builder

Protect My Ministry Integrated Background Checks for Church Community Builder Protect My Ministry Integrated Background Checks for Church Community Builder Integration and User Guide Page 1 Introduction Background Check functionality through Protect My Ministry has been integrated

More information

Community Development System Administrator s Guide new world ERP Community Development

Community Development System Administrator s Guide new world ERP Community Development Community Development 2017.1 System Administrator s Guide new world ERP Community Development 2017 Tyler Technologies, Inc. Data used to illustrate the reports and screens may include names of individuals,

More information

COINS Ti Call Management System Standard Installation Instructions for Citrix Users

COINS Ti Call Management System Standard Installation Instructions for Citrix Users COINS Ti Call Management System Standard Installation Instructions for Citrix Users COINS recommends that the System Administrator or staff trained in both UNIX and Citrix installation processes perform

More information

epals SchoolBlog Teacher s Guide

epals SchoolBlog Teacher s Guide epals SchoolBlog Teacher s Guide DOCUMENT VERSION 2.0 JUNE 2007 Copyright 2007 epals, Inc. All rights reserved. epals, epals SchoolBlog,and the epals SchoolBlog logo are trademarks or registered trademarks

More information

New case calls function to generate list of combo box values. Details case calls function to get details for selected record

New case calls function to generate list of combo box values. Details case calls function to get details for selected record Web Data Management 152-155 MVC & PDO Evaluation Form Student-Selected Project Name Score / 50 Update Value Make all corrections and resubmit to earn update points Update Recommended CSS Forms.css included

More information

Smartsheets Guide Step-by-Step Walkthrough

Smartsheets Guide Step-by-Step Walkthrough Smartsheets Guide Step-by-Step Walkthrough Introduction In order to have access to the Grades sheet, you will need to have received an invite in your UNI email account: After clicking the link, you will

More information

If you require further assistance, please send an to with a detailed description of the issue you are encountering.

If you require further assistance, please send an  to with a detailed description of the issue you are encountering. This guide is only for NEW students to Mid-Pacific Institute. ipad can only be set up at home or with an accessible Wi-Fi network. Set up cannot be performed on campus. Follow this guide to set up your

More information

FACILITIES > MY FACILITY Managing Accounts: Facilities For Account Administrators and Administrators

FACILITIES > MY FACILITY Managing Accounts: Facilities For Account Administrators and Administrators FACILITIES > MY FACILITY Managing Accounts: Facilities 4. My Facility. Notes and Additional Information The facility's Account Administrator or users with the permission level of administrator may edit/add

More information

Tutorial: Input Grades in Blackboard

Tutorial: Input Grades in Blackboard Tutorial: Input Grades in Blackboard Get into the Grade Center The following steps will lead you to the Full Grade Center page (❶ - ❽). ❶ Enter the URL: blackboard.indstate.edu ❷ Enter username and password

More information

System and Software Architecture Description (SSAD)

System and Software Architecture Description (SSAD) System and Software Architecture Description (SSAD) We Are Trojans Team01 Team members Eirik Skogstad Min Li Pittawat Pamornchaisirikij Punyawee Pakdiying Saloni Priya Ameer Elkordy Suleyman Erten Kamonphop

More information

The University of New Orleans Web-STAR (PeopleSoft Campus Solutions v 9.0): Faculty Center Training Manual

The University of New Orleans Web-STAR (PeopleSoft Campus Solutions v 9.0): Faculty Center Training Manual The University of New Orleans Web-STAR (PeopleSoft Campus Solutions v 9.0): Faculty Center Training Manual 10/19/2010 Training Group 2 Faculty Center Training Welcome to the Faculty Center Training module!

More information

Group Token Management System

Group Token Management System Overview This guide is designed for group managers responsible for entering groups of participants into events. It explains how to access and use the group token management website, including how to issue

More information

4H4Me Announcement Letter

4H4Me Announcement Letter An announcement letter introducing 4H4Me can be created using 4HPlus! SQL mail merge files and Word s mail merge. This letter includes user IDs and passwords needed for members and leaders to log on to

More information

Welcome to Your. Online Banking Experience

Welcome to Your. Online Banking Experience Welcome to Your Online Banking Experience Take your Orlando Federal accounts with you where ever you go - Access your account information with online banking and mobile banking. Check balances, pay bills,

More information

The following illustrates what you will see when you log in to Home Access Center (HAC).

The following illustrates what you will see when you log in to Home Access Center (HAC). Instructions for Home Access Center The following illustrates what you will see when you log in to Home Access Center (HAC). Login Screen Here is where you will login using the username and password that

More information

estatement STUDIES USERS GUIDE JOIN. ENGAGE. LEAD. Statement Studies Unit Enterprise Risk and Product Management

estatement STUDIES USERS GUIDE JOIN. ENGAGE. LEAD. Statement Studies Unit Enterprise Risk and Product Management estatement STUDIES USERS GUIDE Statement Studies Unit Enterprise Risk and Product Management JOIN. ENGAGE. LEAD. E nt e rp r is e Risk C r ed it Risk Ma rk et Risk O p er a t i ona l Risk Regu la tory

More information

ATS Offsite Installation and Procedure Guide. Installation and Procedure Guide for. ATS Offsite Module

ATS Offsite Installation and Procedure Guide. Installation and Procedure Guide for. ATS Offsite Module Installation and Procedure Guide for ATS Offsite Module This document describes the process required to setup the ATS Offsite database on your PC. There are three sections to the setup; downloading and

More information

Welcome to the Contra Costa Community College District and InSite

Welcome to the Contra Costa Community College District and InSite Welcome to the Contra Costa Community College District and InSite These instructions will demonstrate how to log into InSite and how to manage your user account. Part 1 Your First Login Update your Password

More information

QUICK REFERENCE GUIDE

QUICK REFERENCE GUIDE QUICK REFERENCE GUIDE 1 Table of Contents Logging In 3 Navigating the Dashboards 4 Promotion Search 4 Trend Analysis 6 Sparkline/Segmentation 7 HelloWorld Analytics Toolbar 8 Promotion Summary Tab 9 Realtime

More information

Registering with the HVS CCTV IPhone/Android App

Registering with the HVS CCTV IPhone/Android App Installing Hills Video Security CCTV APP on your Android/IPhone Device The following document is to guide you through the installation setup for the Hills Video Security CCTV app. It is a basic quick guide

More information

Login Instructions for Falck MyCare

Login Instructions for Falck MyCare Login Instructions for Falck MyCare Novo Nordisk Because of the new General Data Protection Regulation (GDPR) on the protection of personal data, we have upgraded our Falck MyCare booking system to a newer

More information

Bloomsburg Area School District Parent Portal Instructions

Bloomsburg Area School District Parent Portal Instructions Bloomsburg Area School District Parent Portal Instructions Bloomsburg Area School District parents now have the ability to access important, up-to-date, student information online. Our online Grade Book

More information

Maintenance OVERVIEW. 2 STARTUP 3 GETTING STARTED / SYSTEM BACKUPS. 4 SYSTEM USERS.. 5

Maintenance OVERVIEW. 2 STARTUP 3 GETTING STARTED / SYSTEM BACKUPS. 4 SYSTEM USERS.. 5 Maintenance Getting Started Security General Maintenance OVERVIEW. 2 STARTUP 3 GETTING STARTED / SYSTEM BACKUPS. 4 SYSTEM USERS.. 5 PREFERENCES 6 STATION. 9 ORGANIZATION ( CHARITY )... 9 SESSION. 10 SESSION

More information

RTO / TRAINER USER MANUAL

RTO / TRAINER USER MANUAL Dear RTO / Trainer System User, Welcome to profile21 system, This user guide describes the basic functions of the profile21 software application. Login Helpdesk Email Go to the profiling website: www.profile21.com.au

More information

Introduction to OpSuite

Introduction to OpSuite Introduction to OpSuite Overview OpSuite is a cloud based, centralised management, reporting and analytics application for the Retail Industry. OpSuite allows you to manage your entire enterprise from

More information

Chapter. Storeroom Module. Table of Contents

Chapter. Storeroom Module. Table of Contents Chapter 16 Module The module is used to record and track inventory and storeroom information. This Chapter describes how to use the Web Work module. Table of Contents 16.1 OVERVIEW OF THE STOREROOM MODULE...

More information

Management Maker. Getting Started Administrator Guide

Management Maker. Getting Started Administrator Guide Management Maker Getting Started Administrator Guide Introduction 1 Benefits 1 Administrator Role 1 Getting Started 1 1. Install Application 1 2. Register 1 3. Log On 2 Application Setup 2 A. Application

More information

Moving HRtrack to a new computer

Moving HRtrack to a new computer First Reference Moving HRtrack to a new computer Process at a Glance Confirm the location of your HRtrack data Install HRtrack on the new computer Copy the HRtrack data folder from the old computer to

More information

NaviGate Prepared App: Using Respond

NaviGate Prepared App: Using Respond NaviGate Prepared App: Using Respond How-to Reference Guide Downloading the App Logging into the App Home Screen My Account Initiating Alarms Accounting for Students Chat Feature End Alarm What is Respond?

More information

Getting Started Guide for Physics Students

Getting Started Guide for Physics Students Access your Kinetic physics digital text Getting Started Guide for Physics Students If the product is already installed on your computer, simply click on the product icon on the desktop to launch the product.

More information

Special Education Room and Board Reimbursement Claim User Guide

Special Education Room and Board Reimbursement Claim User Guide Special Education Room and Board Reimbursement Claim User Guide OVERVIEW The Special Education Room and Board Reimbursement Claim system accessed through the Illinois State Board of Education s (ISBE)

More information

University of Southern California. GRS For Instructors Submitting Final Grades

University of Southern California. GRS For Instructors Submitting Final Grades University of Southern California GRS For Instructors Submitting Final Grades About GRS... 1 Accessing GRS... 1 Getting Help... 1 THE GRS MAIN MENU... 2 OVERVIEW OF THE GRS GRADING PROCESS... 3 Overview

More information

PT Version performance. Performance Tracker System Administrator User Manual

PT Version performance. Performance Tracker System Administrator User Manual PT Version 4.5.1 performance Performance Tracker System Administrator User Manual Contents Accessing System Administrator Tools 5 The User List 6 Adding a New User...6 Editing a User...7 Synchronizing

More information

Early Data Analyzer Web User Guide

Early Data Analyzer Web User Guide Early Data Analyzer Web User Guide Early Data Analyzer, Version 1.4 About Early Data Analyzer Web Getting Started Installing Early Data Analyzer Web Opening a Case About the Case Dashboard Filtering Tagging

More information

CS 2316 Homework 9a GT Room Reservation Login

CS 2316 Homework 9a GT Room Reservation Login CS 2316 Homework 9a GT Room Reservation Login Due: Wednesday November 5th Out of 100 points Files to submit: 1. HW9.py This is an INDIVIDUAL assignment! Collaboration at a reasonable level will not result

More information

Login Instructions for Falck MyCare

Login Instructions for Falck MyCare Login Instructions for Falck MyCare Because of the new General Data Protection Regulation (GDPR) on the protection of personal data, we have upgraded our Falck MyCare booking system to a newer and safer

More information

SECTION 1: LOGGING IN AND SITE SETUP. Teacher Website Manual Page 3

SECTION 1: LOGGING IN AND SITE SETUP. Teacher Website Manual Page 3 SECTION 1: LOGGING IN AND SITE SETUP Teacher Website Manual Page 3 FIRST STEPS TO CREATING YOUR NEW TEACHER WEBSITE: This is a multi-section document. The first section is designed to help you set up your

More information

Welcome to the RISD Materials /Media Center Online Public Access Catalog

Welcome to the RISD Materials /Media Center Online Public Access Catalog Welcome to the RISD Materials /Media Center Online Public Access Catalog For years now, the Media Center has used Term-Lite as the online booking program. Starting in the 2016-2017 school year, the change

More information

Defender Desktop Login GrIDsure Token User Guide

Defender Desktop Login GrIDsure Token User Guide Desktop Login GrIDsure Token User Guide Introduction This guide describes what the user will see when using Desktop Login with GrIDsure tokens. The logon procedure will vary slightly depending on the platform

More information

I. Overview... 2 A. Users and User Roles... 2 B. System Information... 2 C. Help Menu... 3 D. Changing Your Password... 3 E. Logging In... 3 F.

I. Overview... 2 A. Users and User Roles... 2 B. System Information... 2 C. Help Menu... 3 D. Changing Your Password... 3 E. Logging In... 3 F. I. Overview... 2 A. Users and User Roles... 2 B. System Information... 2 C. Help Menu... 3 D. Changing Your Password... 3 E. Logging In... 3 F. Logging Off... 4 G. Navigation Bar... 4 II. Search Menu...

More information

Administrator Help Login General Help First Time in GPS Create a Program Design Applications Requirements

Administrator Help Login General Help First Time in GPS Create a Program Design Applications Requirements Administrator Help Login General Help First Time in GPS Create a Program Design Applications Requirements Build a Questionnaire Add a New Question Materials Add New Material Application Cycles Verify Application

More information