Can I have the menu please?

Size: px
Start display at page:

Download "Can I have the menu please?"

Transcription

1 Can I have the menu please? Renee Beekwilder - PW Consulting Introduction It is vital for users to work with a system that is easy to use and understand and that requires as little training as possible. The conventional method to offer a set of choices is to present them in the form of a menu. If the application involves a lot of functions or actions, the menus are often divided into groups, thus forming more menus and causing an entire menu tree for the u.ser to go through. Systems like these require a lot of interaction from the users and tend to confuse them. Building an application, we should consider all possible ways to present choices. Current technology in the SAS System provides us with a number of alternatives to simplify use and development of applications. However, we have to keep in mind the possibilities of our hardware and software, as well as the purpose of the product. Figure J: Classical application architecture. Making choices When it comes down to making choices, SAS Release 6 invites us to build applications with push buttons, radio buttons, checkboxes and pull down menus. However, the available or absent hardware, like monitor and mouse, may restrict the number of possibilities, tempering our enthusiasm. On the other hand, old habits and obsolete standards still determine display lay-out and application architecture. Being used to the old fashioned menus and familiar with the way to build them it would be easiest to continue in the same style, but we should consider all possibilities in order to build a user friendly system When we expand existing systems, it is logical to use standard methods. Nevertheless, technology is in progress and someday users won't be eager to use these old systems anymore, because they already use other, more up to date applications. In order to build an application that is easy to use, the developer has to make a choice between all the features supplied by the SAS system. 279

2 A large amount of facilities is available to build an application in which users can make choices and execute commands, without knowing how the system works. We can use pull down menus provided by the SAS system or we can build our own pull down menus with the PMENU procedure and assign them to the windows we use. We can also create selection lists, push buttons and block menus, checkboxes, radio buttons and use icons and graphs. Such display elements permit the user to "point and shoot". The user can put the mouse or cursor on the selection and press the enter key, instructed by the appearance of the options. The purposes of the system that you want to build as well as the possibilities to operate your PC, workstation or terminal,determine the choice of elements in your application. Mouse A mouse is recommendable, if not necessary, to use push buttons, checkboxes, radio buttons and pull down menus. It is also highly recommended while building FRAME entries with SAS/ AF. Graphics monitor A graphics display device is required, if you want to implement icons or show graphs. Checkboxes and radio buttons also have a graphical nature and appear as normal text input fields, or not at all, in a non-graphical Choice 1 x Choice 1 > Choice 1 o Choice2 Choice 2 Choice 2 o Choice 3 Choice 3 Choice 3 Figure 2: Radio buttons presented by SAS for Windows (left) and by non-graphics devices (middle and right). The appearance of push buttons in block menus, program entries and other windows is also device dependent. On a graphics device, push buttons look like real buttons and placing the cursor on a selection and press enter is as obvious as putting a plug into a power point. In text mode push buttons appear in block menus as boxes and in other windows as embraced and reversed video text. The icons assigned to push buttons would also disappear. The "built in" instructions about how to use above elements disappear, when not displayed on a graphics device I Exit I (Exit) I 1mB Figure 3: Push buttons with and without icons, box in text mode block menu, "buttons" in text mode dialog boxes and program windows 280

3 ". _. -, ~ -". Purpose It is obvious that the number, nature and diversity of the tasks as well as the target of the product define the structure and lay;.out of the application. An application meant for data entry has little need for graphical elements, whereas graphs will be very useful in an executive information system. The number and nature of the tasks will determine if you need menus, or should make selections available in another fashion. Menus The architecture of general applications containing separate tasks, are usually action-subject oriented. The user first chooses actions, finally selecting data. In cases like this menus should supply the available choices. The conventional way is to present a window with the descriptions of the selections available,for example building a MENU entry with SASI AF. However, MENU entries are basically designed to display other entries and allow only one selection at a time. If a particular selection refers to an action rather than to another window, a PROGRAM entry has to be created to submit code or to display a dataset. Using Base SAS Software and SAS/AF we can build pull down menus, block menus and other programmed menus. We can execute commands, submit code and display other windows directly. It is also possible to add graphical elements and enable to make more choices at a time. Pull down menu With pull down menus users can select data, invoke applications or execute other commands easily by selecting menu items or radio buttons and checkboxes in a dialog box. The SAS system provides a default PMENU for most windows, but specific features can be custom made using PROC PMENU. The PMENU replaces the command line and we can offer the users a selected set of commands and actions to prevent that anything goes wrong.. The users can select actions to handle the current window and its contents without entering commands or leaving the window to go back to a menu. Actions like print, browse, and select data in SAS/FSP sessions lend themselves admirably to be inserted in a action bar or pull down menu. 281

4 Select a province Groningen G elderland o Zeeland Friesland o fn'~'ij'r'ab'an't'i..., o Drente ON-Holland o limburg o Overijssel OS-Holland o Flevoland Figure 5: Dialog box from pull-down menu in figure 4. The availability of mouse control has to be taken into consideration, when you design a PMENU. Without a mouse, the user has to use the tab key or arrow keys to select the items and press enter. The amount of items and levels in a PMENU determine the ease to handle it. Block menu A block menu allows only one selection at a time like a MENU entry, but it has many advantages. The selections appear as push buttons, enabling "point and shoot". The number of buttons is restricted to twelve, but their arrangement and contents are determined by the developer, using the BLOCK function in the source of a SCL entry. The buttons can also be fitted with icons, explaining the button's description. Executing commands, submitting code and displaying other windows are controlled by the same SCL entry. 282

