Code Check TM Software Requirements Specification

Size: px
Start display at page:

Download "Code Check TM Software Requirements Specification"

Transcription

1 Code Check TM Software Requirements Specification Author: Richard McKenna Debugging Enterprises TM Based on IEEE Std 830 TM (R2009) document format Copyright 2017 Debugging Enterprises No part of this publication may be reproduced in any form, in an electronic retrieval system or otherwise, without the prior written permission of the publisher. 1

2 1 Introduction Teaching Assistants in Computer Science courses typically must grade large numbers of student assignments each semester. The setup time for each assignment can be lengthy, depending on the technology used by a given course for managing student submissions. Stony Brook University uses Blackboard for providing student assignment grades, which also has a feature for students to submit their work. The problem with Blackboard is the process of retrieving student submissions and then extracting them into a format that works for grading is time consuming and involves a number of different steps and tools. Code Check will be a desktop application that will make it easier for Teaching Assistants to extract student submissions into a proper format to setup grading as well as setting up checks for code plagiarism (what we ll call a code check). 1.1 Purpose The purpose of this document is to specify how our Code Check program should look and operate. The intended audience for this document is all the members of the development team, from the instructors to the software engineers and designers. This document serves as an agreement among all parties and as a reference for how the code extraction tool should ultimately be constructed. Upon completing the reading of this document, one should clearly visualize how the application will look and operate as well as understand the way a generated site is setup. 1.2 Scope For this project the goal is for Teaching Assistants to have an easier time extracting student assignments for the purposes of grading and plagiarism checking. The assumption is that all submissions were made via Blackboard, which has its own submission formats. This will serve as our starting point. So, the application will not be about downloading submissions, that must be done via Blackboard using a Web browser. This application will take a collection of student submissions zipped up into a single file downloaded from Blackboard and will then extract these submissions and organize them into directories of unzipped work, ready to grade. In addition, Teaching Assistants will be given the opportunity to extract and organize the submitted source code to help with code plagiarism checks. Definitions, acronyms, and abbreviations Framework In an object-oriented language, a collection of classes and interfaces that collectively provide a service for building applications or additional frameworks all with a common need. GUI Graphical User Interface, visual controls like buttons inside a window in a software application that collectively allow the user to operate the program. 2

3 IEEE Institute of Electrical and Electronics Engineers, the world s largest professional association for the advancement of technology. UML Unified Modeling Language, a standard set of document formats for designing software graphically. Use Case Diagram A UML document format that specifies how a user will interact with a system. References IEEE Std 830 TM (R2009) IEEE Recommended Practice for Software Requirements Specification Overview This SRS will clearly define how the Code Check application should look and operate. Note that this is not a software design description (SDD), which would design how to construct the software using UML. This document does not specify how to build the appropriate technologies; it is simply an agreement concerning what to build. Section 2 of this document will provide the context for the project and specify all the conceptual design. Section 3 will present how the user interface should be laid out. Section 4 provides a Table of Contents, an Index, and References. 3

4 Overall description Here you are a Teaching Assistant in a Computer Science course like CSE 219 (Computer Science III), where you may be obligated to grade HW 1 submissions for 65 students. The current process for doing so would involve the following steps: 1. Open a Web browser like Chrome 2. Login to Blackboard 3. Navigate to the course page 4. Go to the Grade Center. Here one will find a table with student submissions waiting to be graded denoted by a be graded.. So, for example, Figure 2.1 shows a class roster with HW 1 yet to Figure 2.1 TA Grade Center view 5. For the assignment to be graded, click on the column and select the Assignment File Download option. This will bring one to the view shown in Figure 2.2 where one can select the student submissions to grade. 4

5 Figure 2.2 Student Assignment Selection for Download View 6. Click the check box next to the student names to be graded and press the Submit button. Upon doing this Blackboard will combine all selected student submissions into a single ZIP file and present a link to the user such that they may download this file. An example is shown in Figure 2.3 of such a link. Figure 2.3 Blackboard Download View 7. Right click on the link, this will open up a popup menu of choices. 8. Select Save Link As, which should open a dialog for saving the file. 9. Navigate to the directory where you wish to place it. 10. Name the ZIP file as you like and click the Save button. Now, via these 10 steps the TA can select and download student HW submissions. As shown the TA can select which assignment and which students. The result would be a single ZIP file that has all student ZIP files contained inside. We will not change this process in our application. The goal of our application is to make the remaining steps easier. 5

6 Current Extraction Process In order to make the grading process as smooth as possible students are encouraged to zip up and include their entire project regardless of IDE. So, if one is working in NetBeans, a student would select the project s parent directory for compression into a single ZIP file. It s also useful for students to submit multiple projects such that needed frameworks don t have to be linked but instead are included as part of the submission. This helps TAs as well. Currently, selected student assignments from our previous process are zipped up by Blackboard into a single file named and located according to the user s request. What happens to this file is where our program will come in. Currently, the Teaching Assistants would perform the following tasks. 1. Open a File Explorer type application 2. Navigate to the directory where the submissions were saved. For example, a TA may save the Blackboard-generated ZIP file as HW1.zip and save it into a directory called CSE219Summer2017HW1/blackboard/. 3. Right click on the file named HW1.zip. This should open a list of choices in a popup menu including something like Extract to HW1 directory. 4. Select the Extract to HW1 directory choice. This will unzip the single submission file into that directory, which will include all the student submissions and a text file for each student. Note that the student submission files will have long, hard to read and deal with names that will include the student homework number, the student Net ID, and a timestamp. This is one thing that s not so convenient for us. Super long paths like this can present problems so some graders who prefer to abbreviate these files to just the NetID. Note that students can submit all sorts of files, including PDFs or DOCs, like for writing assignments. We ll want to handle those cases as well, meaning cases where the submission is NOT a Zip file. But we ll have to be careful regarding how to deal with assignments where students are required to submit IDE projects, which must be as a single ZIP. One thing to note is that our project will be developed for the Java platform, which provides an easy to use library for dealing with ZIP files, but not RAR files. So students must be discouraged from submitting RAR files, and such submissions will be regarded as invalid as our program won t be able to extract data from them. 5. Navigate to the HW1 directory that was just unzipped. 6. Right-click on the student submission to extract. A popup menu should open up with an option to Extract to X directory, where X would be the name of the zip file. 7. Select Extract to X directory, which should unzip the student submission. Note that a TA has to do this separately for each student. This is very time consuming. Imagine a TA grading 100 students having to do this 100 times. 6

7 2.1 Product perspective Note that this process is just for grading. It doesn t even address plagiarism checks. Our program will aim to make all of these extraction and code organization steps much more convenient for the Teaching Assistant such that they can get on with the grading process more quickly System Interfaces The Code Check application will be a workspace-type application in the fact that we can create new code checks, save work regarding what s been extracted, and load an extraction that s already been saved. Understand, however, that the program uses a series of linked screens and corresponding operations that will allow the user to transition student work from a single ZIP file saved from Blackboard into work that can be graded or checked for plagiarism. Step 1: Select HW1.zip file -input: ZIP files of student ZIP files downloaded from Blackboard -input directory: work/assignment/blackboard -function: Extract -output: contents of downloaded ZIP files (student ZIP files) -output directory: work/assignment/submissions Step 2: Rename Student submission files -input: student submission ZIP files -input directory: work/assignment/submissions -function: Rename -output: renamed student submission files (ZIP files) -output directory: work/assignment/submissions Step 3: Unzip Student submission files -input: student submission ZIP files -input directory: work/assignment/submissions -function: Unzip -output: unzipped contents, one for each student -output directory: work/assignment/projects/netid (one directory for each student) Step 4: Extract Student Source Code -input: student project directories of files -input directory: work/assignment/projects/netid -function: Extract Source Code -output: directories of source code only -output directory: work/assignment/code/netid (one directory for each student) 7

