Size: px
Start display at page:

Download ""

Transcription

1 Andrid prgramming curse UI Overview User Interface By Võ Văn Hải Faculty f Infrmatin Technlgies All user interface elements in an Andrid app are built using View and ViewGrup bjects. A View is an bject that draws smething n the screen that the user can interact with. A ViewGrup is an bject that hlds ther View (and ViewGrup) bjects in rder t define the layut f the interface. Andrid prvides a cllectin f bth View and ViewGrup subclasses that ffer yu cmmn input cntrls (such as buttns and text fields) and varius layut mdels (such as a linear r relative layut). 3 Sessin bjectives Overview Layut Input Cntrls Other Views Menus Intent Lcalizing with Resurces Fragments UI Overview User Interface Layut The user interface fr each cmpnent f yur app is defined using a hierarchy f View and ViewGrup bjects. Each view grup is an invisible cntainer that rganizes child views, while the child views may be input cntrls r ther widgets that draw sme part f the UI

2 UI Overview User Interface Cmpnents Yu dn't have t build all f yur UI using View and ViewGrup bjects. Andrid prvides several app cmpnents that ffer a standard UI layut fr which yu simply need t define the cntent. These UI cmpnents each have a unique set f APIs that are described in their respective dcuments, such as App Bar, Dialgs, and Status Ntificatins. UI Overview String resurces A string resurce prvides text strings fr yur applicatin with ptinal text styling and frmatting. There are three types f resurces that can prvide yur applicatin with strings: String: XML resurce that prvides a single string. String Array: XML resurce that prvides an array f strings. Quantity Strings (Plurals): XML resurce that carries different strings fr pluralizatin UI Overview ID Any View bject may have an integer ID assciated with it, t uniquely identify the View within the tree. When the applicatin is cmpiled, this ID is referenced as an integer, but the ID is typically assigned in the layut XML file as a string, in the id attribute. The syntax fr an ID, inside an XML tag is: When referencing an Andrid resurce ID, yu d nt need the plus-symbl, but must add the andrid package namespace like this example: UI Overview String resurces Using 6 8 2

3 Layuts Layuts Cmmn Layuts Layuts A layut defines the visual structure fr a user interface, such as the UI fr an activity r app widget. Yu can declare a layut in tw ways: Declare UI elements in XML: Andrid prvides a straightfrward XML vcabulary that crrespnds t the View classes and subclasses, such as thse fr widgets and layuts. Instantiate layut elements at runtime: Yur applicatin can create View and ViewGrup bjects (and manipulate their prperties) prgrammatically. Layuts Building Layuts with an Adapter When the cntent fr yur layut is dynamic r nt predetermined, yu can use a layut that subclasses AdapterView t ppulate the layut with views at runtime

4 Layuts Linear Layut id/widget/linearlayut.layutparams.html Layuts Relative Layut LinearLayut is a view grup that aligns all children in a single directin, vertically r hrizntally. Yu can specify the layut directin with the andrid:rientatin attribute. Layuts Relative Layut - Psitining Views RelativeLayut lets child views specify their psitin relative t the parent view r t each ther Imprtant layut prperties andrid:layut_alignparenttp If "true", makes the tp/bttm edge andrid:layut_alignparentbttm f this view match the tp edge f the parent. andrid:layut_centervertical andrid:layut_centerhrizntal andrid:layut_abve andrid:layut_belw andrid:layut_tstartof andrid:layut_tendof andrid:layut_alignparentstart andrid:layut_alignparentend If "true", centers this child vertically/hrizntal within its parent. Psitins the tp edge f this view abve/belw the view specified with a resurce ID. Psitins the left edge f this view t the left/right f the view specified with a resurce ID. If true, makes the left/right edge f this view match the right edge f the parent RelativeLayut is a view grup that displays child views in relative psitins. The psitin f each view can be specified as relative t sibling elements (such as t the left-f r belw anther view) r in psitins relative t the parent RelativeLayut area (such as aligned t the bttm, left r center)

5 Layuts Table Layut TableLayut is a ViewGrup that displays child View elements in rws and clumns. TableRw bjects are the child views f a TableLayut (each TableRw defines a single rw in the table). Each rw has zer r mre cells, each f which is defined by any kind f ther View. A cell may als be a ViewGrup bject (fr example, yu can nest anther TableLayut as a cell). Layuts Grid Layut A layut that places its children in a rectangular grid. The grid is cmpsed f a set f infinitely thin lines that separate the viewing area int cells. Children ccupy ne r mre cntiguus cells, as defined by their rwspec and clumnspec layut parameters. Yu shuld nt need t use either f the special size values: WRAP_CONTENT r MATCH_PARENT when cnfiguring the children f a GridLayut

6 Input Cntrls Input Cntrls Buttns Input Cntrls A buttn cnsists f text r an icn (r bth text and an icn) that cmmunicates what actin ccurs when the user tuches it. Depending n whether yu want a buttn with text, an icn, r bth, yu can create the buttn in yur layut in three ways: Input cntrls are the interactive cmpnents in yur app's user interface. Andrid prvides a wide variety f cntrls yu can use in yur UI, such as buttns, text fields, seek bars, checkbxes, zm buttns, tggle buttns, and many mre. Cmmn Cntrls: Buttn Text view Check bx Radi buttn Tggle buttn Spinner Picker... Input Cntrls Buttns and events When the user clicks a buttn, the Buttn bject receives an nclick event. Using andrid:nclick attribute Using an OnClickListener

7 Input Cntrls Text Fields A text field allws the user t type text int yur app. It can be either single line r multi-line. Tuching a text field places the cursr and autmatically displays the keybard. In additin t typing, text fields allw fr a variety f ther activities, such as text selectin (cut, cpy, paste) and data lk-up via aut-cmpletin. Input Cntrls Text Fields - Aut-cmplete Suggestins Design Strings.xml Cde Input Cntrls Text fields - Specifying the Keybard Type Text fields can have different input types, such as number, date, passwrd, r address. Input Cntrls Checkbxes Checkbxes allw the user t select ne r mre ptins frm a set