5 Figure 6: A simple block menu without icons. Note that the SAS System provides instructions at the bottom of the window. Figure 7: The same block menu as in figure 6, but now fitted with icons. 283

6 Combining actions Programming a menu with a PROGRAM orframe entry has several other advantages. Being able to make more choices at a time reduces the amount of menus and simplifies the structure of the system. It also enables cross validating selections. We can display a combination of push buttons, checkboxes, radio buttons and selection lists to present the available choices and assign specific help to them. If we have the proper equipment we can enhance the displays by using icons with push buttons or include graphs. All 0 Dutch Parl iament 0 European Parliament Party: All 0 Selection All 0 Selection Options: 0 Nocenter ~ Label ~ Title: Elections for parliament in 1989,.. r Figure 8: To create a specific report, users can make all selections at the same time. ~Fi EIS Example ~~ CDA Drill... 1~~~lmI Figure 9: FRAME entries allow us to show graphs and other data at the same time, and select data by drilldown techniques. 284

7 L,, Conclusion The wide range of features of the SAS System makes it possible to build compact and user friendly applications. In non-graphical environments the range is limited, but enough "text-mode" features remain to omit "old-fashioned" menu systems. Being aware of the possibilities of both hardware and software saves developer and user time and effort. Figure 10: Application structure compact and user friendly.. ~. ~.,, \.. Footnotes: [J SAS, SAS/AF and SASIFSP are registered trademarks ofsas Institute Inc., Cary" NC, USA. [J The EIS Example FRAME entry was originally designed by Wiel Maessen-PW Consulting. 285

Introduction. CHAPTER 3 Working in the SAS Windowing Environment

Introduction. CHAPTER 3 Working in the SAS Windowing Environment 57 CHAPTER 3 Working in the SAS Windowing Environment Introduction 57 Using Function Keys 58 Using the SAS ToolBox 60 Using the Command Window 60 Using the Toolbar 61 Using the Tool Icons 61 Opening Files

More information

\WSS95. Applications Development. Managing Longitudinal Panel Surveys Using Interactive Applications Created by SAS!Af and SASJFsp with SCL

\WSS95. Applications Development. Managing Longitudinal Panel Surveys Using Interactive Applications Created by SAS!Af and SASJFsp with SCL Managing Longitudinal Panel Surveys Using Interactive Applications Created by SAS!Af and SASJFsp with SCL Miriam Cistemas, Technology Assessment Group, San Francisco, California ABSTRACT Social science

More information

SAS/ASSIST Software Setup

SAS/ASSIST Software Setup 173 APPENDIX 3 SAS/ASSIST Software Setup Appendix Overview 173 Setting Up Graphics Devices 173 Setting Up Remote Connect Configurations 175 Adding a SAS/ASSIST Button to Your Toolbox 176 Setting Up HTML

More information

Overview. CHAPTER 2 Using the SAS System and SAS/ ASSIST Software

Overview. CHAPTER 2 Using the SAS System and SAS/ ASSIST Software 11 CHAPTER 2 Using the SAS System and SAS/ ASSIST Software Overview 11 Invoking the SAS System 12 Selecting Items 12 Entering Commands 13 Using Menus 13 Using Function Keys 15 Invoking SAS/ASSIST Software

More information

Creating accessible forms

Creating accessible forms Creating accessible forms Introduction Creating an accessible form can seem tricky. Some of the questions people commonly ask include: Can I use protected forms? How do I lay out my prompts and questions?

More information

Information Visualization

Information Visualization Paper 166-25 Presenting Your Data Easily with Graph-N-Go Curtis A. Smith, Defense Contract Audit Agency, La Mirada, CA ABSTRACT Visualizing and presenting data effectively using reports and listings can

More information

SAS/Warehouse Administrator Usage and Enhancements Terry Lewis, SAS Institute Inc., Cary, NC

SAS/Warehouse Administrator Usage and Enhancements Terry Lewis, SAS Institute Inc., Cary, NC SAS/Warehouse Administrator Usage and Enhancements Terry Lewis, SAS Institute Inc., Cary, NC ABSTRACT SAS/Warehouse Administrator software makes it easier to build, maintain, and access data warehouses

More information

An Introduction to SAS/FSP Software Terry Fain, RAND, Santa Monica, California Cyndie Gareleck, RAND, Santa Monica, California

An Introduction to SAS/FSP Software Terry Fain, RAND, Santa Monica, California Cyndie Gareleck, RAND, Santa Monica, California An Introduction to SAS/FSP Software Terry Fain, RAND, Santa Monica, California Cyndie Gareleck, RAND, Santa Monica, California ABSTRACT SAS/FSP is a set of procedures used to perform full-screen interactive

More information

SAS/AF FRAME Entries: A Hands-on Introduction

SAS/AF FRAME Entries: A Hands-on Introduction SAS/AF FRAME Entries: A Hands-on Introduction Vincent L. Timbers The Pennsylvania State University, University Park, Pa. ABSTRACT Frame entries in SAS/AF use graphic display devices that enable application

More information

Using SAS/SHARE More Efficiently

Using SAS/SHARE More Efficiently Using More Efficiently by Philip R Holland, Holland Numerics Ltd, UK Abstract is a very powerful product which allow concurrent access to SAS Datasets for reading and updating. However, if not used with

More information

Feature PROGRAM Entries FRAME Entries. quickly prototype an'application using the interactive development environment

Feature PROGRAM Entries FRAME Entries. quickly prototype an'application using the interactive development environment Object-Oriented Graphical User Interface (OOGUI) Using FRAME Entries in SAS/AP Software Part I Jeff Cartier, SAS Institute Inc., Cary, NC Bill Powers, SAS Institute Inc., Cary, NC ABSTRACT The FRAME entry

More information

Beginning Tutorials. PROC FSEDIT NEW=newfilename LIKE=oldfilename; Fig. 4 - Specifying a WHERE Clause in FSEDIT. Data Editing

Beginning Tutorials. PROC FSEDIT NEW=newfilename LIKE=oldfilename; Fig. 4 - Specifying a WHERE Clause in FSEDIT. Data Editing Mouse Clicking Your Way Viewing and Manipulating Data with Version 8 of the SAS System Terry Fain, RAND, Santa Monica, California Cyndie Gareleck, RAND, Santa Monica, California ABSTRACT Version 8 of the

More information

CUSTOMIZING MyFAU Prepared by: Information Resource Management Last revised: January 12, 2004

CUSTOMIZING MyFAU Prepared by: Information Resource Management Last revised: January 12, 2004 CUSTOMIZING MyFAU Prepared by: Information Resource Management Last revised: January 12, 2004 In this course you will learn about Customizing MyFAU Customizing Tabs 4 Move a Tab 4 Add a Tab 5 Delete a

More information

Getting Started with SAS/ASSIST 9.1. SAS Documentation

Getting Started with SAS/ASSIST 9.1. SAS Documentation Getting Started with SAS/ASSIST 9.1 SAS Documentation The correct bibliographic citation for this manual is as follows: SAS Institute Inc. 2004. Getting Started with SAS/ASSIST 9.1. Cary, NC: SAS Institute

More information

CATALOGER : An Application Development Tool to View,Compare, and Document SAS Catalogs and Data Files

CATALOGER : An Application Development Tool to View,Compare, and Document SAS Catalogs and Data Files CATALOGER : An Application Development Tool to View,Compare, and Document SAS Catalogs and Data Files Christopher A. Roper, Qualex Consulting Services, Inc., Fairfax, Va. Michael Gilman, Qualex Consulting

More information

APPENDIX 2 Customizing SAS/ASSIST Software

APPENDIX 2 Customizing SAS/ASSIST Software 241 APPENDIX 2 Customizing SAS/ASSIST Software Introduction 241 Setting User Profile Options 241 Creating an Alternate Menu Bar 243 Introduction This appendix describes how you can customize your SAS/ASSIST

More information

A Guided Tour Through the SAS Windowing Environment Casey Cantrell, Clarion Consulting, Los Angeles, CA

A Guided Tour Through the SAS Windowing Environment Casey Cantrell, Clarion Consulting, Los Angeles, CA A Guided Tour Through the SAS Windowing Environment Casey Cantrell, Clarion Consulting, Los Angeles, CA ABSTRACT The SAS system running in the Microsoft Windows environment contains a multitude of tools

More information

With Google documents, you can easily create, share, and edit documents online.

With Google documents, you can easily create, share, and edit documents online. GOOGLE DOCS With Google documents, you can easily create, share, and edit documents online. Here are a few specific things you can do: Upload Microsoft Word, OpenOffice, RTF, HTML or plain text documents,

More information

Web-enable a 5250 application with the IBM WebFacing Tool

Web-enable a 5250 application with the IBM WebFacing Tool Web-enable a 5250 application with the IBM WebFacing Tool ii Web-enable a 5250 application with the IBM WebFacing Tool Contents Web-enable a 5250 application using the IBM WebFacing Tool......... 1 Introduction..............1

More information

CATALOGER: An Application Development Tool to View, Compare, and Document SAS Catalogs and Data Files

CATALOGER: An Application Development Tool to View, Compare, and Document SAS Catalogs and Data Files CATALOGER: An Application Development Tool to View, Compare, and Document SAS Catalogs and Data Files Christopher A. Roper, Qualex Consulting Services, Inc., Fairfax, Va. Gina M. Thomas, Qualex Consulting

More information

Getting Started With Frame Technology Christopher A. Roper, Qualex Consulting Services, Inc., Hillsville, Va.

Getting Started With Frame Technology Christopher A. Roper, Qualex Consulting Services, Inc., Hillsville, Va. Getting Started With Frame Technology Christopher A. Roper, Qualex Consulting Services, Inc., Hillsville, Va. Introduction Creating SAS/Frame applications allows users to build SAS applications using an

More information

Findmyshift - Getting started with Findmyshift

Findmyshift - Getting started with Findmyshift Findmyshift - Getting started with Findmyshift Managers Creating your first roster Adding staff to your team Inviting your staff to log in Choosing your settings Entering shifts Publishing shifts Handling

More information

Introduction. Introduction to SCL. SCL Elements CHAPTER 1

Introduction. Introduction to SCL. SCL Elements CHAPTER 1 3 CHAPTER 1 Introduction Introduction to SCL 3 SCL Elements 3 Entering SCL Code 4 Compiling SCL Programs 4 Compiling Your SCL Program Interactively 4 Compiling Your SCL Program in Batch 5 The SCL Data

More information

HOW TO DEVELOP A SAS/AF APPLICATION

HOW TO DEVELOP A SAS/AF APPLICATION PS001 Creating Effective Graphical User Interfaces Using Version 8 SAS/AF Anders Longthorne, National Highway Traffic Safety Administration, Washington, DC ABSTRACT Improving access to an organization

More information

, endsubmit; RETURN;

, endsubmit; RETURN; MULTIPLE APPLICATIONS IN SAS SOFTWARE Ionathan M. Siegel, Trilogy Consulting Corporation, Kalamazoo, MI ABSTRACT SAS Software allows users to open multiple application windows at the same time, giving

More information

Relius Documents ASP Doc Editor

Relius Documents ASP Doc Editor Relius Documents ASP Doc Editor Overview The Doc Editor is included with your license for Relius Documents ASP. This feature allows you to customize document outputs via a specialized version of Microsoft

More information

Word 2007/10/13 1 Introduction

Word 2007/10/13 1 Introduction Objectives Word 2007/10/13 1 Introduction Understand the new Word 2007 Interface Navigate the Office button Learn about the Quick Access menu Navigate the Ribbon menu interface Understand the I-beam Learn

More information

Use SAS/AF, SCL and MACRO to Build User-friendly Applications on UNIX

Use SAS/AF, SCL and MACRO to Build User-friendly Applications on UNIX Use SAS/AF, SCL and MACRO to Build User-friendly Applications on UNIX Minghui Yang, Ph.D, Boeing Logistics Market Research O. Introduction In the business application environment, many business analysts

More information

Using Data Transfer Services

Using Data Transfer Services 103 CHAPTER 16 Using Data Transfer Services Introduction 103 Benefits of Data Transfer Services 103 Considerations for Using Data Transfer Services 104 Introduction For many applications, data transfer

More information

Chapter 2 Entering Data. Chapter Table of Contents

Chapter 2 Entering Data. Chapter Table of Contents Chapter 2 Entering Data Chapter Table of Contents INVOKING SAS/INSIGHT SOFTWARE... 28 ENTERING VALUES... 31 NAVIGATING THE DATA WINDOW... 33 ADDING VARIABLES AND OBSERVATIONS... 34 DEFINING VARIABLES...

More information

AN INTRODUCTION TO DEVELOPING APPLICATIONS WITH SAS/AF FRAME ENTRIES. Advanced Tutorials. NESUG '96 Proceedings

AN INTRODUCTION TO DEVELOPING APPLICATIONS WITH SAS/AF FRAME ENTRIES. Advanced Tutorials. NESUG '96 Proceedings AN INTRODUCTION TO DEVELOPING APPLICATIONS WITH SAS/AF FRAME ENTRIES Vincent L. Timbers The Pennsylvania State University, University Park, PA Advanced Tutorials ABSTRACT Frame entries in SAS/ AF use graphic

More information

PILOTS Internet User Manual

PILOTS Internet User Manual PILOTS Internet User Manual (Pennsylvania Independent Living Outcome Tracking System) Revision 1.0b March 12, 2003 Independent Living Project 2 Market Plaza Way, Suite 102, Mechanicburg, PA 17055 Phone

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

Using Graph-N-Go With ODS to Easily Present Your Data and Web-Enable Your Graphs Curtis A. Smith, Defense Contract Audit Agency, La Mirada, CA

Using Graph-N-Go With ODS to Easily Present Your Data and Web-Enable Your Graphs Curtis A. Smith, Defense Contract Audit Agency, La Mirada, CA Paper 160-26 Using Graph-N-Go With ODS to Easily Present Your Data and Web-Enable Your Graphs Curtis A. Smith, Defense Contract Audit Agency, La Mirada, CA ABSTRACT Visualizing and presenting data effectively

More information

version 7.6 user manual

version 7.6 user manual version 7.6 user manual 2 Copyright JAVS 1981-2014 Table of Contents Introduction... 4 Getting Started... 5 Login... 5 JAVS Publisher 7 Overview... 6 Search Tool Overview... 7 Search Tool-Detailed Operation...

More information

Jennifer Clegg and Carol Rigsbee, SAS Institute Inc., Cary, NC

Jennifer Clegg and Carol Rigsbee, SAS Institute Inc., Cary, NC OLE and the SAS System for Windows Release 6.12 Jennifer Clegg and Carol Rigsbee, SAS Institute Inc., Cary, NC ABSTRACT This paper describes the OLE support within the SAS System for Windows Release 6.12.

More information

Increased Productivity Through The Use Of The Display Manager System Jim Anderson, Blue Cross Blue Shield of Nebraska

Increased Productivity Through The Use Of The Display Manager System Jim Anderson, Blue Cross Blue Shield of Nebraska Increased Productivity Through The Use Of The SAS@ Display Manager System Jim Anderson, Blue Cross Blue Shield of Nebraska Abstract The SAS Display Manager System provides an interactive, full screen option

More information

Relius Documents ASP Doc Editor , select option 2

Relius Documents ASP Doc Editor , select option 2 Relius Documents ASP Doc Editor 1 800 326 7235, select option 2 Table of Contents Overview...3 User Permissions...5 Creating Doc Edits...6 Doc Edit Library... 13 Doc Edit Library Page... 15 Doc Edit Maintenance

More information

CREATING ACCESSIBLE DOCUMENTS IN MICROSOFT WORD (MACINTOSH)

CREATING ACCESSIBLE DOCUMENTS IN MICROSOFT WORD (MACINTOSH) CREATING ACCESSIBLE DOCUMENTS IN MICROSOFT WORD (MACINTOSH) GUIDELINES FOR CREATING ACCESSIBLE DOCUMENTS USING MICROSOFT WORD 2004 AND 2008 FOR THE APPLE MACTINOSH These guidelines have been extracted

More information

Writing SAS/AF Applications that run in both an Interactive and Batch Environment

Writing SAS/AF Applications that run in both an Interactive and Batch Environment Writing SAS/AF Applications that run in both an nteractive and Batch Environment lim Nelson, MOS-H, Motorola, Austin,TX Matthew Grover, JJT Consulting, Austin,TX ABSTRACT Many SAS/AF applications have

More information

Software Instruction Manual

Software Instruction Manual 2 About This Manual This manual will provide a comprehensive look at the JAVS software application. The first part of the manual will provide a general overview followed by a more detailed approach in

More information

Microsoft Excel 2007

Microsoft Excel 2007 Microsoft Excel 2007 Objective To provide a review of the new features in the Microsoft Excel 2007 screen. Overview Introduction Office Button Quick Access Toolbar Tabs Scroll Bar Status Bar Clipboard

More information

JobSite OnLine User s Guide Table of Contents

JobSite OnLine User s Guide Table of Contents JobSite OnLine User s Guide Table of Contents For the Beginner: 2 Preparing and Logging In to Run JobSite OnLine...2 How Drawings and Specs are Organized - Ease of Use...3 Searching for Files or Containers...4

More information

Handout Objectives: a. b. c. d. 3. a. b. c. d. e a. b. 6. a. b. c. d. Overview:

Handout Objectives: a. b. c. d. 3. a. b. c. d. e a. b. 6. a. b. c. d. Overview: Computer Basics I Handout Objectives: 1. Control program windows and menus. 2. Graphical user interface (GUI) a. Desktop b. Manage Windows c. Recycle Bin d. Creating a New Folder 3. Control Panel. a. Appearance

More information

Software Instruction Manual

Software Instruction Manual 2 About This Manual This manual will provide a comprehensive look at the JAVS AutoLog 7 software application. The first part of the manual will provide a general overview followed by a more detailed approach

More information

Getting Familiar with Microsoft Word 2010 for Windows

Getting Familiar with Microsoft Word 2010 for Windows Lesson 1: Getting Familiar with Microsoft Word 2010 for Windows Microsoft Word is a word processing software package. You can use it to type letters, reports, and other documents. This tutorial teaches

More information

PEOPLESOFT NAVIGATION. Introduction What is PeopleSoft? PeopleSoft General Information & Navigation

PEOPLESOFT NAVIGATION. Introduction What is PeopleSoft? PeopleSoft General Information & Navigation PEOPLESOFT NAVIGATION PeopleSoft General Information & Navigation Introduction What is PeopleSoft? Designed as an integrated system Designed as a client/server application. Server (central computer) stores

More information

Dynamic Tags. User Guide. Copyright 2007 Data Springs Inc. All rights reserved.

Dynamic Tags. User Guide. Copyright 2007 Data Springs Inc. All rights reserved. Dynamic Tags User Guide Copyright 2007 Data Springs Inc. All rights reserved. Table of contents: 1 INTRODUCTION... 3 2 INSTALLATION PROCEDURE... 4 3 ADDING DYNAMIC TAGS MODULE TO A PAGE... 7 4 DYNAMIC

More information

Prevent Pane - Moving from MENU & PROGRAM Entries to FRAME Entries Loretta Golby, ISM Alberta Serge Dupuis, BKD Software Consultants Edmonton, Alberta

Prevent Pane - Moving from MENU & PROGRAM Entries to FRAME Entries Loretta Golby, ISM Alberta Serge Dupuis, BKD Software Consultants Edmonton, Alberta Prevent Pane - Moving from MENU & PROGRAM Entries to FRAME Entries Loretta Golby, ISM Alberta Serge Dupuis, BKD Software Consultants ABSTRACT New releases of SAS software provide greater flexibility for

More information

ishipdocs User Guide

ishipdocs User Guide ishipdocs User Guide 11/8/2016 Disclaimer This guide has been validated and reviewed for accuracy. The instructions and descriptions it contains are accurate for ishipdocs. However, succeeding versions

More information

Survey Creation Workflow These are the high level steps that are followed to successfully create and deploy a new survey:

Survey Creation Workflow These are the high level steps that are followed to successfully create and deploy a new survey: Overview of Survey Administration The first thing you see when you open up your browser to the Ultimate Survey Software is the Login Page. You will find that you see three icons at the top of the page,

More information

Work with the TeacherLists School Supply Lists App

Work with the TeacherLists School Supply Lists App Work with the TeacherLists School Supply Lists App Blackboard Web Community Manager Trademark Notice Blackboard, the Blackboard logos, and the unique trade dress of Blackboard are the trademarks, service

More information

Workstation Configuration

Workstation Configuration Workstation Configuration September 22, 2015 - Version 9 & 9.1 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

More information

Enabling Collaborate Ultra in a Blackboard Course

Enabling Collaborate Ultra in a Blackboard Course Enabling Collaborate Ultra in a Blackboard Course Collaborate Ultra is an alternative Webconference which can be used in place of (or in addition to) the original Collaborate Classic. UA has no plans to

More information

CheckBook Pro 2 Help

CheckBook Pro 2 Help Get started with CheckBook Pro 9 Introduction 9 Create your Accounts document 10 Name your first Account 11 Your Starting Balance 12 Currency 13 We're not done yet! 14 AutoCompletion 15 Descriptions 16

More information

If your webpage looks like the screen below please go to your browsers tools section and clear out all history.

If your webpage looks like the screen below please go to your browsers tools section and clear out all history. Quick Notes: Please use internet explorer 9 or higher to have an optimal experience New URL to access the Nav Web Digital experience is http://navweb.mom365.com/login.aspx o You will be redirected to the

More information

ValuePRO Tutorial Internet Explorer 8 Configuration

ValuePRO Tutorial Internet Explorer 8 Configuration ValuePRO Tutorial Internet Explorer 8 Configuration Table of Contents Contents 1. Adding ValuePRO to Trusted Sites... 1 1. Overview... 1 2. Changes Required... 1 2. Enabling Cross Site Scripting... 3 1.

More information

Week 5 Creating a Calendar. About Tables. Making a Calendar From a Table Template. Week 5 Word 2010

Week 5 Creating a Calendar. About Tables. Making a Calendar From a Table Template. Week 5 Word 2010 Week 5 Creating a Calendar About Tables Tables are a good way to organize information. They can consist of only a few cells, or many cells that cover several pages. You can arrange boxes or cells vertically

More information

DocuPrint C55/C55mp Quick Network Install Guide

DocuPrint C55/C55mp Quick Network Install Guide DocuPrint C55/C55mp Quick Network Install Guide Windows for Workgroups / Windows 95 Peer-to-Peer Network Windows NT 3.5X Network Windows NT 4.X Network Macintosh EtherTalk/TokenTalk Network Novell NetWare

More information

My Courses: Displays courses the user has self-enrolled in as well as courses that have been assigned to the user when available.

My Courses: Displays courses the user has self-enrolled in as well as courses that have been assigned to the user when available. LOGGING IN To log in go to https://gbateam.redvector.com and enter your Login /Username and Password. If you have forgotten your password, click on the Forgot your password link. 1. Enter the primary email

More information

SciGraphica. Tutorial Manual - Tutorials 1and 2 Version 0.8.0

SciGraphica. Tutorial Manual - Tutorials 1and 2 Version 0.8.0 SciGraphica Tutorial Manual - Tutorials 1and 2 Version 0.8.0 Copyright (c) 2001 the SciGraphica documentation group Permission is granted to copy, distribute and/or modify this document under the terms

More information

Workstation Configuration

Workstation Configuration Workstation Configuration December 15, 2017 - Version 9.3 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

More information

Oracle General Navigation Overview

Oracle General Navigation Overview Oracle 11.5.9 General Navigation Overview 1 Logging On to Oracle Applications You may access Oracle, by logging onto the ATC Applications Login System Status page located at www.atc.caltech.edu/support/index.php

More information

Printing Envelopes in Microsoft Word

Printing Envelopes in Microsoft Word Printing Envelopes in Microsoft Word P 730 / 1 Stop Addressing Envelopes by Hand Let Word Print Them for You! One of the most common uses of Microsoft Word is for writing letters. With very little effort

More information

chapter 3 the interaction

chapter 3 the interaction chapter 3 the interaction ergonomics physical aspects of interfaces industrial interfaces Ergonomics Study of the physical characteristics of interaction Also known as human factors but this can also be

More information

Workstation Configuration

Workstation Configuration Workstation Configuration Version 8.2 May 2, 2014 For the most recent version of this document, visit our documentation website. Table of Contents 1 Workstation configuration 3 1.1 Custom level Internet

More information

SHARING SAS DATA INA PC LAN ENVIRONMENT. Tony Payne, SPS Ltd. ABSTRACT

SHARING SAS DATA INA PC LAN ENVIRONMENT. Tony Payne, SPS Ltd. ABSTRACT I I SHARING SAS DATA INA PC LAN ENVIRONMENT Tony Payne, SPS Ltd. ABSTRACT F ' The SASe System, version 6.03 and beyond, provides powerful control of data editing sessions using the FSEDIT procedure with

More information

For example, let's say that we have the following functional specification:

For example, let's say that we have the following functional specification: FRAME IT: THE NUTS AND BOLTS OF RAD Marty Brown, CommScope, Inc., Claremont, NC INTRODUCTION The road to finishing a quality application does not have to be a long and confusing one. With the advent of

More information

Administrator for Enterprise Clients: User s Guide. Second Edition

Administrator for Enterprise Clients: User s Guide. Second Edition Administrator for Enterprise Clients: User s Guide Second Edition The correct bibliographic citation for this manual is as follows: SAS Institute Inc. 2002. Administrator for Enterprise Clients: User s

More information

isupport for Microsoft Windows Server TM Bomgar TM Integration

isupport for Microsoft Windows Server TM Bomgar TM Integration Integration with Bomgar Software for Remote Desktop Access and Chat isupport integrates with Bomgar Software for remote desktop connection and chatting. The minimum Bomgar API version required is 1.4.2.

More information

SOFTWARE AND HARDWARE REQUIREMENTS In order to use Design-time Controls, you must meet the following software and hardware requirements.

SOFTWARE AND HARDWARE REQUIREMENTS In order to use Design-time Controls, you must meet the following software and hardware requirements. Point and Click Web Pages with Design-Time Controls and SAS/IntrNet Vincent DelGobbo, SAS Institute Inc., Cary, NC John Leveille, ibiomatics LLC, Cary, NC ABSTRACT SAS Design-Time Controls (DTCs) are a

More information

Area Access Manager User Guide

Area Access Manager User Guide Area Access Manager User Guide Area Access Manager User Guide Table of Contents Chapter 1: Introduction...9 Conventions Used in this Documentation... 9 Getting Started... 10 Licensing Requirements...

More information

Batch vs. Interactive: Why You Need Both Janet E. Stuelpner. ASG. Inc Cary. North Carolina

Batch vs. Interactive: Why You Need Both Janet E. Stuelpner. ASG. Inc Cary. North Carolina Batch vs. Interactive: Why You Need Both Janet E. Stuelpner. ASG. Inc Cary. North Carolina ABSTRACT error was small fa semi-colon was omitted or a closing quotation mark was missing), but caused the program