8 Step 5: Code Check -input: directories of source code -input directory: work/assignment/code/netid -function: Perform Code Check -output: URL that contains a visual description of the Code Check results User Interfaces Our program will be a desktop application and so will make use of a mouse and keyboard for user input. Figure 2.4 below summarizes the ways with which the user will interact with our Code Check application, which will be further detailed using UML Use Case diagrams. These Use-Case diagrams should be fed as input directly into Section 3.1, external interfaces, which is where the design of the user interface is specified. Here is the full list of UML Use-Case Diagrams: Use Case UI Context Use Case 2.1 Welcome Dialog Create New Code Check 2.2 Welcome Dialog Select Recent Code Check to Load 2.3 Welcome Dialog Close Welcome Dialog 2.4 File Toolbar Create New Code Check 2.5 File Toolbar Load Code Check 2.6 File Toolbar Rename Code Check 2.7 File Toolbar Learn About Code Check 2.8 File Toolbar Exit Code Check 2.9 Edit Toolbar Navigate Home Step 2.10 Edit Toolbar Navigate to Previous Step 2.11 Edit Toolbar Navigate to Next Step 2.12 Extract Submissions Pane Extract Submissions 2.13 Rename Student Submissions Pane Rename Student Submissions 2.14 Unzip Student Submissions Pane Unzip Student Submissions 2.15 Extract Source Pane Toggle Source File Type 2.16 Extract Source Pane Add Custom File Type 2.17 Extract Source Pane Extract Source Code 2.18 Code Check Pane Run Code Check 2.19 Code Check Pane View Code Check Results 2.20 Multiple Panes Remove Table Item 2.21 Multiple Panes Refresh Table 2.22 Multiple Panes View Table Item Figure 2.4: Overview of Use-Case Diagrams 8

9 Use Case 2.1: Create New Code Check Use-Case: Create New Code Check Goal in Context: The user wishes to make a new code check Preconditions: The application has been started and the user is viewing the Welcome Dialog 1. User is viewing the Code Check application s Welcome Dialog 2. User clicks on the Create New Code Check link/button. A text dialog prompts the user for the name of the code check to perform. 3. User enters a unique code check name. The app will then create a directory with that name to the application s work directory. Inside that directory, empty subdirectories named submissions, projects, and code are added. The welcome Dialog is closed and the Main UI is opened and data is initialized and the user interface is reset with default values for a new code check. Exceptions: Should the user enter a code check name that already exists the user should be notified via a warning dialog and prompted for a name again. Note that the name prompt dialog should also have a Cancel option. When available: First Benchmark Frequency of use: Can only at maximum be used once per session Use Case 2.2: Select Recent Code Check to Load Use-Case: Select Recent Code Check to Load Goal in Context: The user wishes to load a recently edited code check that has already been created Preconditions: The application has been started and the user is viewing the Welcome Dialog 1. User is viewing the Code Check application s Welcome Dialog 2. User clicks on one of the links to a recently edited code check. The Welcome Dialog is closed. The Main UI is opened and data is initialized and the user interface is setup with values loaded from the selected code check Exceptions: Should any error occur during the loading of an existing code check the user should be notified via a warning dialog When available: First Benchmark Frequency of use: Can only at maximum be used once per session Use Case 2.3: Close Welcome Dialog Use-Case: Close Welcome Dialog Goal in Context: The user wishes to close the Welcome Dialog in order to bring forth the Main UI Preconditions: The application has been started and the user is viewing the Welcome Dialog 1. User is viewing the Code Check application s Welcome Dialog 2. User clicks on the dialog s X in the window s title bar. Welcome Dialog is closed. Main UI is opened without the workspace being loaded Exceptions: This is only available at the start of using the application as once the Welcome Dialog is 9

10 closed it is never opened again When available: First Benchmark Frequency of use: Can only at maximum be used once per session Use Case 2.4: Create New Code Check Use-Case: Create New Code Check Goal in Context: The user wishes to make a new code check Preconditions: The application has been started and the Main UI has been loaded 1. User is viewing the Code Check application s Main UI 2. User clicks on the Create New Code Check button. A text dialog prompts the user for the name of the code check to perform. 3. User enters a unique code check name. The app will then create a directory with that name to the application s work directory. Inside that directory, empty subdirectories named blackboard, submissions, projects, and code are added. The Main UI workspace is then initialized using default values and the user is brought to the Step 1 screen. Exceptions: Should the user enter a code check name that already exists or one for which a directory cannot be named the user should be notified via a warning dialog and prompted for a name again. Note that the name prompt dialog should also have a Cancel option. When available: First Benchmark Use Case 2.5: Load Code Check Use-Case: Load Code Check Goal in Context: The user wishes to load an existing code check that has already been created Preconditions: The code check to load must already exist 1. User is viewing the Code Check application s Main UI 2. User clicks on the Load Code Check button. The user will then be prompted via a File Chooser dialog to select a Code Check file. 3. The user selects an existing Code Check file and presses the File Chooser dialog s Open button. The File Chooser dialog is closed. The file s data is initialized and the user interface is setup with values loaded from the selected code check Exceptions: Should any error occur during the loading of an existing code check the user should be notified via a warning dialog When available: First Benchmark 10

11 Use Case 2.6: Rename Code Check Use-Case: Rename Code Check Goal in Context: The user wants to rename the code check that s loaded Preconditions: The application is running and a code check is loaded 1. User is working on a code check in any step of progress 2. User clicks on Rename Code Check button. User will be prompted for a new name (or to cancel). 3. User enters a new name for the current code check. If the name is valid, the current code check will be renamed. This means the file itself is renamed, but also the necessary directory is renamed. The window title bar must also be updated Exceptions: If the user enters an invalid name (i.e. can t be used as a directory name or already taken), the user should be notified via a dialog. When available: First Benchmark Use Case 2.7: Learn About Code Check Use-Case: Learn About Code Check Goal in Context: The user wants information about the application Preconditions: The application is running and the Main UI is loaded. 1. The user clicks on the About button. A message dialog opens displaying the name, author, and year of the application s development. The user may then read the desired information. 2. The user clicks the OK button to close the dialog. When available: First Benchmark Use Case 2.8: Exit Code Check Use-Case: Exit Code Check Goal in Context: The user wishes to exit the application Preconditions: The application is running and the Main UI is loaded. 1. User clicks the close button (i.e. X ) in the window title bar. The user will be prompted to verify that they wish to close the application. 2. The user clicks Yes to verify that they wish to exit. The application is then closed. When available: First Benchmark 11