8 Input Cntrls Radi Buttns Radi buttns allw the user t select ne ptin frm a set. If it's nt necessary t shw all ptins side-by-side, use a spinner instead. Input Cntrls Tggle Buttns A tggle buttn allws the user t change a setting between tw states. Andrid 4.0 (API level 14) intrduces anther kind f tggle buttn called a switch that prvides a slider cntrl, which yu can add with a Switch bject. Input Cntrls Spinners Spinners prvide a quick way t select ne value frm a set. In the default state, a spinner shws its currently selected value. Using design Or cde Input Cntrls Spinners

9 Input Cntrls Pickers Input Cntrls Pickers - TimePicker Andrid prvides cntrls fr the user t pick a time r pick a date as ready-t-use dialgs. Each picker prvides cntrls fr selecting each part f the time (hur, minute, AM/PM) r date (mnth, day, year). Other Views Other Views ListView ListView is a view grup that displays a list f scrllable items. The list items are autmatically inserted t the list using an Adapter that pulls cntent frm a surce such as an array r database query and cnverts each item result int a view that's placed int the list

10 Other Views ListView - Using Adapter Other Views ListView Using ListActivity AndridManifest.xml Other Views GridView GridView is a ViewGrup that displays items in a tw-dimensinal, scrllable grid. The grid items are autmatically inserted t the layut using a ListAdapter Other Views GridView Using custm Adapter

11 Menus Menus are a cmmn user interface cmpnent in many types f Menus applicatins. T prvide a familiar and cnsistent user experience, yu shuld use the Menu APIs t present user actins and ther ptins in Menu Optins Menu The ptins menu is where yu shuld include actins and ther ptins that are relevant t the current activity cntext yur activities. There are three fundamental types f menus Optins menu and app bar Cntext menu and cntextual actin mde Ppup menu Menu Optins Menu - Handling click events

12 Menu Cntextual Menus Menu Cntextual Menus - flating cntext menu A cntextual menu ffers actins that affect a specific item r cntext frame in the UI. Yu can prvide a cntext menu fr any view, but they are mst ften used fr items in a ListView, GridView, r ther view cllectins in which the user can perfrm direct actins n each item. There are tw ways t prvide cntextual actins: Menu flating cntext menu cntextual actin mde. Cntextual Menus handling events implement ncntextitemselected() Register the View t which the cntext menu shuld be assciated by calling registerfrcntextmenu() and pass it the View. (In ncreate methd) Implement the ncreatecntextmenu() methd in yur Activity r Fragment. Menu Cntextual Menus handling events The cntextual actin mde is a system implementatin f ActinMde that fcuses user interactin tward perfrming cntextual actins. When a user enables this mde by selecting an item, a cntextual actin bar appears at the tp f the screen t present actins the user can perfrm n the currently selected item(s). While this mde is enabled, the user can select multiple items (if yu allw it), deselect items, and cntinue t navigate within the activity (as much as yu're willing t allw). The actin mde is disabled and the cntextual actin bar disappears when the user deselects all items, presses the BACK buttn, r selects the Dne actin n the left side f the bar

13 Menu Cntextual Menus handling events Menu Menu Ppup Menus Ppup Menus A PpupMenu is a mdal menu anchred t a View. It appears belw the anchr view if there is rm, r abve the view therwise. It's useful fr: Prviding an verflw-style menu fr actins that relate t specific cntent. Prviding a secnd part f a cmmand sentence (such as a buttn marked "Add" that prduces a ppup menu with different "Add" ptins). Prviding a drp-dwn similar t Spinner that des nt retain a persistent selectin

14 Intents Intents T start an activity Intent An Activity represents a single screen in an app. Yu can start a new instance f an Activity by passing an Intent t startactivity(). The Intent describes the activity t start and carries any necessary data. If yu want t receive a result frm the activity when it finishes, call startactivityfrresult(). Yur activity receives the result as a separate Intent bject in yur activity's nactivityresult() callback An Intent is a messaging bject yu can use t request an actin frm anther app cmpnent. Althugh intents facilitate cmmunicatin between cmpnents in several ways, there are three fundamental use-cases: T start an activity T start a service T deliver a bradcast Intents Intent Types There are tw types f intents Explicit intents specify the cmpnent t start by name (the fullyqualified class name). Implicit intents d nt name a specific cmpnent, but instead declare a general actin t perfrm, which allws a cmpnent frm anther app t handle it.. 54 [1] Activity A creates an Intent with an actin descriptin and passes it t startactivity(). [2] The Andrid System searches all apps fr an intent filter that matches the intent. When a match is fund, [3] the system starts the matching activity (Activity B) by invking its ncreate() methd and passing it the Intent

15 Intents Start Explicit Intent Intents Start Implicit Intent An explicit intent is ne that yu use t launch a specific app cmpnent, such as a particular activity r service in yur app. Yu can als put data t intent s can be use in target intent intent.putextra(name, value) Using Bundle t transfer key-value pairs t target intent Intents T start a service A Service is a cmpnent that perfrms peratins in the backgrund withut a user interface. Yu can start a service t perfrm a ne-time peratin (such as dwnlad a file) by passing an Intent t startservice(). The Intent describes the service t start and carries any necessary data. If the service is designed with a client-server interface, yu can bind t the service frm anther cmpnent by passing an Intent t bindservice() An implicit intent specifies an actin that can invke any app n the device able t perfrm the actin. Using an implicit intent is useful when yur app cannt perfrm the actin, but ther apps prbably can and yu'd like the user t pick which app t use. Cmmn Intents Intents T deliver a bradcast A bradcast is a message that any app can receive. The system delivers varius bradcasts fr system events, such as when the system bts up r the device starts charging. Yu can deliver a bradcast t ther apps by passing an Intent t sendbradcast(), sendorderedbradcast(), r sendstickybradcast()

16 Lcalizing with Resurces Lcalizing with Resurces Resurce-Switching Lcalizing with Resurces Resurces are text strings, layuts, sunds, graphics, and any ther static data that yur Andrid applicatin needs. An applicatin can include multiple sets f resurces, each custmized fr a different device cnfiguratin. When a user runs the applicatin, Andrid autmatically selects and lads the resurces that best match the device Andrid will run n many devices in many regins. T reach the mst users, yur applicatin shuld handle text,. audi files, numbers, currency, and graphics in ways apprpriate t the lcales where yur applicatin will be used. Lcalizing with Resurces Using Resurces fr Lcalizatin Suppse that yur applicatin's default language is English. Suppse als that yu want t lcalize all the text in yur applicatin t French, and mst f the text in yur applicatin (everything except the applicatin's title) t Japanese. In this case, yu culd create three alternative strings.xml files, each stred in a lcale-specific resurce directry