More information

Sun VirtualBox Installation Tutorial

Sun VirtualBox Installation Tutorial Sun VirtualBox Installation Tutorial Installing Linux Mint 5 LTS Guest OS By Dennis Berry Welcome to the world of virtualization and Linux. This tutorial is intended to help users who are new to the world

More information

Working with Mailbox Manager

Working with Mailbox Manager Working with Mailbox Manager A user guide for Mailbox Manager supporting the Message Storage Server component of the Avaya S3400 Message Server Mailbox Manager Version 5.0 February 2003 Copyright 2003

More information

How To Use WebStudy Course Export/Import

How To Use WebStudy Course Export/Import How To Use WebStudy Course Export/Import Click the About tab to access the Course export and Course import buttons. Exported.zip file includes Timeline (sessions, descriptions and associated items), Materials,

More information

Human-Computer Interaction. Chapter 2. What is HCI?

Human-Computer Interaction. Chapter 2. What is HCI? Human-Computer Interaction Chapter 2 What is HCI? Overview 2.1 The Human 2.2 The Computer 2.3 The Interaction Models of Interaction Interaction Styles Elements of the WIMP Interface HCI 2.3.1 Models of

More information

Reporting. Version Copyright IBRC, Inc.

Reporting. Version Copyright IBRC, Inc. Reporting 1 Version 1.3.8 Copyright IBRC, Inc. Table of Contents 1. Introduction to Reporting................... 3 2. The Standard Library...................... 11 3. Ad Hoc Reporting........................