12 Use Case 2.9: Navigate to Home Step Use-Case: Navigate to Home Step Goal in Context: The user wishes to navigate back to the first step for the currently loaded code check Preconditions: The user is currently viewing a screen other than Step 1 1. User is viewing a step screen other than Step 1 2. User clicks on Home Step button. Application switches to Step 1 screen 3. User views Step 1 screen When available: First Benchmark Use Case 2.10: Navigate to Previous Step Use-Case: Navigate to Previous Step Goal in Context: User wishes to go to the previous step screen Preconditions: User is currently viewing a step screen other than Step 1 1. User is viewing a step screen other than Step 1 2. User clicks on Previous Button. This will change the current screen to the previous step screen. When available: First Benchmark Use Case 2.11: Navigate to Next Step Use-Case: Navigate to Next Step Goal in Context: User wishes to go to the next step screen Preconditions: User is currently viewing a step screen other than Step 1 1. User is viewing a step screen other than Step 1 2. User clicks on Next Button. This will change the current screen to the next step screen. When available: First Benchmark Use Case 2.12: Extract Submissions Use-Case: Extract Submissions Goal in Context: User wishes to extract all student ZIP files from the collections of ZIP files downloaded from Blackboard Preconditions: User is viewing Step 1 screen and the table has at least one item 12

13 1. User is viewing Step 1 screen 2. User selects at least one ZIP file in table 3. User clicks Extract button. This will unzip all contents of all selected Blackboard ZIP files to the current code check s submissions directory. When available: Second Benchmark Use Case 2.13: Rename Student Submissions Use-Case: Rename Student Submissions Goal in Context: Big long student submission ZIP file names are a pain to deal with. In this step the user may shorten them to NetID named files. Preconditions: User is editing an existing code check and the contents of the downloaded ZIP file from Blackboard have already been extracted. 1. User is viewing a list of student submission ZIP files. 2. User clicks Rename button. This will shorten all student submissions to just their NetID.zip When available: Second Benchmark Use Case 2.14: Unzip Student Submissions Use-Case: Unzip Student Submissions Goal in Context: User wishes to unzip student ZIP files Preconditions: Submitted student ZIP files have already been extracted from the ZIP file downloaded from Blackboard 1. User is viewing the Step 3 screen. 2. User selects the student submissions to extract 3. User clicks the Unzip button. This will create a directory for each student in the projects directory. When available: Second Benchmark Use Case 2.15: Toggle Source File Type Use-Case: Toggle Source File Type Goal in Context: User wishes to select the types of source file extensions on which to extract for plagiarism check Preconditions: User is viewing step 4 screen 13

14 1. User is viewing step 4 screen 2. User clicks on source file extension checkboxes to enable/disable When available: Second Benchmark Use Case 2.16: Add Custom File Type Use-Case: Add Custom File Type Goal in Context: User wishes to do a code check on a type of source code file not listed Preconditions: User is viewing the step 4 screen 1. User is viewing the Step 4 screen 2. User clicks inside custom file type check box. 3. User types desired file extension When available: Second Benchmark Use Case 2.17: Extract Source Code Use-Case: Extract Source Code Goal in Context: User wishes to extract only source code files from unzipped projects Preconditions: User is viewing the step 4 screen and there are submissions in the table 1. User is viewing the Step 4 screen and there are unzipped projects in the table 2. User clicks the Extract Code button. This will search all student projects and find the desired source files and copy them into their proper student directories When available: Second Benchmark Use Case 2.18: Run Code Check Use-Case: Run Code Check Goal in Context: User wishes to perform a code check on the loaded work Preconditions: User is viewing the step 5 screen and there are submissions in the table 1. User is viewing the Step 5 screen and there are extracted code submissions in the table 2. User clicks on the Code Check button. Code check feedback is printed into the text 14

15 area. When available: Second Benchmark Use Case 2.19: View Code Check Results Use-Case: View Code Check Results Goal in Context: User wishes to view the results of the code check Preconditions: User has already performed a Code Check for the work loaded 3. User is viewing the Step 5 screen and a code check has been completed 4. User clicks on the View Results button, which is only enabled if a code check has been completed for the current work. This opens a new dialog window that contains a simple Web browser that is viewing the results page 5. User clicks on results links as desired to navigate between code check results. 6. User clicks dialog X to close. When available: Second Benchmark. Use Case 2.20: Remove Table Item Use-Case: Remove Table Item Goal in Context: User wishes to remove a table item Preconditions: User is viewing one of the five Step screens and at least one item is in the table 1. User is viewing one of the Step screens. 2. User selects one of the items in the table (Blackboard submission file, submitted zip file, user directory, etc.) 3. User clicks on Remove button. This will open a dialog that will give the user an Ok/Cancel choice to verify the decision. 4. User clicks Ok to verify removing the item. Item will be removed from the item and deleted from the file system. Exceptions: User may click Cancel to avoid accidentally removing item. When available: Second Benchmark 15

16 Use Case 2.21: Refresh Table Use-Case: Refresh Table Goal in Context: User wishes to see the latest list of items Preconditions: User is viewing one of the five Step screens 1. User is viewing one of the five step screens 2. User presses the Refresh button. The table is then reloaded with the latest information. The reason this is necessary is that items can be deleted or even added externally via the file system When available: Second Benchmark Use Case 2.22: View Table Item Use-Case: View Table Item Goal in Context: User wishes to view the contents of a table item Preconditions: User is viewing one of the five Step screens and at least one item is in the table 1. User is viewing one of the Step screens. User selects an item from one of the tables 2. User selects one of the items in the table (Blackboard submission file, submitted zip file, user directory, etc.) 3. User clicks on View button. This will open a dialog with a view of the full contents of the file or directory Exceptions: This feature is only enabled for when the user selects a single file. If multiple files are selected the View button must be disabled and then reenabled when only one table item is selected. When available: Second Benchmark 16

17 i. Hardware Interfaces The application should be runnable on any platform that supports Java, but would require a keyboard and mouse. ii. Software Interfaces Code Check will be developed using the Java language. Note that since it is a traditional workspace-type application, it may be best to use the Desktop Java Framework. iii. Communications Interfaces Note that this editing application will operate locally but an Internet connection will be required to perform the Code Check plagiarism submission and to check results. iv. Memory Constraints The application is dependent upon student submissions. If those are gigantically large it could affect product performance. v. Operations Note that grading would be done using the IDE used for creating the ZIPped up project files. N/A vi. Site Adaptation Requirements N/A. b. Product functions c. User characteristics 17

18 The editor should aim to be as user friendly as possible, using the principles of foolproof design as well as sound UI design principles. N/A d. Constraints e. Assumptions and dependencies N/A f. Apportioning of the Requirements N/A 18

19 3 Specific requirements A Code Check has five steps, as indicated by the previously described five screens. Following are visual depictions of these screens. Note that all operations requiring file extraction and copying will employ progress bars to show the user how far along work has progressed. 3.1 External interfaces The following wireframe mockups provide a look at the types of controls and layout to be used for the User Interface. Note that the User Interface designer should select the appropriate icons for all buttons and should carefully choose color and font combinations that provide good contrast and attract the eye. Note that the User Interface designer should also consider additional dialogs for providing adequate feedback to the user as well as for navigation through the file system to select files and directories as part of certain use cases. Figure 3.1 Welcome Dialog 19

20 Figure 3.2 Extract Blackboard Submissions Figure 3.3 Rename Student Submissions 20

21 Figure 3.4 Unzip Student Submissions 21

22 Figure 3.5 Extract Source Code Figure 3.6 Code Check 22