17 Lcalizing with Resurces Example Lcalizing with Resurces Example Fragments Fragments Intrductin A Fragment represents a behavir r a prtin f user interface in an Activity. Yu can cmbine multiple fragments in a single activity t build a multi-pane UI and reuse a fragment in multiple activities. Yu can think f a fragment as a mdular sectin f an activity, which has its wn lifecycle, receives its wn input events, and which yu can add r remve while the activity is running (srt f like a "sub activity" that yu can reuse in different activities)

18 Fragments Creating a Fragment Fragments Creating a Fragment A fragment must always be embedded in an activity and the fragment's lifecycle is directly affected by the hst activity's lifecycle. T create a fragment, yu must create a subclass f Fragment (r an existing subclass f it). The Fragment class has cde that lks a lt like an Activity. Fragments Adding a fragment t an activity 1. Declare the fragment inside the activity's layut file. 2. Or, prgrammatically add the fragment t an existing ViewGrup Dialgs

19 Dialgs Intrductin Dialgs Intrductin A dialg is a small windw that prmpts the user t make a decisin r enter additinal infrmatin. A dialg des nt fill the screen and is nrmally used fr mdal events that require users t take an actin befre they can prceed. Dialgs Sample 73 Types: AlertDialg: A dialg that can shw a title, up t three buttns, a list f selectable items, r a custm layut. DatePickerDialg r TimePickerDialg: A dialg with a pre-defined UI that allws the user t select a date r time. Using DialgFragment t manage the dialg ensures that it crrectly handles lifecycle events such as when the user presses the Back buttn r rtates the screen

20 Dialgs Custm Dialg Summary

Andrid prgramming curse Data strage Sessin bjectives Internal Strage Intrductin By Võ Văn Hải Faculty f Infrmatin Technlgies Andrid prvides several ptins fr yu t save persistent applicatin data. The slutin

More information

Design Patterns. Collectional Patterns. Session objectives 11/06/2012. Introduction. Composite pattern. Iterator pattern

Design Patterns. Collectional Patterns. Session objectives 11/06/2012. Introduction. Composite pattern. Iterator pattern Design Patterns By Võ Văn Hải Faculty f Infrmatin Technlgies HUI Cllectinal Patterns Sessin bjectives Intrductin Cmpsite pattern Iteratr pattern 2 1 Intrductin Cllectinal patterns primarily: Deal with

More information

TRAINING GUIDE. Lucity Mobile

TRAINING GUIDE. Lucity Mobile TRAINING GUIDE The Lucity mbile app gives users the pwer f the Lucity tls while in the field. They can lkup asset infrmatin, review and create wrk rders, create inspectins, and many mre things. This manual

More information

CS5530 Mobile/Wireless Systems Using Google Map in Android

CS5530 Mobile/Wireless Systems Using Google Map in Android Mbile/Wireless Systems Using Ggle Map in Andrid Yanyan Zhuang Department f Cmputer Science http://www.cs.uccs.edu/~yzhuang UC. Clrad Springs Setup Install the Ggle Play services SDK Tls > Andrid > SDK

More information

Relius Documents ASP Checklist Entry

Relius Documents ASP Checklist Entry Relius Dcuments ASP Checklist Entry Overview Checklist Entry is the main data entry interface fr the Relius Dcuments ASP system. The data that is cllected within this prgram is used primarily t build dcuments,

More information

Creating Relativity Dynamic Objects

Creating Relativity Dynamic Objects Creating Relativity Dynamic Objects Nvember 22, 2017 - Versin 9.3 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

More information

Creating Relativity Dynamic Objects

Creating Relativity Dynamic Objects Creating Relativity Dynamic Objects January 29, 2018 - Versin 9.5 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

More information

The Login Page Designer

The Login Page Designer The Lgin Page Designer A new Lgin Page tab is nw available when yu g t Site Cnfiguratin. The purpse f the Admin Lgin Page is t give fundatin staff the pprtunity t build a custm, yet simple, layut fr their

More information

* The mode WheelWork starts in can be changed using command line options.

* The mode WheelWork starts in can be changed using command line options. OperatiOns Manual Overview Yur muse mst likely has a wheel n it. If yu lk at yur muse frm the side, that wheel rtates clckwise and cunterclckwise, like a knb. If yu lk at the muse frm the tp, the wheel

More information

Element Creator for Enterprise Architect

Element Creator for Enterprise Architect Element Creatr User Guide Element Creatr fr Enterprise Architect Element Creatr fr Enterprise Architect... 1 Disclaimer... 2 Dependencies... 2 Overview... 2 Limitatins... 3 Installatin... 4 Verifying the

More information

INSERTING MEDIA AND OBJECTS

INSERTING MEDIA AND OBJECTS INSERTING MEDIA AND OBJECTS This sectin describes hw t insert media and bjects using the RS Stre Website Editr. Basic Insert features gruped n the tlbar. LINKS The Link feature f the Editr is a pwerful

More information

I - EDocman Installation EDocman component EDocman Categories module EDocman Documents Module...2

I - EDocman Installation EDocman component EDocman Categories module EDocman Documents Module...2 I - EDcman Installatin...2 1 - EDcman cmpnent...2 2 - EDcman Categries mdule...2 3 - EDcman Dcuments Mdule...2 4 - EDcman Search Plugin...3 5 - SH404 SEF plugin...3 II - Using EDcman extensin...3 I - EDcman

More information

Course 10262A: Developing Windows Applications with Microsoft Visual Studio 2010 OVERVIEW

Course 10262A: Developing Windows Applications with Microsoft Visual Studio 2010 OVERVIEW Curse 10262A: Develping Windws Applicatins with Micrsft Visual Studi 2010 OVERVIEW Abut this Curse In this curse, experienced develpers wh knw the basics f Windws Frms develpment gain mre advanced Windws

More information

INSTALLING CCRQINVOICE

INSTALLING CCRQINVOICE INSTALLING CCRQINVOICE Thank yu fr selecting CCRQInvice. This dcument prvides a quick review f hw t install CCRQInvice. Detailed instructins can be fund in the prgram manual. While this may seem like a

More information

MOS Access 2013 Quick Reference