More information

OmniPass 2.0 User's Guide. Version 1.2

OmniPass 2.0 User's Guide. Version 1.2 OmniPass 2.0 User's Guide Version 1.2 i Copyright Copyright 2002 Softex Incorporated. No part of this publication may be reproduced, transmitted, transcribed, stored in a retrieval system, or translated

More information

Part I. Integrated Development Environment. Chapter 2: The Solution Explorer, Toolbox, and Properties. Chapter 3: Options and Customizations

Part I. Integrated Development Environment. Chapter 2: The Solution Explorer, Toolbox, and Properties. Chapter 3: Options and Customizations Part I Integrated Development Environment Chapter 1: A Quick Tour Chapter 2: The Solution Explorer, Toolbox, and Properties Chapter 3: Options and Customizations Chapter 4: Workspace Control Chapter 5:

More information

Specification Manager

Specification Manager Enterprise Architect User Guide Series Specification Manager How to define model elements simply? In Sparx Systems Enterprise Architect, use the document-based Specification Manager to create elements

More information

SAS/FSP 9.2. Procedures Guide

SAS/FSP 9.2. Procedures Guide SAS/FSP 9.2 Procedures Guide The correct bibliographic citation for this manual is as follows: SAS Institute Inc. 2008. SAS/FSP 9.2 Procedures Guide. Cary, NC: SAS Institute Inc. SAS/FSP 9.2 Procedures