23 3.2 Functions One of the important things to consider in our application is providing the appropriate feedback to the user. Users need feedback to enjoy their experience. This is typically done with visual cues like dialog boxes. 3.3 Performance requirements N/A 3.4 Logical database requirements N/A 3.5 Design constraints JavaFX will be used because it effectively leverages each system s available rendering technologies and provides platform independence for personal computers. 3.6 Software system attributes As professionals, all members of this project must take this project seriously. We are dedicated to producing robust software that exceeds the expectations of our customers. In order to achieve this level of quality, we should build a product with the following properties in mind: Reliability The program should be carefully planned, constructed and tested such that it behaves flawlessly for the end user. Bugs, including rendering problems, are unacceptable. In order to minimize these problems, all software will be carefully designed using UML diagrams and a Design to Test approach should be used for the Implementation Stage Availability Customers may download and install the application for free Security All security mechanisms will be addressed by future revisions Extensibility It is possible that more JavaScript/JSON widgets might be added to course sites in the future, so by providing an additional tab with suitable data and making changes to exporting methods, this should be considered during this deaign Portability To start with, the app will target desktop Java applications Maintainability Update mechanisms will be addressed by future revisions. 23

24 3.7 Organizing the specific requirements Note that the application is simple enough that we need not worry about using an alternative arrangement of the content of this document. The specific requirements for this application already fit neatly into the sections listed in the IEEE s recommended SRS format. 3.8 Additional comments It is important to keep in mind that the plagiarism check results will be provided via a URL. The work done by that program is proprietary and not performed by this application. 24

25 4 Supporting Information Note that this document should serve as a reference for the designers and coders in the future stages of the development process, so we ll provide a table of contents to help quickly find important sections. 4.1 Table of contents 1. Introduction 1. Purpose 2. Scope 3. Definitions, acronyms, and abbreviations 4. References 5. Overview 2. Overall description 1. Product perspective 2. Product functions 3. User characteristics 4. Constraints 5. Assumptions and dependencies 3. Specific requirements 1. External interfaces 2. Functions 3. Performance requirements 4. Logical database requirements 5. Design constraints 6. Software system attributes 7. Organizing the specific requirements 8. Additional comments 4. Supporting Information 1. Table of contents 2. Appendixes 4.2 Appendixes N/A 25

The Metro Map Maker TM0 Software Requirements Specification

The Metro Map Maker TM0 Software Requirements Specification The Metro Map Maker TM0 Software Requirements Specification Author: Richard McKenna Debugging Enterprises TM Based on IEEE Std 830 TM -1998 (R2009) document format Copyright 2017 Debugging Enterprises

More information

College of Pharmacy Windows 10

College of Pharmacy Windows 10 College of Pharmacy Windows 10 Windows 10 is the version of Microsoft s flagship operating system that follows Windows 8; the OS was released in July 2015. Windows 10 is designed to address common criticisms

More information

CSCI 161: Introduction to Programming I Lab 1a: Programming Environment: Linux and Eclipse

CSCI 161: Introduction to Programming I Lab 1a: Programming Environment: Linux and Eclipse CSCI 161: Introduction to Programming I Lab 1a: Programming Environment: Linux and Eclipse Goals - to become acquainted with the Linux/Gnome environment Overview For this lab, you will login to a workstation

More information

Pearson Inform 5.1. User Guide. Basic Navigation. Date: 1/26/2010. Copyright 2009 Pearson Education, Inc. or its affiliate(s).

Pearson Inform 5.1. User Guide. Basic Navigation. Date: 1/26/2010. Copyright 2009 Pearson Education, Inc. or its affiliate(s). Pearson Inform 5.1 User Guide Basic Navigation Date: 1/26/2010 Copyright 2009 Pearson Education, Inc. or its affiliate(s). All rights reserved. No part of this publication may be reproduced or transmitted

More information

COURSE FILES. BLACKBOARD TUTORIAL for INSTRUCTORS

COURSE FILES. BLACKBOARD TUTORIAL for INSTRUCTORS OVERVIEW: Course Files provides file storage on the Blackboard server for a single course. Course Files within each course displays content for that specific course, not for other courses you teach. You

More information

Blackboard: Campus Pack Blog Sites

Blackboard: Campus Pack Blog Sites 1 Blackboard: Campus Pack Blog Sites TLT Instructional Technology Support (631) 632-2777 Stony Brook University blackboard@stonybrook.edu http://it.stonybrook.edu/ In this document, you will learn how

More information

Getting Started with SalesLink

Getting Started with SalesLink Getting Started with SalesLink Table of Contents Table of Contents...1...2 SalesLink Configurations...3 Office Procedures...3 Traffic System Ready to Receive...3 Technical Information...4 The SalesLink

More information

Title of Resource Introduction to SPSS 22.0: Assignment and Grading Rubric Kimberly A. Barchard. Author(s)

Title of Resource Introduction to SPSS 22.0: Assignment and Grading Rubric Kimberly A. Barchard. Author(s) Title of Resource Introduction to SPSS 22.0: Assignment and Grading Rubric Kimberly A. Barchard Author(s) Leiszle Lapping-Carr Institution University of Nevada, Las Vegas Students learn the basics of SPSS,

More information

DOCUMENTUM D2. User Guide

DOCUMENTUM D2. User Guide DOCUMENTUM D2 User Guide Contents 1. Groups... 6 2. Introduction to D2... 7 Access D2... 7 Recommended browsers... 7 Login... 7 First-time login... 7 Installing the Content Transfer Extension... 8 Logout...

More information

Beginner s Guide to ACD5

Beginner s Guide to ACD5 Beginner s Guide to ACD5 AIA Contract Documents Online Service for Single-Users A step-by-step guide to creating, editing, sharing and managing contract documents Beginner s Guide to ACD5 AIA Contract

More information

EconPortal Instructor Quick Start for Krugman/Wells Macroeconomics, 3e

EconPortal Instructor Quick Start for Krugman/Wells Macroeconomics, 3e EconPortal Instructor Quick Start for Krugman/Wells Macroeconomics, 3e For technical support call 1-800-936-6899 EconPortal Quick Start for Krugman/Wells Macroeconomics, 3e Table of Contents Overview...

More information

CSE 332: Data Structures and Parallelism Autumn 2017 Setting Up Your CSE 332 Environment In this document, we will provide information for setting up Eclipse for CSE 332. The first s ection covers using

More information

Version Android User's Guide. May-02-13

Version Android User's Guide. May-02-13 Version 12.5 Android User's Guide May-02-13 Table of Contents Chapter 1 Overview 1 Getting Help 2 Other Resources 3 Documentation and Learning Resources 3 Technical Support 4 Community 4 Blackboard Collaborate

More information

Panopto. End-User Guide

Panopto. End-User Guide Panopto End-User Guide Table of Contents INTRODUCTION... 3 PROVISIONING A COURSE... 3 LOGGING IN... 7 NAVIGATION... 8 PREPARING TO RECORD... 9 CREATING A SIMPLE RECORDING (AUDIO AND VIDEO ONLY)... 10 CREATING

More information

Enterprise Architect. User Guide Series. Testing. Author: Sparx Systems. Date: 10/05/2018. Version: 1.0 CREATED WITH