MOS Access 2013 Quick Reference MOS Access 2013 Quick Reference Exam 77-424: MOS Access 2013 Objectives http://www.micrsft.cm/learning/en-us/exam.aspx?id=77-424 Create and Manage a Database Create a New Database This bjective may include

More information

BANNER BASICS. What is Banner? Banner Environment. My Banner. Pages. What is it? What form do you use? Steps to create a personal menu

BANNER BASICS. What is Banner? Banner Environment. My Banner. Pages. What is it? What form do you use? Steps to create a personal menu BANNER BASICS What is Banner? Definitin Prduct Mdules Self-Service-Fish R Net Lg int Banner Banner Envirnment The Main Windw My Banner Pages What is it? What frm d yu use? Steps t create a persnal menu

More information

Interfacing to MATLAB. You can download the interface developed in this tutorial. It exists as a collection of 3 MATLAB files.

Interfacing to MATLAB. You can download the interface developed in this tutorial. It exists as a collection of 3 MATLAB files. Interfacing t MATLAB Overview: Getting Started Basic Tutrial Interfacing with OCX Installatin GUI with MATLAB's GUIDE First Buttn & Image Mre ActiveX Cntrls Exting the GUI Advanced Tutrial MATLAB Cntrls

More information

CS5530 Mobile/Wireless Systems Android UI

CS5530 Mobile/Wireless Systems Android UI Mbile/Wireless Systems Andrid UI Yanyan Zhuang Department f Cmputer Science http://www.cs.uccs.edu/~yzhuang UC. Clrad Springs cat annunce.txt_ Assignment 2 will be psted sn Due after midterm I will be

More information

Using the Swiftpage Connect List Manager

Using the Swiftpage Connect List Manager Quick Start Guide T: Using the Swiftpage Cnnect List Manager The Swiftpage Cnnect List Manager can be used t imprt yur cntacts, mdify cntact infrmatin, create grups ut f thse cntacts, filter yur cntacts

More information

Adverse Action Letters

Adverse Action Letters Adverse Actin Letters Setup and Usage Instructins The FRS Adverse Actin Letter mdule was designed t prvide yu with a very elabrate and sphisticated slutin t help autmate and handle all f yur Adverse Actin

More information

Element Creator for Enterprise Architect

Element Creator for Enterprise Architect Element Creatr User Guide Element Creatr fr Enterprise Architect Element Creatr fr Enterprise Architect... 1 Disclaimer... 2 Dependencies... 2 Overview... 2 Limitatins... 3 Installatin... 4 Verifying the

More information

User Guide. Avigilon Control Center Mobile Version 2.2 for Android

User Guide. Avigilon Control Center Mobile Version 2.2 for Android User Guide Avigiln Cntrl Center Mbile Versin 2.2 fr Andrid 2011-2015, Avigiln Crpratin. All rights reserved. Unless expressly granted in writing, n license is granted with respect t any cpyright, industrial

More information

Andrid prgramming curse Asynchrnus Techniques Intrductin Sessin bjectives Intrductin Asynchrnus Techniques Executr Handler AsyncTask Service & IntentService AsyncQueryHandler Lader By Võ Văn Hải Faculty

More information

TaskCentre v4.5 XML to Recordset Tool White Paper

TaskCentre v4.5 XML to Recordset Tool White Paper TaskCentre v4.5 XML t Recrdset Tl White Paper Dcument Number: PD500-03-15-1_0-WP Orbis Sftware Limited 2010 Table f Cntents COPYRIGHT 1 TRADEMARKS 1 INTRODUCTION 2 Overview 2 GLOBAL CONFIGURATION 2 Schema

More information

ClassFlow Administrator User Guide

ClassFlow Administrator User Guide ClassFlw Administratr User Guide ClassFlw User Engagement Team April 2017 www.classflw.cm 1 Cntents Overview... 3 User Management... 3 Manual Entry via the User Management Page... 4 Creating Individual

More information

1on1 Sales Manager Tool. User Guide

1on1 Sales Manager Tool. User Guide 1n1 Sales Manager Tl User Guide Table f Cntents Install r Upgrade 1n1 Page 2 Setting up Security fr Dynamic Reprting Page 3 Installing ERA-IGNITE Page 4 Cnverting (Imprting) Queries int Dynamic Reprting

More information

Scroll down to New and another menu will appear. Select Folder and a new

Scroll down to New and another menu will appear. Select Folder and a new Creating a New Flder Befre we begin with Micrsft Wrd, create a flder n yur Desktp named Summer PD. T d this, right click anywhere n yur Desktp and a menu will appear. Scrll dwn t New and anther menu will

More information

CLIC ADMIN USER S GUIDE

CLIC ADMIN USER S GUIDE With CLiC (Classrm In Cntext), teaching and classrm instructin becmes interactive, persnalized, and fcused. This digital-based curriculum, designed by Gale, is flexible allwing teachers t make their classrm

More information

Using the Swiftpage Connect List Manager

Using the Swiftpage Connect List Manager Quick Start Guide T: Using the Swiftpage Cnnect List Manager The Swiftpage Cnnect List Manager can be used t imprt yur cntacts, mdify cntact infrmatin, create grups ut f thse cntacts, filter yur cntacts

More information

Wave IP 4.5. CRMLink Desktop User Guide

Wave IP 4.5. CRMLink Desktop User Guide Wave IP 4.5 CRMLink Desktp User Guide 2015 by Vertical Cmmunicatins, Inc. All rights reserved. Vertical Cmmunicatins and the Vertical Cmmunicatins lg and cmbinatins theref and Vertical ViewPint, Wave Cntact

More information

MyUni Adding Content. Date: 29 May 2014 TRIM Reference: D2013/ Version: 1

MyUni Adding Content. Date: 29 May 2014 TRIM Reference: D2013/ Version: 1 Adding Cntent MyUni... 2 Cntent Areas... 2 Curse Design... 2 Sample Curse Design... 2 Build cntent by creating a flder... 3 Build cntent by creating an item... 4 Cpy r mve cntent in MyUni... 5 Manage files

More information

STIQuery Basics. A second example is included at the end of this document.

STIQuery Basics. A second example is included at the end of this document. STIQuery Basics Using STIQuery A wide variety f reprts may be generated via STIQuery. With this tl, the use can retrieve data frm different areas f the prgram and cmbine the infrmatin tgether in ne reprt.