More information

SAP ABAP ONLINE TRAINING COURSE

SAP ABAP ONLINE TRAINING COURSE SAP ABAP ONLINE TRAINING COURSE CONTENT What is SAP ABAP? ABAP is one of the many application-specific fourth-generation languages (4GLs) first developed in the 1980s. It was originally the report language

More information

CHAPTER 1 COPYRIGHTED MATERIAL. Getting to Know AutoCAD. Opening a new drawing. Getting familiar with the AutoCAD and AutoCAD LT Graphics windows

CHAPTER 1 COPYRIGHTED MATERIAL. Getting to Know AutoCAD. Opening a new drawing. Getting familiar with the AutoCAD and AutoCAD LT Graphics windows CHAPTER 1 Getting to Know AutoCAD Opening a new drawing Getting familiar with the AutoCAD and AutoCAD LT Graphics windows Modifying the display Displaying and arranging toolbars COPYRIGHTED MATERIAL 2

More information

A Quick Tour GETTING STARTED WHAT S IN THIS CHAPTER?

A Quick Tour GETTING STARTED WHAT S IN THIS CHAPTER? 1 A Quick Tour WHAT S IN THIS CHAPTER? Installing and getting started with Visual Studio 2012 Creating and running your fi rst application Debugging and deploying an application Ever since software has