Enterprise Architect. User Guide Series. Testing. Author: Sparx Systems. Date: 10/05/2018. Version: 1.0 CREATED WITH Enterprise Architect User Guide Series Testing Author: Sparx Systems Date: 10/05/2018 Version: 1.0 CREATED WITH Table of Contents Testing 3 Test Management 4 Create Test Records 6 Working On Test Records

More information

Exporting Files from Succeed for use in Canvas Modules

Exporting Files from Succeed for use in Canvas Modules Canvas Support This guide will inform you how to export individual files or groups of files from Succeed modules and import them into Canvas. This technique should only be used for items to be repurposed.

More information

CONTENTS. What is Moodle? Logging in to Moodle Introducing the Workspace Customising the Workspace... 8

CONTENTS. What is Moodle? Logging in to Moodle Introducing the Workspace Customising the Workspace... 8 Moodle Training March 2012 Material produced by the VLE Group (Monash University) and elearning Services (Faculty of Medicine, Nursing and Health Sciences, Monash University) vle.monash.edu/supporttraining/learnbytech/moodle/

More information

Powerlink for WebCT CE 6/ Vista 4 User Guide (updated )

Powerlink for WebCT CE 6/ Vista 4 User Guide (updated ) Powerlink for WebCT CE 6/ Vista 4 User Guide (updated 9.20.05) Contents Introduction Installation & Configuration 3 Restricting Access 6 Allowing Access for Multiple Accounts 6 Turnitin Assignments Adding

More information

GeographyPortal Instructor Quick Start World Regional Geography Without Subregions, Fifth Edition Pulsipher

GeographyPortal Instructor Quick Start World Regional Geography Without Subregions, Fifth Edition Pulsipher GeographyPortal Instructor Quick Start World Regional Geography Without Subregions, Fifth Edition Pulsipher For technical support call 1-800-936-6899 GeographyPortal Quick Start for Pulsipher, World Regional

More information

Laboratory 1: Eclipse and Karel the Robot

Laboratory 1: Eclipse and Karel the Robot Math 121: Introduction to Computing Handout #2 Laboratory 1: Eclipse and Karel the Robot Your first laboratory task is to use the Eclipse IDE framework ( integrated development environment, and the d also

More information

/ tel: / tel:

/ tel: / tel: nsteptoe@dcccd.edu / tel: 972-669-6464 jchi@dcccd.edu / tel: 214-576-0919 Table of Contents Introduction... 3 Anonymous Grading... 4 Delegated Grading... 6 Reconcile Grades... 7 SafeAssign Integration...

More information

Relius Documents ASP Checklist Entry , select option 2

Relius Documents ASP Checklist Entry , select option 2 Relius Documents ASP Checklist Entry 1 800 326 7235, select option 2 Table of Contents Overview...3 Question and Answer...4 View Commentary & View Exclusion Logic...5 Tree View...7 Toolbar...8 Checklist

More information

EDITING AN EXISTING REPORT

EDITING AN EXISTING REPORT Report Writing in NMU Cognos Administrative Reporting 1 This guide assumes that you have had basic report writing training for Cognos. It is simple guide for the new upgrade. Basic usage of report running

More information

Microsoft Windows SharePoint Services

Microsoft Windows SharePoint Services Microsoft Windows SharePoint Services SITE ADMIN USER TRAINING 1 Introduction What is Microsoft Windows SharePoint Services? Windows SharePoint Services (referred to generically as SharePoint) is a tool

More information

Getting Started with Python and the PyCharm IDE

Getting Started with Python and the PyCharm IDE New York University School of Continuing and Professional Studies Division of Programs in Information Technology Getting Started with Python and the PyCharm IDE Please note that if you already know how

More information

Adrian College Blackboard Quick Start Guide for Instructors

Adrian College Blackboard Quick Start Guide for Instructors Adrian College Blackboard Quick Start Guide for Instructors Table of Contents Logging into Blackboard... 1 User Management Enrolling Students... 1 Enrolling a Guest, T.A. or Grader.... 1 Course Site Overview...

More information

Introduction to IBM Rational HATS For IBM System i (5250)

Introduction to IBM Rational HATS For IBM System i (5250) Introduction to IBM Rational HATS For IBM System i (5250) Introduction to IBM Rational HATS 1 Lab instructions This lab teaches you how to use IBM Rational HATS to create a Web application capable of transforming

More information

Enterprise Architect. User Guide Series. Ribbons. Author: Sparx Systems Date: 27/05/2016 Version: 1.0 CREATED WITH

Enterprise Architect. User Guide Series. Ribbons. Author: Sparx Systems Date: 27/05/2016 Version: 1.0 CREATED WITH Enterprise Architect User Guide Series Ribbons Author: Sparx Systems Date: 27/05/2016 Version: 1.0 CREATED WITH Table of Contents Ribbons 4 File Management 6 Show Panel 8 Start Ribbon 12 Using the Explore

More information

ACADEMIC TECHNOLOGY SUPPORT

ACADEMIC TECHNOLOGY SUPPORT ACADEMIC TECHNOLOGY SUPPORT D2L : Introduction A Guide for Instructors ats@etsu.edu 439-8611 www.etsu.edu/ats Table of Contents Introduction...1 Objectives... 1 Logging In to D2L...1 My Home... 2 The Minibar...

More information

ithenticate User Guide Getting Started Folders Managing your Documents The Similarity Report Settings Account Information

ithenticate User Guide Getting Started Folders Managing your Documents The Similarity Report Settings Account Information ithenticate User Guide Getting Started Folders Managing your Documents The Similarity Report Settings Account Information 1 Getting Started Whether you are a new user or a returning one, to access ithenticate

More information

Practice Labs User Guide

Practice Labs User Guide Practice Labs User Guide This page is intentionally blank Contents Introduction... 3 Overview... 3 Accessing Practice Labs... 3 The Practice Labs Interface... 4 Minimum Browser Requirements... 5 The Content

More information

Enterprise Architect. User Guide Series. Ribbons. Author: Sparx Systems Date: 15/07/2016 Version: 1.0 CREATED WITH

Enterprise Architect. User Guide Series. Ribbons. Author: Sparx Systems Date: 15/07/2016 Version: 1.0 CREATED WITH Enterprise Architect User Guide Series Ribbons Author: Sparx Systems Date: 15/07/2016 Version: 1.0 CREATED WITH Table of Contents Ribbons 4 File Management 6 Show Panel 8 Start Ribbon 12 Using the Explore

More information

User Manual. perfectionlearning.com/technical-support

User Manual. perfectionlearning.com/technical-support User Manual perfectionlearning.com/technical-support 1 User Manual Accessing Math X... 3 Login... 3 Forgotten Password... 3 Navigation Menu... 4 Logout... 4 Admin... 5 Creating Classes and Students...

More information

Style Report Enterprise Edition

Style Report Enterprise Edition INTRODUCTION Style Report Enterprise Edition Welcome to Style Report Enterprise Edition! Style Report is a report design and interactive analysis package that allows you to explore, analyze, monitor, report,

More information

Script.byu.edu SharePoint Instructions

Script.byu.edu SharePoint Instructions Script.byu.edu SharePoint Instructions Site Actions Menu Go to script.byu.edu, click on Authenticate at the bottom of page, you will be prompted to enter a username and password, use your netid and password

More information

Primavera P6 Professional Windows 10 Installation Instructions. Primavera P6. Installation Instructions. For Windows 10 Users