More information

ClubRunner. Volunteers Module Guide

ClubRunner. Volunteers Module Guide ClubRunner Vlunteers Mdule Guide 2014 Vlunteer Mdule Guide TABLE OF CONTENTS Overview... 3 Basic vs. Enhanced Versins... 3 Navigatin... 4 Create New Vlunteer Signup List... 5 Manage Vlunteer Tasks... 7

More information

Integrating QuickBooks with TimePro

Integrating QuickBooks with TimePro Integrating QuickBks with TimePr With TimePr s QuickBks Integratin Mdule, yu can imprt and exprt data between TimePr and QuickBks. Imprting Data frm QuickBks The TimePr QuickBks Imprt Facility allws data

More information

BI Publisher TEMPLATE Tutorial

BI Publisher TEMPLATE Tutorial PepleSft Campus Slutins 9.0 BI Publisher TEMPLATE Tutrial Lessn T2 Create, Frmat and View a Simple Reprt Using an Existing Query with Real Data This tutrial assumes that yu have cmpleted BI Publisher Tutrial:

More information

Bridge Specialty Suite

Bridge Specialty Suite Bridge Specialty Suite Prduct Design Guide Versin 2.5.115 Table f Cntents Page i Table f Cntents Table Of Cntents I Intrductin 1 Wrkflw Cntainers 1 Navigating Wrkflw Cntainers 1 Managing Wrkflw Cntainers

More information

Outlook Web Application (OWA) Basic Training