More information

.=a"" Push ButlDn Control Object Slider SaoHb., Graphie Text SAS/GRAPH Olltput Critical Success Factor

.=a Push ButlDn Control Object Slider SaoHb., Graphie Text SAS/GRAPH Olltput Critical Success Factor SAS/AF Frames under Windows: Images, Sound and Action Serge Dupuis BKD Software Consultants Edmonton, Alberta ABSTRACT The SAS(R) System for the Microsoft Windows(R) environment has the capability of embedding

More information

Information Visualization

Information Visualization Paper 158-25 Graphs In a Minute Harry J. Maxwell Jr., SAS Institute Inc, Cary, NC ABSTRACT Software from SAS Institute provides multiple ways of producing attractive graphics quickly using simple and intuitive

More information

TABLE OF CONTENTS TABLE OF CONTENTS... 1 INTRODUCTION... 3 BREAK... 4 DEFINITIONS... 4 STEP BY STEP- SECTION BREAK... 6 PAGE NUMBERS...

TABLE OF CONTENTS TABLE OF CONTENTS... 1 INTRODUCTION... 3 BREAK... 4 DEFINITIONS... 4 STEP BY STEP- SECTION BREAK... 6 PAGE NUMBERS... TABLE OF CONTENTS TABLE OF CONTENTS... 1 INTRODUCTION... 3 BREAK... 4 DEFINITIONS... 4 WHY WOULD YOU USE THIS?... 4 STEP BY STEP- PAGE BREAK... 4 ALTERNATIVE METHODS... 5 STEP BY STEP- SECTION BREAK...