Primavera P6 Professional Windows 10 Installation Instructions. Primavera P6. Installation Instructions. For Windows 10 Users Primavera P6 Installation Instructions For Windows 10 Users 1 IMPORTANT: READ THESE INSTRUCTIONS CAREFULLY AND FOLLOW THEM EXACTLY. The following is provided for your convenience only. Ten Six Consulting

More information

VHIMS UPGRADE VERSION

VHIMS UPGRADE VERSION Introduction A new RiskMan version release is now available for VHIMS clients. The following new features and modifications have been implemented since the previous release. What s New What s Changed Homepage

More information

Blackboard Learn 9.1 Last updated: March 2010

Blackboard Learn 9.1 Last updated: March 2010 Blackboard Learn 9.1 Last updated: March 2010 2010 Blackboard Inc. All rights reserved. The content of this manual may not be reproduced or distributed without the express written consent of Blackboard

More information

Enterprise Architect. User Guide Series. Testing. Author: Sparx Systems Date: 15/07/2016 Version: 1.0 CREATED WITH

Enterprise Architect. User Guide Series. Testing. Author: Sparx Systems Date: 15/07/2016 Version: 1.0 CREATED WITH Enterprise Architect User Guide Series Testing Author: Sparx Systems Date: 15/07/2016 Version: 1.0 CREATED WITH Table of Contents Testing 3 Test Management 4 Create Test Records 6 Working On Test Records

More information

Océ Engineering Exec. Doc Exec Pro and Electronic Job Ticket for the Web

Océ Engineering Exec. Doc Exec Pro and Electronic Job Ticket for the Web Océ Engineering Exec Doc Exec Pro and Electronic Job Ticket for the Web Océ-Technologies B.V. Copyright 2004, Océ-Technologies B.V. Venlo, The Netherlands All rights reserved. No part of this work may

More information

Percussion Documentation Table of Contents

Percussion Documentation Table of Contents Percussion Documentation Table of Contents Intro to the Percussion Interface... 2 Logging In to Percussion... 2 The Dashboard... 2 Managing Dashboard Gadgets... 3 The Menu... 4 The Finder... 4 Editor view...

More information

Create a new form. To create a form from a new or existing spreadsheet: 1. Click the Tools drop down menu and select Create a form.

Create a new form. To create a form from a new or existing spreadsheet: 1. Click the Tools drop down menu and select Create a form. Create a new form You can choose Google Forms when creating a new doc from Google Drive. You can also create a new form from a Google Sheet or from a template. To create a form within Google Drive: Click

More information

Multi-Sponsor Environment. SAS Clinical Trial Data Transparency User Guide

Multi-Sponsor Environment. SAS Clinical Trial Data Transparency User Guide Multi-Sponsor Environment SAS Clinical Trial Data Transparency User Guide Version 6.0 01 December 2017 Contents Contents 1 Overview...1 2 Setting up Your Account...3 2.1 Completing the Initial Email and

More information

BLACKBOARD PORTFOLIOS

BLACKBOARD PORTFOLIOS BLACKBOARD PORTFOLIOS Blackboard Learn Student Support elearning Instructors may create assignments in their courses that require students to build a portfolio using Blackboard s portfolio tool. A portfolio

More information

Downloading Java Development Kit (JDK), the Offline Client, and Utilizing the Offline Audit Tool

Downloading Java Development Kit (JDK), the Offline Client, and Utilizing the Offline Audit Tool Downloading Java Development Kit (JDK), the Offline Client, and Utilizing the Offline Audit Tool Contents Downloading Java Development Kit... 2 Downloading the Offline Client... 7 Completing Your Audit

More information

1. To access the Course settings page, click Edit settings in the Administration block.

1. To access the Course settings page, click Edit settings in the Administration block. Course Management Managing Course Design Configuring Course Settings The course setting page contains all of the important options for your course such as making the course available to students, and enabling

More information

PsychPortal Instructor Quick Start for Myers, Psychology 10e In Modules

PsychPortal Instructor Quick Start for Myers, Psychology 10e In Modules PsychPortal Instructor Quick Start for Myers, Psychology 10e In Modules For technical support call 1-800-936-6899 PsychPortal Quick Start for Myers Psychology 10e In Modules Table of Contents Overview...

More information

Welcome to Selector2GO Help

Welcome to Selector2GO Help Welcome to Selector2GO Help World Headquarters 445 Hamilton Avenue, 7th floor, White Plains, New York 10601 United States of America Support: +1 914 259 4900 support@rcsworks.com 2004-2018. All Rights

More information

Blackboard 9.1

Blackboard 9.1 Blackboard 9.1 http://mybb.gvsu.edu Logging into Blackboard... 2 User Management... 2 Course Site Overview... 2 Edit Mode On/OFF... 3 ****Activate your class site... 4 Announcements... 4 File Names...

More information

Document Management Tool Screen MockUps Document

Document Management Tool Screen MockUps Document Document Management Tool Screen MockUps Document Version 4, May 5, 2006 Revision History No. Release/ Due Date Comments 0 April 06, 2006 Initial Draft. 1 April 18, 2006 Change font, create new screen shots

More information

Getting Started in CAMS Enterprise

Getting Started in CAMS Enterprise CAMS Enterprise Getting Started in CAMS Enterprise Unit4 Education Solutions, Inc. Published: 18 May 2016 Abstract This document is designed with the new user in mind. It details basic features and functions

More information

umapps Using umapps 6/14/2017 Brought to you by: umtech & The Center for Teaching & Learning

umapps Using umapps 6/14/2017 Brought to you by: umtech & The Center for Teaching & Learning umapps Using umapps Center for Teaching and Learning (CTL) 100 Administration Bldg., Memphis, TN 38152 Phone: 901.678.8888 Email: itstrainers@memphis.edu Center for Teaching and Learning Website 6/14/2017

More information

EnviroPortal Instructor Quick Start for Friedland, Relyea, & Courard-Hauri Environmental Science: Foundations and Applications

EnviroPortal Instructor Quick Start for Friedland, Relyea, & Courard-Hauri Environmental Science: Foundations and Applications EnviroPortal Instructor Quick Start for Friedland, Relyea, & Courard-Hauri Environmental Science: Foundations and Applications For technical support call 1-800-936-6899 EnviroPortal Quick Start for Friedland,

More information

Steps: 1. Log in to the Dmitri application through the following website URL, as appropriate:

Steps: 1. Log in to the Dmitri application through the following website URL, as appropriate: Dmitri Suite Getting Started Logging In and Logging Out Logging In Use the following steps to log in to the Dmitri application. Steps: 1. Log in to the Dmitri application through the following website

More information

Long Beach Unified School District. Portal User s Guide. August 2014

Long Beach Unified School District. Portal User s Guide. August 2014 Long Beach Unified School District Portal User s Guide August 2014 INTRODUCTION The Long Beach Unified School District s PORTAL (mylbusd) provides users with access to District applications, services,

More information

Introduction to the SAM Student Guide 4. How to Use SAM 5. Logging in the First Time as a Pre-registered Student 5 Profile Information 7

Introduction to the SAM Student Guide 4. How to Use SAM 5. Logging in the First Time as a Pre-registered Student 5 Profile Information 7 Contents Introduction to the SAM Student Guide 4 How to Use SAM 5 Logging in the First Time as a Pre-registered Student 5 Profile Information 7 Logging into SAM as a New User 9 Forgot Password 14 Grace