Outlook Web Application (OWA) Basic Training Outlk Web Applicatin (OWA) Basic Training Requirements t use OWA Full Versin: Yu must use at least versin 7 f Internet Explrer, Safari n Mac, and Firefx 3.X. (Ggle Chrme r Internet Explrer versin 6, yu

More information

Quick Start Guide. Basic Concepts. DemoPad Designer - Quick Start Guide

Quick Start Guide. Basic Concepts. DemoPad Designer - Quick Start Guide Quick Start Guide This guide will explain the prcess f installing & using the DemPad Designer sftware fr PC, which allws yu t create a custmised Graphical User Interface (GUI) fr an iphne / ipad & embed

More information

1 Getting and Extracting the Upgrader

1 Getting and Extracting the Upgrader Hughes BGAN-X 9211 Upgrader User Guide (Mac) Rev 1.2 (6-Jul-17) This dcument explains hw t use the Hughes BGAN Upgrader prgram fr the 9211 User Terminal using a Mac Nte: Mac OS X Versin 10.4 r newer is

More information

UiPath Automation. Walkthrough. Walkthrough Calculate Client Security Hash

UiPath Automation. Walkthrough. Walkthrough Calculate Client Security Hash UiPath Autmatin Walkthrugh Walkthrugh Calculate Client Security Hash Walkthrugh Calculate Client Security Hash Start with the REFramewrk template. We start ff with a simple implementatin t demnstrate the

More information

Proper Document Usage and Document Distribution. TIP! How to Use the Guide. Managing the News Page

Proper Document Usage and Document Distribution. TIP! How to Use the Guide. Managing the News Page Managing the News Page TABLE OF CONTENTS: The News Page Key Infrmatin Area fr Members... 2 Newsletter Articles... 3 Adding Newsletter as Individual Articles... 3 Adding a Newsletter Created Externally...

More information

Model WM100. Product Manual

Model WM100. Product Manual Mdel WM100 Prduct Manual Table f Cntents Sectin Page 1. Hardware... 3 2. Sftware... 4 3. Features... 5 4. Installatin... 6 5. App Devices... 9 6. App Rms... 12 7. App Scenes... 14 8. App Setup... 18 Cntents

More information

1 Getting and Extracting the Upgrader

1 Getting and Extracting the Upgrader Hughes BGAN-X 9202 Upgrader User Guide (Mac) Rev 1.0 (23-Feb-12) This dcument explains hw t use the Hughes BGAN Upgrader prgram fr the 9202 User Terminal using a Mac Nte: Mac OS X Versin 10.4 r newer is

More information

User Guide. ACE Data Source. OnCommand Workflow Automation (WFA) Abstract PROFESSIONAL SERVICES

User Guide. ACE Data Source. OnCommand Workflow Automation (WFA) Abstract PROFESSIONAL SERVICES PROFESSIONAL SERVICES User Guide OnCmmand Wrkflw Autmatin (WFA) ACE Data Surce Prepared fr: ACE Data Surce - Versin 2.0.0 Date: Octber 2015 Dcument Versin: 2.0.0 Abstract The ACE Data Surce (ACE-DS) is

More information

Volume DIGITAL SIGNAGE SOFTWARE MANUAL. Your total toolkit for cloud-based digital signage. A Quick Start User Guide

Volume DIGITAL SIGNAGE SOFTWARE MANUAL. Your total toolkit for cloud-based digital signage. A Quick Start User Guide Vlume 3 DIGITAL SIGNAGE SOFTWARE MANUAL Yur ttal tlkit fr clud-based digital signage A Quick Start User Guide 1 A Quick Start User Guide Table f Cntents 2 Intrductin Page. 1 Step 1: Getting Started Page.

More information

The following screens show some of the extra features provided by the Extended Order Entry screen:

The following screens show some of the extra features provided by the Extended Order Entry screen: SmartFinder Orders Extended Order Entry Extended Order Entry is an enhanced replacement fr the Sage Order Entry screen. It prvides yu with mre functinality while entering an rder, and fast access t rder,

More information

Axis Portal. Preventive Maintenance User Manual. January 2015

Axis Portal. Preventive Maintenance User Manual. January 2015 Axis Prtal Preventive Maintenance User Manual January 2015 Lgin t yur Axis Prtal at: http://cp.axisprtal.cm Axis Prtal Supprt Call: (877) 435-7547 Email: AxisSupprt@cbre.cm Online: https://cbre.service-nw.cm/navpage.d

More information

Extended Traceability Report for Enterprise Architect

Extended Traceability Report for Enterprise Architect Extended Traceability Reprt User Guide Extended Traceability Reprt fr Enterprise Architect Extended Traceability Reprt fr Enterprise Architect... 1 Disclaimer... 2 Dependencies... 2 Overview... 2 Limitatins

More information

TRAINING GUIDE. Overview of Lucity Spatial

TRAINING GUIDE. Overview of Lucity Spatial TRAINING GUIDE Overview f Lucity Spatial Overview f Lucity Spatial In this sessin, we ll cver the key cmpnents f Lucity Spatial. Table f Cntents Lucity Spatial... 2 Requirements... 2 Setup... 3 Assign

More information

Extended Vendors lets you: Maintain vendors across multiple Sage 300 companies using the Copy Vendors functionality. o

Extended Vendors lets you: Maintain vendors across multiple Sage 300 companies using the Copy Vendors functionality. o Extended Vendrs Extended Vendrs is an enhanced replacement fr the Sage Vendrs frm. It prvides yu with mre infrmatin while entering a PO and fast access t additinal PO, Vendr, and Item infrmatin. Extended

More information

Tips For Customising Configuration Wizards

Tips For Customising Configuration Wizards Tips Fr Custmising Cnfiguratin Wizards ver 2010-06-22 Cntents Overview... 2 Requirements... 2 Applicatins... 2 WinSCP and Putty... 2 Adding A Service T An Existing Wizard... 3 Gal... 3 Backup Original

More information

Procurement Contract Portal. User Guide

Procurement Contract Portal. User Guide Prcurement Cntract Prtal User Guide Cntents Intrductin...2 Access the Prtal...2 Hme Page...2 End User My Cntracts...2 Buttns, Icns, and the Actin Bar...3 Create a New Cntract Request...5 Requester Infrmatin...5

More information

SOLA and Lifecycle Manager Integration Guide

SOLA and Lifecycle Manager Integration Guide SOLA and Lifecycle Manager Integratin Guide SOLA and Lifecycle Manager Integratin Guide Versin: 7.0 July, 2015 Cpyright Cpyright 2015 Akana, Inc. All rights reserved. Trademarks All prduct and cmpany names

More information

Please contact technical support if you have questions about the directory that your organization uses for user management.

Please contact technical support if you have questions about the directory that your organization uses for user management. Overview ACTIVE DATA CALENDAR LDAP/AD IMPLEMENTATION GUIDE Active Data Calendar allws fr the use f single authenticatin fr users lgging int the administrative area f the applicatin thrugh LDAP/AD. LDAP

More information

Class Roster. Curriculum Class Roster Step-By-Step Procedure

Class Roster. Curriculum Class Roster Step-By-Step Procedure Imprtant Infrmatin The page prvides faculty and staff a list f students wh are enrlled and waitlisted in a particular class. Instructrs are given access t each class fr which they are listed as an instructr,

More information

DocAve 6 Granular Backup and Restore

DocAve 6 Granular Backup and Restore DcAve 6 Granular Backup and Restre User Guide Service Pack 3 Revisin H Issued August 2013 1 Table f Cntents Abut DcAve Granular Backup and Restre... 5 Cmplementary Prducts... 5 Submitting Dcumentatin Feedback

More information

If you have any questions that are not covered in this manual, we encourage you to contact us at or send an to

If you have any questions that are not covered in this manual, we encourage you to contact us at or send an  to Overview Welcme t Vercity, the ESS web management system fr rdering backgrund screens and managing the results. Frm any cmputer, yu can lg in and access yur applicants securely, rder a new reprt, and even

More information

Kaltura Video Extension for IBM Connections User Guide. Version: 1.0

Kaltura Video Extension for IBM Connections User Guide. Version: 1.0 Kaltura Vide Extensin fr IBM Cnnectins User Guide Versin: 1.0 Kaltura Business Headquarters 5 Unin Square West, Suite 602, New Yrk, NY, 10003, USA Tel.: +1 800 871 5224 Cpyright 2014 Kaltura Inc. All Rights

More information

CMC Blade BIOS Profile Cloning

CMC Blade BIOS Profile Cloning This white paper describes the detailed capabilities f the Chassis Management Cntrller s Blade BIOS Prfile Clning feature. Authr Crey Farrar This dcument is fr infrmatinal purpses nly and may cntain typgraphical

More information

VMware AirWatch Certificate Authentication for Cisco IPSec VPN

VMware AirWatch Certificate Authentication for Cisco IPSec VPN VMware AirWatch Certificate Authenticatin fr Cisc IPSec VPN Fr VMware AirWatch Have dcumentatin feedback? Submit a Dcumentatin Feedback supprt ticket using the Supprt Wizard n supprt.air-watch.cm. This

More information

Dashboard Extension for Enterprise Architect

Dashboard Extension for Enterprise Architect Dashbard Extensin fr Enterprise Architect Dashbard Extensin fr Enterprise Architect... 1 Disclaimer... 2 Dependencies... 2 Overview... 2 Limitatins f the free versin f the extensin... 3 Example Dashbard

More information

Creating Relativity Dynamic Objects

Creating Relativity Dynamic Objects Creating Relativity Dynamic Objects Nvember 28, 2017 - Versin 9.4 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

More information

Click Sign In button. Click Register Employer. Click Forgot Username and/or Password to Create a unique user ID and password.

Click Sign In button. Click Register Employer. Click Forgot Username and/or Password to Create a unique user ID and password. Virtual OneStp (VOS) Emplyer User Lgging In If yu dn t have an accunt: If yu have an accunt: Click the Hme page graphic, the Start here r Enter yur user ID and passwrd. Click here links, r the Nt Registered?

More information

1 Getting and Extracting the Upgrader

1 Getting and Extracting the Upgrader Hughes BGAN-X 9202 Upgrader User Guide (PC) Rev 1.0 (23-Feb-12) This dcument explains hw t use the Hughes BGAN-X Upgrader prgram fr the 9202 User Terminal using a PC. 1 Getting and Extracting the Upgrader

More information

Access 2000 Queries Tips & Techniques

Access 2000 Queries Tips & Techniques Access 2000 Queries Tips & Techniques Query Basics The query is the basic tl that Access prvides fr retrieving infrmatin frm yur database. Each query functins like a questin that can be asked immediately

More information

UiPath Automation. Walkthrough. Walkthrough Calculate Client Security Hash

UiPath Automation. Walkthrough. Walkthrough Calculate Client Security Hash UiPath Autmatin Walkthrugh Walkthrugh Calculate Client Security Hash Walkthrugh Calculate Client Security Hash Start with the REFramewrk template. We start ff with a simple implementatin t demnstrate the

More information

Municode Website Instructions

Municode Website Instructions Municde Website instructins Municde Website Instructins The new and imprved Municde site allws yu t navigate t, print, save, e-mail and link t desired sectins f the Online Cde f Ordinances with greater

More information

These tasks can now be performed by a special program called FTP clients.

These tasks can now be performed by a special program called FTP clients. FTP Cmmander FAQ: Intrductin FTP (File Transfer Prtcl) was first used in Unix systems a lng time ag t cpy and mve shared files. With the develpment f the Internet, FTP became widely used t uplad and dwnlad

More information

What s New in Banner 9 Admin Pages: Differences from Banner 8 INB Forms

What s New in Banner 9 Admin Pages: Differences from Banner 8 INB Forms 1 What s New in Banner 9 Admin Pages: Differences frm Banner 8 INB Frms Majr Changes: Banner gt a face-lift! Yur hme page is called Applicatin Navigatr and is the entry/launch pint t all pages Banner is

More information

Test Pilot User Guide

Test Pilot User Guide Test Pilt User Guide Adapted frm http://www.clearlearning.cm Accessing Assessments and Surveys Test Pilt assessments and surveys are designed t be delivered t anyne using a standard web brwser and thus

More information

IMPORTING INFOSPHERE DATA ARCHITECT MODELS INFORMATION SERVER V8.7

IMPORTING INFOSPHERE DATA ARCHITECT MODELS INFORMATION SERVER V8.7 IMPORTING INFOSPHERE DATA ARCHITECT MODELS INFORMATION SERVER V8.7 Prepared by: March Haber, march@il.ibm.cm Last Updated: January, 2012 IBM MetaData Wrkbench Enablement Series Table f Cntents: Table f

More information

Word 2007 The Ribbon, the Mini toolbar, and the Quick Access Toolbar

Word 2007 The Ribbon, the Mini toolbar, and the Quick Access Toolbar Wrd 2007 The Ribbn, the Mini tlbar, and the Quick Access Tlbar In this practice yu'll get the hang f using the new Ribbn, and yu'll als master the use f the helpful cmpanin tls, the Mini tlbar and the

More information

Gemini Intercom Quick Start Guide

Gemini Intercom Quick Start Guide Gemini Intercm Quick Start Guide 2 Quick Start Guide Cntents Cntents... 1 Overview... 3 First Step unpack and inspect... 3 Netwrk plan and IP addresses... 4 Management PC... 5 Install Sftware... 6 Cnfigure

More information

Reference Guide. Service Pack 3 Cumulative Update 2. Revision J Issued October DocAve 6: Control Panel

Reference Guide. Service Pack 3 Cumulative Update 2. Revision J Issued October DocAve 6: Control Panel DcAve 6 Cntrl Panel Reference Guide Service Pack 3 Cumulative Update 2 Revisin J Issued Octber 2013 DcAve 6: Cntrl Panel 1 Table f Cntents Abut Cntrl Panel... 6 Submitting Dcumentatin Feedback t AvePint...

More information

Skype Meetings

Skype Meetings http://www.jeffersnstate.edu/resurces-fr-instructrs-de/ Skype Meetings Skype-t-Skype is used fr cmmunicatin thrugh vice, vide, chat (Instant Messaging) and/r desktp sharing fr ne-n-ne cnferences, meetings,

More information

Adobe InDesign: The Knowledge

Adobe InDesign: The Knowledge Adbe InDesign: The Knwledge Linda Trst Washingtn & Jeffersn Cllege Hints 1. Plan/design yur dcument s layut befre yu start placing text. 2. The first time yu call up Adbe InDesign CS, even befre yu pen

More information

Hands-On Lab. Lab Manual HOL057 Data Features in Windows Forms 2.0

Hands-On Lab. Lab Manual HOL057 Data Features in Windows Forms 2.0 Hands-On Lab Lab Manual HOL057 Data Features in Windws Frms 2.0 Please d nt remve this manual frm the lab The lab manual will be available frm CmmNet Infrmatin in this dcument is subject t change withut

More information

DUO LINK 4 APP User Manual V- A PNY Technologies, Inc. 1. PNY Technologies, Inc. 34.

DUO LINK 4 APP User Manual V- A PNY Technologies, Inc. 1. PNY Technologies, Inc. 34. 34. 1. Table f Cntents Page 1. Prduct Descriptin 4 2. System Requirements 5 3. DUO LINK App Installatin 5 4. DUO LINK App Mving Screens 7 5. File Management 5.1. Types f views 8 5.2. Select Files t Cpy,

More information

How To enrich transcribed documents with mark-up

How To enrich transcribed documents with mark-up Hw T enrich transcribed dcuments with mark-up Versin v1.4.0 (22_02_2018_15:07) Last update 30.09.2018 This guide will shw yu hw t add mark-up t dcuments which are already transcribed in Transkribus. This

More information

To start your custom application development, perform the steps below.

To start your custom application development, perform the steps below. Get Started T start yur custm applicatin develpment, perfrm the steps belw. 1. Sign up fr the kitewrks develper package. Clud Develper Package Develper Package 2. Sign in t kitewrks. Once yu have yur instance

More information

Configuring Database & SQL Query Monitoring With Sentry-go Quick & Plus! monitors

Configuring Database & SQL Query Monitoring With Sentry-go Quick & Plus! monitors Cnfiguring Database & SQL Query Mnitring With Sentry-g Quick & Plus! mnitrs 3Ds (UK) Limited, Nvember, 2013 http://www.sentry-g.cm Be Practive, Nt Reactive! One f the best ways f ensuring a database is

More information

Towne Information Systems, Inc. Inter-Office Correspondence

Towne Information Systems, Inc. Inter-Office Correspondence Twne Infrmatin Systems, Inc. Inter-Office Crrespndence Date: 2/25/2019 Frm: Bill Salyers Subject: Getting Started with O365 By nw yu shuld have read abut ur mve t Micrsft O365 a new versin f Micrsft Office.

More information

DocAve 6 Service Pack 2 Control Panel

DocAve 6 Service Pack 2 Control Panel DcAve 6 Service Pack 2 Cntrl Panel Reference Guide Revisin D Issued February 2013 DcAve 6: Cntrl Panel 1 Table f Cntents Abut Cntrl Panel... 6 Submitting Dcumentatin Feedback t AvePint... 6 Befre Yu Begin...

More information

Area Governors Module

Area Governors Module 1. General Overview Welcme t Assistant/Area Gvernrs Mdule, this well structured sectin f the District Organizatin Chart will assist yu in rganizing the club lists fr all yur Assistant/Area Gvernrs 2. Getting

More information

TECHNICAL REQUIREMENTS

TECHNICAL REQUIREMENTS TECHNICAL REQUIREMENTS Table f Cntent PLATFORMS... 2 CONNECTION SPEED... 2 SUPPORTED BROWSERS... 2 ARMENIAN LANGUAGE SUPPORT... 2 Windws XP... 2 Windws Vista... 3 Windws 7... 4 Windws 8... 5 MAC OS...

More information

Enabling Your Personal Web Page on the SacLink

Enabling Your Personal Web Page on the SacLink 53 Enabling Yur Persnal Web Page n the SacLink *Yu need t enable yur persnal web page nly ONCE. It will be available t yu until yu graduate frm CSUS. T enable yur Persnal Web Page, fllw the steps given

More information

DocAve 6 ediscovery. User Guide. Service Pack 3, Cumulative Update 1. Revision F Issued August DocAve 6: ediscovery

DocAve 6 ediscovery. User Guide. Service Pack 3, Cumulative Update 1. Revision F Issued August DocAve 6: ediscovery DcAve 6 ediscvery User Guide Service Pack 3, Cumulative Update 1 Revisin F Issued August 2013 1 Table f Cntents Abut DcAve ediscvery... 4 Cmplementary Prducts... 4 Submitting Dcumentatin Feedback t AvePint...

More information

REFWORKS: STEP-BY-STEP HURST LIBRARY NORTHWEST UNIVERSITY

REFWORKS: STEP-BY-STEP HURST LIBRARY NORTHWEST UNIVERSITY REFWORKS: STEP-BY-STEP HURST LIBRARY NORTHWEST UNIVERSITY Accessing RefWrks Access RefWrks frm a link in the Bibligraphy/Citatin sectin f the Hurst Library web page (http://library.nrthwestu.edu) Create

More information

SMART Room System for Microsoft Lync. Software configuration guide

SMART Room System for Microsoft Lync. Software configuration guide SMART Rm System fr Micrsft Lync Sftware cnfiguratin guide Fr mdels SRS-LYNC-S, SRS-LYNC-M and SRS-LYNC-L In this guide: Fr yur recrds 1 Preparing fr yur rm system 2 Befre cnfiguring yur rm system s sftware

More information

ROCK-POND REPORTING 2.1

ROCK-POND REPORTING 2.1 ROCK-POND REPORTING 2.1 AUTO-SCHEDULER USER GUIDE Revised n 08/19/2014 OVERVIEW The purpse f this dcument is t describe the prcess in which t fllw t setup the Rck-Pnd Reprting prduct s that users can schedule

More information

AvePoint Perimeter Pro 1.9

AvePoint Perimeter Pro 1.9 G09 AvePint Perimeter Pr 1.9 Secured Share User Guide Issued December 2017 Table f Cntents What s New in this Guide... 4 Overview... 5 Internal Users... 6 Site Cllectin Administratrs... 7 External Prtal

More information

USER MANUAL. RoomWizard Administrative Console

USER MANUAL. RoomWizard Administrative Console USER MANUAL RmWizard Administrative Cnsle Cntents Welcme... 3 Administer yur RmWizards frm ne lcatin... 3 Abut This Manual... 4 Setup f the Administrative Cnsle... 4 Installatin... 4 The Cnsle Windw...

More information

Chapter 1 Getting Started

Chapter 1 Getting Started Chapter 1 Getting Started Lessn C Wrangling Data 10 Minutes Lab Gals In this Lessn, yu will: Learn Imprtant Trifacta terminlgy: Transfrmer Page Data Quality Bar Histgram Clumn Menu Panel Clumns View Clumn

More information

User Guide. Document Version: 1.0. Solution Version:

User Guide. Document Version: 1.0. Solution Version: User Guide Dcument Versin: 1.0 Slutin Versin: 365.082017.3.1 Table f Cntents Prduct Overview... 3 Hw t Install and Activate Custmer Satisfactin Survey Slutin?... 4 Security Rles in Custmer Satisfactin

More information

BMC Remedyforce Integration with Remote Support

BMC Remedyforce Integration with Remote Support BMC Remedyfrce Integratin with Remte Supprt 2003-2018 BeyndTrust, Inc. All Rights Reserved. BEYONDTRUST, its lg, and JUMP are trademarks f BeyndTrust, Inc. Other trademarks are the prperty f their respective

More information

Ascii Art Capstone project in C

Ascii Art Capstone project in C Ascii Art Capstne prject in C CSSE 120 Intrductin t Sftware Develpment (Rbtics) Spring 2010-2011 Hw t begin the Ascii Art prject Page 1 Prceed as fllws, in the rder listed. 1. If yu have nt dne s already,

More information

Graduate Application Review Process Documentation

Graduate Application Review Process Documentation Graduate Applicatin Review Prcess Cntents System Cnfiguratin... 1 Cgns... 1 Banner Dcument Management (ApplicatinXtender)... 2 Banner Wrkflw... 4 Navigatin... 5 Cgns... 5 IBM Cgns Sftware Welcme Page...

More information

Enterprise Installation

Enterprise Installation Enterprise Installatin Mnnit Crpratin Versin 3.6.0.0 Cntents Prerequisites... 3 Web Server... 3 SQL Server... 3 Installatin... 4 Activatin Key... 4 Dwnlad... 4 Cnfiguratin Wizard... 4 Activatin... 4 Create

More information

Campuses that access the SFS nvision Windows-based client need to allow outbound traffic to:

Campuses that access the SFS nvision Windows-based client need to allow outbound traffic to: Summary This dcument is a guide intended t guide yu thrugh the prcess f installing and cnfiguring PepleTls 8.55.27 (r current versin) via Windws Remte Applicatin (App). Remte App allws the end user t run

More information

STUDIO DESIGNER. Design Projects Basic Participant

STUDIO DESIGNER. Design Projects Basic Participant Design Prjects Basic Participant Thank yu fr enrlling in Design Prjects 2 fr Studi Designer. Please feel free t ask questins as they arise. If we start running shrt n time, we may hld ff n sme f them and

More information