More information

Web Sites Web Site Content

Web Sites Web Site Content Web Sites Web Site Content Last Updated: November 14, 2007 INTRODUCTION...3 Web Site Content...4 Tabs and Pages...4 Adding a Tab or Page...4 Editing a Tab or Page...8 Deleting a Tab or Page...9 Renaming

More information

Beginning Tutorials. Introduction to SAS/FSP in Version 8 Terry Fain, RAND, Santa Monica, California Cyndie Gareleck, RAND, Santa Monica, California

Beginning Tutorials. Introduction to SAS/FSP in Version 8 Terry Fain, RAND, Santa Monica, California Cyndie Gareleck, RAND, Santa Monica, California Introduction to SAS/FSP in Version 8 Terry Fain, RAND, Santa Monica, California Cyndie Gareleck, RAND, Santa Monica, California ABSTRACT SAS/FSP is a set of procedures used to perform full-screen interactive

More information

FSEDIT Procedure Windows

FSEDIT Procedure Windows 25 CHAPTER 4 FSEDIT Procedure Windows Overview 26 Viewing and Editing Observations 26 How the Control Level Affects Editing 27 Scrolling 28 Adding Observations 28 Entering and Editing Variable Values 28

More information

Building a Corporate Warehouse Management and Deployment System

Building a Corporate Warehouse Management and Deployment System Building a Corporate Warehouse Management and Deployment System Chris Lane, Lane Systems Group Ltd., Whitehorse, Yukon (CANADA) ABSTRACT Managing data warehouses in a complex environment has its challenges.