More information

Secure Web Appliance. Basic Usage Guide

Secure Web Appliance. Basic Usage Guide Secure Web Appliance Basic Usage Guide Table of Contents 1. Introduction... 1 1.1. About CYAN Secure Web Appliance... 1 1.2. About this Manual... 1 1.2.1. Document Conventions... 1 2. Description of the

More information

I. Downloading Grades from the Grade Center

I. Downloading Grades from the Grade Center I. Downloading Grades from the Grade Center If you use the Blackboard Grade Center for grading, it is recommended that you download the data from the Grade Center into Excel to keep a backup copy for yourself.

More information

LiquidApps User s Guide

LiquidApps User s Guide LiquidApps User s Guide Version 7.2 Harmonia Holdings Group, LLC LiquidApps, Inc. 2020 Kraft Drive Suite 1000 Blacksburg VA 24060 Legal Notices Disclaimer All information in this document is accurate at

More information

Using the ispxpga Floorplanner

Using the ispxpga Floorplanner Using the ispxpga Floorplanner Table of Contents USING THE ISPXPGA FLOORPLANNER...3 Task 1: Open the Design...4 Task 2: Open a Floorplanner Design File...5 Task 3: Tour the Graphical User Interface - The

More information

DWG FastView for Web. User Guide

DWG FastView for Web. User Guide DWG FastView for Web User Guide Contents 1. Software installation and start-up... 1 1.1 Software installation... 1 1.2 Software start-up... 1 2.Operation interface and functions... 3 2.1 Operation interface...

More information

Blackboard: Campus Pack Journal Sites

Blackboard: Campus Pack Journal Sites 1 Blackboard: Campus Pack Journal Sites TLT Instructional Technology Support (631) 632-2777 Stony Brook University blackboard@stonybrook.edu http://tlt.stonybrook.edu/facultyservices In this document,

More information

Useful Google Apps for Teaching and Learning

Useful Google Apps for Teaching and Learning Useful Google Apps for Teaching and Learning Centre for Development of Teaching and Learning (CDTL) National University of Singapore email: edtech@groups.nus.edu.sg Table of Contents About the Workshop...

More information

Blackboard Learn 9.1 Reference Terminology elearning Blackboard Learn 9.1 for Faculty

Blackboard Learn 9.1 Reference Terminology elearning Blackboard Learn 9.1 for Faculty Action Bar Rows at the top of the page, containing page-level actions, such as Build Content, Search, Delete, and Upload. Action Menu The Action Link is represented by two downward pointing arrows. Click

More information

School Installation Guide ELLIS Academic 5.2.6

School Installation Guide ELLIS Academic 5.2.6 ELLIS Academic 5.2.6 This document was last updated on 2/16/11. or one or more of its direct or indirect affiliates. All rights reserved. ELLIS is a registered trademark, in the U.S. and/or other countries,

More information

EDAConnect-Dashboard User s Guide Version 3.4.0

EDAConnect-Dashboard User s Guide Version 3.4.0 EDAConnect-Dashboard User s Guide Version 3.4.0 Oracle Part Number: E61758-02 Perception Software Company Confidential Copyright 2015 Perception Software All Rights Reserved This document contains information

More information

Web-CAT Guidelines. 1. Logging into Web-CAT

Web-CAT Guidelines. 1. Logging into Web-CAT Contents: 1. Logging into Web-CAT 2. Submitting Projects via jgrasp a. Configuring Web-CAT b. Submitting Individual Files (Example: Activity 1) c. Submitting a Project to Web-CAT d. Submitting in Web-CAT

More information

DiskPulse DISK CHANGE MONITOR

DiskPulse DISK CHANGE MONITOR DiskPulse DISK CHANGE MONITOR User Manual Version 10.5 Feb 2018 www.diskpulse.com info@flexense.com 1 1 DiskPulse Overview...3 2 DiskPulse Product Versions...5 3 Using Desktop Product Version...6 3.1 Product

More information

Test Information and Distribution Engine

Test Information and Distribution Engine SC-Alt Test Information and Distribution Engine User Guide 2018 2019 Published January 14, 2019 Prepared by the American Institutes for Research Descriptions of the operation of the Test Information Distribution

More information

Ektron Advanced. Learning Objectives. Getting Started

Ektron Advanced. Learning Objectives. Getting Started Ektron Advanced 1 Learning Objectives This workshop introduces you beyond the basics of Ektron, the USF web content management system that is being used to modify department web pages. This workshop focuses

More information

Assignment Manager. Change Edit Mode to On if it is not already by clicking on the option at the top right of the window.

Assignment Manager. Change Edit Mode to On if it is not already by clicking on the option at the top right of the window. Assignment Manager Blackboard has a tool called the Assignment Manager that facilitates file submissions from students. The Assignment Manager feature can be used in any content area (e.g. Course Information,

More information

Wholesale Lockbox User Guide

Wholesale Lockbox User Guide Wholesale Lockbox User Guide August 2017 Copyright 2017 City National Bank City National Bank Member FDIC For Client Use Only Table of Contents Introduction... 3 Getting Started... 4 System Requirements...

More information

Welcome to the CP Portal

Welcome to the CP Portal Welcome to the CP Portal Access your school documents from home Launch Internet Explorer and navigate to: https://files.cpcsc.k12.in.us/htcomnet/ Click on Continue to this website (not recommended) Key

More information

[ Getting Started with Analyzer, Interactive Reports, and Dashboards ] ]

[ Getting Started with Analyzer, Interactive Reports, and Dashboards ] ] Version 5.3 [ Getting Started with Analyzer, Interactive Reports, and Dashboards ] ] https://help.pentaho.com/draft_content/version_5.3 1/30 Copyright Page This document supports Pentaho Business Analytics

More information

D2L Brightspace. The Content Tool. University Information Technology Services. Learning Technologies, Training, & Audiovisual Outreach

D2L Brightspace. The Content Tool. University Information Technology Services. Learning Technologies, Training, & Audiovisual Outreach D2L Brightspace The Content Tool University Information Technology Services Learning Technologies, Training, & Audiovisual Outreach Copyright 2016 KSU Division of University Information Technology Services

More information

WPS Workbench. user guide. "To help guide you through using the WPS user interface (Workbench) to create, edit and run programs"

WPS Workbench. user guide. To help guide you through using the WPS user interface (Workbench) to create, edit and run programs WPS Workbench user guide "To help guide you through using the WPS user interface (Workbench) to create, edit and run programs" Version: 3.1.7 Copyright 2002-2018 World Programming Limited www.worldprogramming.com

More information

seminar learning system Seminar Author and Learning System are products of Information Transfer LLP.

seminar learning system Seminar Author and Learning System are products of Information Transfer LLP. seminar learning system Seminar Author and Learning System are products of Information Transfer LLP. Burleigh House 15 Newmarket Road Cambridge UK CB5 8EG E-mail: support@seminar.co.uk Phone: +44 (0)1223

More information

DOCUMENT IMAGING REFERENCE GUIDE

DOCUMENT IMAGING REFERENCE GUIDE January 25, 2017 DOCUMENT IMAGING REFERENCE GUIDE AppXtender Web Access version 7 Kent State University Division of Information Services AppXtender Web Access Help: For questions regarding AppXtender Web

More information

Production Assistance for Cellular Therapies (PACT) PACT Application System User s Guide

Production Assistance for Cellular Therapies (PACT) PACT Application System User s Guide Production Assistance for Cellular Therapies (PACT) PACT Application System User s Guide Version 1.0 February 9, 2017 Version 1.0 TABLE OF CONTENTS 1.0 Getting Started... 1 1.1 Access to the Internet...

More information

CSE 332: Data Structures and Parallelism Winter 2019 Setting Up Your CSE 332 Environment

CSE 332: Data Structures and Parallelism Winter 2019 Setting Up Your CSE 332 Environment CSE 332: Data Structures and Parallelism Winter 2019 Setting Up Your CSE 332 Environment This document guides you through setting up Eclipse for CSE 332. The first section covers using gitlab to access

More information

Newforma Contact Directory Quick Reference Guide

Newforma Contact Directory Quick Reference Guide Newforma Contact Directory Quick Reference Guide This topic provides a reference for the Newforma Contact Directory. Purpose The Newforma Contact Directory gives users access to the central list of companies

More information

Quick Guide: Entering Grades Using Grade roster V3

Quick Guide: Entering Grades Using Grade roster V3 Quick Guide: Entering Grades Using Grade roster V3 Version 3 of this guide contains important changes in the grading process which are effective for summer 2013 and beyond. So, please check carefully on

More information

Getting Started with TurningPoint

Getting Started with TurningPoint Getting Started with TurningPoint The process to create interactive presentations with TurningPoint is very simple. You can successfully build, deliver, and save the results of an interactive presentation

More information

A³ Platform Quick Start

A³ Platform Quick Start A³ Platform Quick Start Last Update: Sep 07, 2011 Copyright 2002-2011 Visual Paradigm International Ltd. Table of Contents Table of Contents... 2 Getting Started... 3 Download A3 Platform... 3 Start-up

More information

Welcome To Account Manager 2.0

Welcome To Account Manager 2.0 Account Manager 2.0 Manage Unlimited FileMaker Servers, Databases, Privileges, and Users Effortlessly! The ultimate tool for FileMaker Database Administrators. Welcome To Account Manager 2.0 What Is Account

More information

Scribe 4 Manual 2. Scribe 4

Scribe 4 Manual 2. Scribe 4 Scribe 4 Manual 2 Scribe 4 Scribe 4 is an optimally flexible data analysis program that permits users to label events in live observations or in QuickTime movies, summarize event timings, and play back

More information

Roxen Content Provider

Roxen Content Provider Roxen Content Provider Generation 3 Templates Purpose This workbook is designed to provide a training and reference tool for placing University of Alaska information on the World Wide Web (WWW) using the

More information

Frequently Asked Technical Questions

Frequently Asked Technical Questions Frequently Asked Technical Questions The first step in resolving any technical problem is to make sure that you meet the technical requirements. A basic requirement for taking a PLS online course is to

More information

Blackboard for Faculty: Grade Center (631) In this document:

Blackboard for Faculty: Grade Center (631) In this document: 1 Blackboard for Faculty: Grade Center (631) 632-2777 Teaching, Learning + Technology Stony Brook University In this document: blackboard@stonybrook.edu http://it.stonybrook.edu 1. What is the Grade Center?..

More information

Submitting Assignments

Submitting Assignments Submitting Assignments Blackboard s assignments feature allows the instructor to assign coursework for you to submit electronically. First, you need to locate the assignment. Your instructor will place

More information

1 Build Your First App. The way to get started is to quit talking and begin doing. Walt Disney

1 Build Your First App. The way to get started is to quit talking and begin doing. Walt Disney 1 Build Your First App The way to get started is to quit talking and begin doing. Walt Disney Copyright 2015 AppCoda Limited All rights reserved. Please do not distribute or share without permission. No

More information

CSE 101 Introduction to Computers Development / Tutorial / Lab Environment Setup

CSE 101 Introduction to Computers Development / Tutorial / Lab Environment Setup CSE 101 Introduction to Computers Development / Tutorial / Lab Environment Setup Purpose: The purpose of this lab is to setup software that you will be using throughout the term for learning about Python

More information

Basic Software Maintenance. Ham Station Ultra Software Package

Basic Software Maintenance. Ham Station Ultra Software Package 1 Carl Skip Glover, Jr. K1SPG Custom Software & Hardware Solutions 4 Valley of Industry Boscawen, NH 03303 (603) 369-7015 Email: pctech.skip@gmail.com Email: k1spg@arrl.net Basic Software Maintenance Ham

More information

SharePoint 2010 Site Owner s Manual by Yvonne M. Harryman

SharePoint 2010 Site Owner s Manual by Yvonne M. Harryman SharePoint 2010 Site Owner s Manual by Yvonne M. Harryman Chapter 9 Copyright 2012 Manning Publications Brief contents PART 1 GETTING STARTED WITH SHAREPOINT 1 1 Leveraging the power of SharePoint 3 2

More information

USING THE CLOVIS ONCOLOGY IME/IIT PORTAL: FREQUENTLY ASKED QUESTIONS FAQ. Version 1.0

USING THE CLOVIS ONCOLOGY IME/IIT PORTAL: FREQUENTLY ASKED QUESTIONS FAQ. Version 1.0 USING THE CLOVIS ONCOLOGY IME/IIT PORTAL: FREQUENTLY ASKED QUESTIONS FAQ Version 1.0 1. FREQUENTLY ASKED QUESTIONS 1.1. TABLE OF CONTENTS 1. Frequently Asked Questions... 1 1.1. Table of Contents... 1

More information

Instructor User Guide for EnviroPortal Environmental Science: Foundations and Applications Friedland, Relyea, & Courard-Hauri

Instructor User Guide for EnviroPortal Environmental Science: Foundations and Applications Friedland, Relyea, & Courard-Hauri Instructor User Guide for EnviroPortal Environmental Science: Foundations and Applications Friedland, Relyea, & Courard-Hauri Getting Started with EnviroPortal for Friedland, Relyea, & Courard-Hauri Environmental

More information

Modern Requirements4TFS 2018 Update 1 Release Notes

Modern Requirements4TFS 2018 Update 1 Release Notes Modern Requirements4TFS 2018 Update 1 Release Notes Modern Requirements 6/22/2018 Table of Contents 1. INTRODUCTION... 3 2. SYSTEM REQUIREMENTS... 3 3. APPLICATION SETUP... 3 GENERAL... 4 1. FEATURES...

More information

Topic 2: Assignment Details > Using Functions Inside the Turnitin Paper Assignment Inbox

Topic 2: Assignment Details > Using Functions Inside the Turnitin Paper Assignment Inbox Topic 2: Assignment Details > Using Functions Inside the Turnitin Paper Assignment Inbox The Turnitin Inbox is the central location that contains student paper submissions for a Turnitin Paper Assignment.

More information

CourseWorks Quick Start

CourseWorks Quick Start Introduction CourseWorks Quick Start CourseWorks (aka Sakai ) is the university's new course management system, which allows instructors to develop and maintain course Web sites. With CourseWorks, instructors

More information

Customizing the Navigation Menu

Customizing the Navigation Menu Customizing the Navigation Menu New course shells in Blackboard all start out with the same navigation menu. You can customize this navigation menu to give your Blackboard course site a unique look and

More information