More information

Graphics. Chapter Overview CHAPTER 4

Graphics. Chapter Overview CHAPTER 4 47 CHAPTER 4 Graphics Chapter Overview 47 Additional Information 48 Producing a Bar Chart 48 Instructions 48 Adding Titles 50 Running the Graph 50 Printing the Graph 51 Exiting This Task 51 Producing a

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

SHARP TWAIN AR/DM. User s Guide

SHARP TWAIN AR/DM. User s Guide SHARP TWAIN AR/DM User s Guide Copyright 2001 by Sharp Corporation. All rights reserved. Reproduction, adaptation or translation without prior written permission is prohibited, except as allowed under

More information

Printerface Users Guide for UniPrint customers (revision 1) Logging into Printerface

Printerface Users Guide for UniPrint customers (revision 1) Logging into Printerface Printerface Users Guide for UniPrint customers (revision 1) Logging into Printerface To get the most out of Printerface, it is essential to have a user account. Go to uniprint.uwa.edu.au and select the

More information

Creating Workflows. Viewing the Task Library. Creating a Workflow. This chapter contains the following sections:

Creating Workflows. Viewing the Task Library. Creating a Workflow. This chapter contains the following sections: This chapter contains the following sections: Viewing the Task Library, page 1 Creating a Workflow, page 1 Example: Creating a Workflow, page 13 Resolving Workflow Validation Issues, page 16 Changing Flow

More information

University of Bahrain College of Applied Studies

University of Bahrain College of Applied Studies University of Bahrain College of Applied Studies CSA 212: Human Interface and Design Activity 5: Front page 2003 Name : Student ID No : Section Instructor : : Demonstrator : Date : Total Marks : 10 Marks

More information

Figure 1 Forms category in the Insert panel. You set up a form by inserting it and configuring options through the Properties panel.

Figure 1 Forms category in the Insert panel. You set up a form by inserting it and configuring options through the Properties panel. Adobe Dreamweaver CS6 Project 3 guide How to create forms You can use forms to interact with or gather information from site visitors. With forms, visitors can provide feedback, sign a guest book, take

More information

Remote Support. User Guide 7.23

Remote Support. User Guide 7.23 Remote Support User Guide 7.23 Copyright 1997 2011 Cisco and/or its affiliates. All rights reserved. WEBEX, CISCO, Cisco WebEx, the CISCO logo, and the Cisco WebEx logo are trademarks or registered trademarks

More information