TECHNICAL NOTE HOW TO USE LOOPERS. Kalipso_TechDocs_Loopers. Revision: 1.0. Kalipso version: Date: 16/02/2017.

Size: px
Start display at page:

Download "TECHNICAL NOTE HOW TO USE LOOPERS. Kalipso_TechDocs_Loopers. Revision: 1.0. Kalipso version: Date: 16/02/2017."

Transcription

1 TECHNICAL NOTE HOW TO USE LOOPERS Document: Kalipso_TechDocs_Loopers Revision: 1.0 Kalipso version: Date: 16/02/2017 Author: RS

2 Contents 1. About Application Examples List with Loopers Dynamic Menu Scrolling Area Loopers in Kalipso Looper Add Line Looper Delete Line Get Selection Set Selection Get Item Count Event: Item Added Tutorial Demo App Listing with Loopers Dynamic Menu Scrollable Area Kalipso documentation How to Use Loopers 2

3 1. About Loopers are placeholders that can be used to duplicate, one or more times, all Controls contained inside the repeatable area. Unlike the Table Control, Loopers can be used to display content from database tables in other types of Controls like Text Boxes, Images or Labels and customize each Control properties individually from cell to cell, allowing for a more dynamic record presentation. Kalipso documentation How to Use Loopers 3

4 2. Application Examples 2.1. List with Loopers Regular Table Controls can only present columns with text content. A Looper can use various types Controls to show that content or change various properties like size, position, color, visibility. This is useful for listing images, shapes or other type of Controls Dynamic Menu With a Looper, it s possible to create dynamic menus by adding generic Controls and repeating them for each required menu item. This is useful when adding several Controls to perform similar or different Actions, like showing other Forms, display an overview state of a system or delivery batch, or when the menu needs to change according to the user Scrolling Area Scrolling areas allow to display content in a small space contained within a Control. When a Control, or group of Controls need to be always visible in the screen area, a Looper can be used to create a scrollable area anchored between those Controls. Kalipso documentation How to Use Loopers 4

5 3. Loopers in Kalipso Loopers are handled in many ways like Lists or Tables, with the added flexibility of field customization and positioning. They consist in a definable cell area that is repeatable vertically or horizontally, in one or more columns (or rows) inside the Looper area. THE CELL AREA IS WERE CONTROLS NEED TO BE PLACED Like a Table Control Column, a Control in a Looper can be linked to the database. The link can either be to the value or any other property. To create Scrollable areas, the Looper will need to have a cell area bigger than the Looper area to accommodate space for all the Controls needed inside. Kalipso documentation How to Use Loopers 5

6 If needed, enabling vertical or horizontal scroll in the Form to increase Looper area can help to better arrange Controls. After everything is defined, the Looper area can be reduced to its final size, creating a scrollable area inside. To enable that area, it s necessary to add a new line and set selection to that cell to allow user interaction. To dynamically Control a Looper, Kalipso provides the Actions described below Looper Add Line Adds a cell to the Looper Looper Delete Line Deletes a cell from the Looper Get Selection Gets the current selected cell of the Looper Set Selection Sets the selection to a specified cell of the Looper Get Item Count Gets the number of items in the Looper Event: Item Added This Event is triggered automatically when an item is added to the Looper. Kalipso documentation How to Use Loopers 6

7 Kalipso documentation How to Use Loopers 7

8 4. Tutorial Demo App This is a simple Demo app showing how to use Loopers for creating customized list representations, dynamic menus for opening the created Forms and scrollable areas between Controls Listing with Loopers For this example, a list with countries will be displayed along with its flags and other data related to them. 1. Create a New Project, and choose for example, the theme <ksimpleblue>, because it already has template Forms that will be used during the tutorial (the included Controls can also be added manually). Kalipso documentation How to Use Loopers 8

9 2. Switch to the Tab Style and double-click the LISTVIEW template Form. This Template Form already has a Looper with an Image Control and some Labels. 3. Configure a button Click Event to close the Form with the Close Form Action. 4. Remove Controls that won t be used (AppPlusButton1, and TextBoxWithIconRight1). Kalipso documentation How to Use Loopers 9

10 5. Add a Label for the Subtitle, outside the Looper Area 6. Rename Labels: TEXT_LARGE1 to LblCoutry and change its text to Country; TEXT_MEDIUM1 to LblRegion and change its text to Region; TEXT_SMALL1 to LblDen and change its text to Population Density. Although the text property is being defined in these labels, only LblDen will maintain its text, while the other will be used to display other data. Kalipso documentation How to Use Loopers 10

11 7. Inside the Looper, Add another Label to display the Country s Population Density. 8. Now setup a database with records to be presented. For this demo, we ll just going to use an SQLite database that will be set in the Files to Send Folder. All files placed in that folder will be sent automatically to the device and placed in the application s folder, being accessible by the keyword PFOLDER. (files can be downloaded from here: Kalipso documentation How to Use Loopers 11

12 8.1. Switch to the General Tree view and double-click on Database Click on Add Database Connection Profile, set the Profile s Name, change the type to SQLite, and set the Database s Name and Location Click on Add Table to open the Add Tables Wizard. Kalipso documentation How to Use Loopers 12

13 8.4. Click Next Select the tables to be used, and click Next. Kalipso documentation How to Use Loopers 13

14 8.6. Select all the columns to use in the Looper, Click Next Click No when requested for adding more tables. Kalipso documentation How to Use Loopers 14

15 8.8. Open Form Actions, add and configure the Set DB Profile Parameter to open the database file (PFOLDER). 9. Now Configure the Looper Properties: 9.1. Configure it to have only one Column with Vertical Orientation. Kalipso documentation How to Use Loopers 15

16 9.2. On the Content set it to link the Controls to Tables Because in the database provided, the information to display is placed in two tables, a relation between tables needs to be created. Kalipso documentation How to Use Loopers 16

17 9.4. Create Looper Links with the Database. Here, each Source from the database is linked to the desired Controls placed in the Looper. Display the Countries Name in the Lbl_Country Label The database has a column with filenames. Those filenames will be used to display images that are placed in the Files to Send Folder Display the IMAGE in the ImgCountry Image Control. Kalipso documentation How to Use Loopers 17

18 9.7. Display the Region name in the LblRegion Label Link the LblPopDensity to the POPULATION_DENSITY Column. 10. Finally, to display the data, the Looper Control needs to be Refreshed, so on the Form Actions add the Refresh Control Action on the Open Form Event Choose the Looper (ListView1) and leave the remaining options in their default. Kalipso documentation How to Use Loopers 18

19 11. (Extra) To exemplify how to change dynamically a Control property (font color), using the population_density Using the Event Item Added, when the value is over 100, its color will be presented in red In the Looper Actions, on the Event Item Added create an If statement to verify the numeric value of the Control; Set the font color to red. Kalipso documentation How to Use Loopers 19

20 11.2. Here s a preview of the result: Using SQL Advanced, when the value is over 200, its color will be presented in red. When the value is between 20 and 200, the color is set to Green, the rest will be in normal color In the Looper Properties->Content, Set Link Controls to SQL Advanced If using the Form created earlier, some information may already be present Update the Column Indexes. Kalipso documentation How to Use Loopers 20

21 Add another Looper Link for controlling the text color property from the same Label LblPopDensity, with Column Index 5. Kalipso documentation How to Use Loopers 21

22 In the Looper Properties->Content, insert the query: "SELECT IMAGE, COUNTRY_NAME, REGION_NAME, POPULATION_DENSITY, (CASE WHEN POPULATION_DENSITY >= '200' THEN ' ' WHEN POPULATION_DENSITY < '200' AND POPULATION_DENSITY > '20' THEN ' ' ELSE '0' END) FROM COUNTRIES LEFT OUTER JOIN REGIONS ON REGIONS.REGION_ID = COUNTRIES.REGION_ID" Kalipso also does the automatic conversion when switching from Tables to SQL Advanced And finally, comment the Actions added in the Event Item Added. Kalipso documentation How to Use Loopers 22

23 11.4. Here s a preview of the result: Kalipso documentation How to Use Loopers 23

24 4.2. Dynamic Menu 1. Switch to the Tab Style and double-click the MENU template Form: 2. This Form will be used to create a dynamic Menu to navigate between Forms, so set this as the First Form, 3. Remove Controls that won t be used in this example. Kalipso documentation How to Use Loopers 24

25 4. Configure a button Click Action to Close the Form. 5. Create a Text Button inside the Looper. Kalipso documentation How to Use Loopers 25

26 6. Each Control, in this example will show a different Form depending on its position in the Looper. They need to have a property that can be uniquely addressable, so that when a Button has a Click Event, the correct Form will be shown. In this example, each Button will have a different Hidden Value, to simplify the selection logic used ahead in the tutorial. The Hidden Value is a property that can be manipulated in the Controls that is hidden from the user. To enable that property, in the Looper Properties->Content, Set Link Controls to Nothing, because this menu will be created adding Controls manually. Add a Looper Link with the ButtonMenu as Target Control and Hidden Value as Target Property. Kalipso documentation How to Use Loopers 26

27 7. Add a link with the ButtonMenu as Target Control and Text as Target Property to be able to set each button text individually. 8. For each Form to be opened, a Looper Add Line Action is needed on Open Form Event. In Form Properties use the Action Looper Add Line, select the Looper Control, use the value 0 in the line field, set the Button Hidden Value to 1 and the Text to List View - Countries. Kalipso documentation How to Use Loopers 27

28 9. Next, the Button Click Event needs to be configured to open a different Form depending on its Hidden Value property. Using the Get Property Action and If-else statements the Button can be configured to open different Forms depending on its Hidden Value. Add the Action Get Property, selecting the ButtonMenu Control, using Looper Index 0 to retrieve its Hidden Value property to a temporary variable (to be used later). 10. If the Hidden Value assigned to TVAR(tvSel) is 1, open the LISTVIEW1 Form. Kalipso documentation How to Use Loopers 28

29 11. After the next example, a new Form is created, this menu will be updated to include another Looper Cell. Kalipso documentation How to Use Loopers 29

30 4.3. Scrollable Area 1. Switch to the Tab Style and double-click the DATAFORM template Form. 2. Open Form Properties and enable Horizontal and Vertical Scroll and adjust the Form to double the current dimensions. Kalipso documentation How to Use Loopers 30

31 3. Add a Looper on the right side. 4. Resize all Text Boxes and the Image Bar so they can fit in the Looper. Kalipso documentation How to Use Loopers 31

32 5. Select all the objects, except the top bar and drag them inside the Looper. 6. Drag the Looper to the desired position, in this case, below the blue menu bar and resize the Looper to fit in the original Form size. Kalipso documentation How to Use Loopers 32

33 7. Open the Form Properties and disable horizontal and vertical scrolling. 8. In the Form Actions, to show the content, add Looper Add Line. 9. And to make it active add Set Selection. Referencing a Control inside a Looper, Kalipso accesses the Control of the currently selected cell. Kalipso documentation How to Use Loopers 33

34 10. Configure the exit Button. 11. Finally, add another Button to the Looper in the MENU Form to show this Form. In the MENU1 Form Actions add Looper Add Line in the Open Form Event with a different Hidden Value 2 and with text Scrolling Space. 12. In the ButtonMenu Actions add an else if to show the DATAFORM1 if the Hidden Value that is stored in the temporary variable is 2. Kalipso documentation How to Use Loopers 34

35 13. Here s a preview: Kalipso documentation How to Use Loopers 35

Blackwave Dive Table Creator User Guide

Blackwave Dive Table Creator User Guide Blackwave Dive Table Creator User Guide Copyright 2002-2009 Blackwave. All rights reserved. These materials (including without limitation all articles, text, images, logos, compilation, and design) are

More information

Mac Software Manual for FITstep Pro Version 2

Mac Software Manual for FITstep Pro Version 2 Thank you for purchasing this product from Gopher. If you are not satisfied with any Gopher purchase for any reason at any time, contact us and we will replace the product, credit your account, or refund

More information

Microsoft Windows Software Manual for FITstep Stream Version 4

Microsoft Windows Software Manual for FITstep Stream Version 4 Thank you for purchasing this product from Gopher. If you are not satisfied with any Gopher purchase for any reason at any time, contact us and we will replace the product, credit your account, or refund

More information

XC2 Client/Server Installation & Configuration

XC2 Client/Server Installation & Configuration XC2 Client/Server Installation & Configuration File downloads Server Installation Backup Configuration Services Client Installation Backup Recovery Troubleshooting Aug 12 2014 XC2 Software, LLC Page 1

More information

Sail Chart Drafter for Deckman v.2

Sail Chart Drafter for Deckman v.2 Sailing Performer present Sail Chart Drafter for Deckman v.2 This application has been made to help navigators and trimmers to find the right sail to use in a faster and easier way than ever. Sail Chart

More information

Online League Management lta.tournamentsoftware.com. User Manual. Further support is available online at

Online League Management lta.tournamentsoftware.com. User Manual. Further support is available online at Online League Management lta.tournamentsoftware.com User Manual Further support is available online at www.lta.org.uk/leagueplanner Contents Welcome... 3 Using this guide... 3 Further support?... 3 Publishing

More information

ClubHub. User s Guide

ClubHub. User s Guide ClubHub User s Guide Table of Contents Setup... Initial Club Setup...7 Changing Clubs...5 Settings...8 My Clubs... Turn On/Off Sounds...9 Play Round Mode...0 List View...8 Social Sharing...0 Viewing D

More information

RUNNING MEET MANAGER IN SUPPORT OF MEETS (2016) Greg Wright(6/3/16) First, YOU DO NOT NEED TO DO THIS UNLESS YOU ARE THE HOME TEAM

RUNNING MEET MANAGER IN SUPPORT OF MEETS (2016) Greg Wright(6/3/16) First, YOU DO NOT NEED TO DO THIS UNLESS YOU ARE THE HOME TEAM RUNNING MEET MANAGER IN SUPPORT OF MEETS (2016) Greg Wright(6/3/16) First, YOU DO NOT NEED TO DO THIS UNLESS YOU ARE THE HOME TEAM 1. Download the appropriate Swmm6Backup file from the RCSL Forms & Documents

More information

Swing Labs Training Guide

Swing Labs Training Guide Swing Labs Training Guide How to perform a fitting using FlightScope and Swing Labs Upload Manager 3 v0 20080116 ii Swing labs Table of Contents 1 Installing & Set-up of Upload Manager 3 (UM3) 1 Installation.................................

More information

Competition Management Online User Guide for Basketball

Competition Management Online User Guide for Basketball Competition Management Online User Guide for Basketball version 3.0 Acting Manager, Game Development Amy Clarke E: amy.clarke@basketball.net.au P: 03 9697 4315 Account Manager Katherine Bell E: k.bell@foxsportspulse.com

More information

Tutorial 2 Time-Dependent Consolidation. Staging Groundwater Time-dependent consolidation Point query Line query Graph Query

Tutorial 2 Time-Dependent Consolidation. Staging Groundwater Time-dependent consolidation Point query Line query Graph Query Tutorial 2 Time-Dependent Consolidation Staging Groundwater Time-dependent consolidation Point query Line query Graph Query Model Set-up For this tutorial we will start with the model from Tutorial 1 Quick

More information

For clarification or assistance with TDM-web or any USTA web-based application,

For clarification or assistance with TDM-web or any USTA web-based application, TD # 1 Tournament Set Up Guidelines: Follow These Steps and TDM Q&A s - April 2014 Batch enter players & process entries on the sanction form. Then use TDM to enter tournament information. For clarification

More information

Competition Management

Competition Management Competition Management User Guide for the Basketball Network 2016 version 1.3 Table of Contents CONFIGURATION 4 Passport 4 Access via User Management 4 Club and Team Field Settings 5 Manage Competition

More information

Fastball Baseball Manager 2.5 for Joomla 2.5x

Fastball Baseball Manager 2.5 for Joomla 2.5x Fastball Baseball Manager 2.5 for Joomla 2.5x Contents Requirements... 1 IMPORTANT NOTES ON UPGRADING... 1 Important Notes on Upgrading from Fastball 1.7... 1 Important Notes on Migrating from Joomla 1.5x

More information

Fencing Time Version 4.3

Fencing Time Version 4.3 Fencing Time Version 4.3 Upgrading your Fencing Time Server October 2017 Copyright 2017 by Fencing Time, LLC. All rights reserved. Overview Periodically, a new version of Fencing Time is released. In most

More information

Steltronic StelPad User Guide

Steltronic StelPad User Guide StelPad User Guide Steltronic StelPad User Guide Contents Contents... 1 About StelPad and its Features... 3 StelPad System Elements... 3 StelPad Computer Integration with Focus... 4 Enable Custom Graphic

More information

IBM Security IOC Manager 1.0.0

IBM Security IOC Manager 1.0.0 IBM Security IOC Manager 1.0.0 Table of Contents Overview...1 Installing...1 Install steps...1 Uninstall steps...2 Configuring...2 Creating authorized service token...2 First Time Setup...3 Managing permissions

More information

Lets Play Catch! Keeping Score in Alice. Overview. Set Up. Position the ball 20 feet away: Orienting the ball 7/19/2010

Lets Play Catch! Keeping Score in Alice. Overview. Set Up. Position the ball 20 feet away: Orienting the ball 7/19/2010 Lets Play Catch! Keeping Score in Alice Overview This tutorial will show how to create a game of catch with a score. A ball will be thrown several times and the player moves the glove to catch it. By Francine

More information

HOW TO SETUP ROUND ROBIN IN DARTS FOR WINDOWS

HOW TO SETUP ROUND ROBIN IN DARTS FOR WINDOWS Edition: 1p2 06-Aug-2008 Previous editions: 05-Aug-2008 Author : RB Appr. : RB All pages in this document shall have the same edition number 3AQ 20080805 AAAD Ed. 1p2 Page 1 of 7 TABLE OF CONTENTS 1.SCOPE...3

More information

IMGA PAIRINGS INSTRUCTIONS USING the ONLINE GOLF GENIUS SOFTWARE ROGRAM Revised as of 12/31/2017

IMGA PAIRINGS INSTRUCTIONS USING the ONLINE GOLF GENIUS SOFTWARE ROGRAM Revised as of 12/31/2017 GENERAL INFORMATION: IMGA PAIRINGS INSTRUCTIONS USING the ONLINE GOLF GENIUS SOFTWARE ROGRAM Revised as of 12/31/2017 The cutoff time for tournament entry is 12:00PM (Noon) on the Friday before Tuesday

More information

User Guide. Version Mindjet

User Guide. Version Mindjet User Guide Version 3.0 2011 Mindjet Table of Contents Table of Contents An Overview of Mindjet Power Markers... 1 Getting Started... 2 Power Markers features... 2 Ribbon... 2 Task Panes... 2 Options...

More information

UNDERGROUND SURVEY WITH MINEMODELLER

UNDERGROUND SURVEY WITH MINEMODELLER UNDERGROUND SURVEY WITH MINEMODELLER A Tutorial Derek C. Diamond derek@primethought.biz CONTENTS Underground Survey with MineModeller... 2 Introduction... 2 Requirements... 2 Getting Started with MineModeller...

More information

RUNNING A MEET WITH HY-TEK MEET MANAGER

RUNNING A MEET WITH HY-TEK MEET MANAGER SETTING UP THE MEET 1. A database setup for the current season can be found on the CCAA website www.ccaaswim.org this will have the events and other information for the meet setup already in place. 2.

More information

Full-Time People and Registrations Version 5.0

Full-Time People and Registrations Version 5.0 Full-Time People and Registrations Version 5.0 Full-Time People and Registrations Page 1 1.0 People 1.1 How to Add New League Administrators 3 1.2 How to Add Other New Administrators 4 1.3 How to Change

More information

[MYLAPS INTEGRATION]

[MYLAPS INTEGRATION] 2018 The Race Director MyLaps Integration Manual [MYLAPS INTEGRATION] This document explains how to manage the results data between your MyLaps readers and Race Director using manual file transfers. Contents

More information

Dive Sheets & Running Events Meet Management Software Tutorial for EZMeet Version 3.1 revised 2/4/2006

Dive Sheets & Running Events Meet Management Software Tutorial for EZMeet Version 3.1 revised 2/4/2006 Dive Sheets & Running Events Meet Management Software Tutorial for EZMeet Version 3.1 revised 2/4/2006 Once you have events created in your meet you are ready to enter dive sheets and run your event. INCLUDED

More information

CONTENTS... 2 CONFIGURATION... 3 VENUE MANAGEMENT SETTING UP COMPETITIONS TEAM MANAGEMENT FIXTURING PUBLICATION...

CONTENTS... 2 CONFIGURATION... 3 VENUE MANAGEMENT SETTING UP COMPETITIONS TEAM MANAGEMENT FIXTURING PUBLICATION... Contents CONTENTS... 2 CONFIGURATION... 3 VENUE MANAGEMENT... 12 SETTING UP COMPETITIONS... 14 TEAM MANAGEMENT... 19 FIXTURING... 20 PUBLICATION... 26 RESULTS... 27 REPORTING... 31 2 P a g e Configuration

More information

Maestro 3 rd Party Golf User Guide

Maestro 3 rd Party Golf User Guide Maestro 3 rd Party Golf User Guide Published Date: November 15 Golf Setup Before Golfing reservations can be made using a 3 rd party Golf Interface, an amount of setup is required. This setup is performed

More information

Full-Time Cup Competitions Version 5.0

Full-Time Cup Competitions Version 5.0 Full-Time Cup Competitions Version 5.0 Full-Time Cup Competitions Page 1 1.0 Cup Competitions 1.1 How to Create a Cup Competition 3 1.2 How to Edit a Cup Competition (Name, Hide or Sequence) 7 1.3 How

More information

Integrated Sports Systems (ISS) Inc. Meet Management Suite

Integrated Sports Systems (ISS) Inc. Meet Management Suite November 2010 Integrated Sports Systems (ISS) Inc. Meet Management Suite User Guide and Technical Document Version 2.0 Table of Contents Table of Contents... 2 General Concepts... 3 Installation Meet Management

More information

Error! Bookmark not defined. Error! Bookmark not defined. Error! Bookmark not defined.

Error! Bookmark not defined. Error! Bookmark not defined. Error! Bookmark not defined. Page 1 Contents Page: Sporting Pulse Passport... 3 Procedure:... 4 Sporting Pulse Membership Database... 5 Club Level Options... 6 Club details:... 6 Contacts... 7 Locator... 8 Transfers & Permits... 9

More information

CS Problem Solving and Object-Oriented Programming Lab 2 - Methods, Variables and Functions in Alice Due: September 23/24

CS Problem Solving and Object-Oriented Programming Lab 2 - Methods, Variables and Functions in Alice Due: September 23/24 CS 101 - Problem Solving and Object-Oriented Programming Lab 2 - Methods, Variables and Functions in Alice Due: September 23/24 Pre-lab Preparation Before coming to lab, you are expected to have: Read

More information

GN21 Frequently Asked Questions For Golfers

GN21 Frequently Asked Questions For Golfers Posting Scores (My Score Center) 1. Click on the Enter Score button to enter an adjusted gross score or click on the Enter Hole-By-Hole Score button to enter your score hole-by-hole. NOTE: to use the Game

More information

Inventor Hole Notes: How to Annotate with Drill Numbers Not Diameters Author: David Ponka, Senior Applications Expert Manufacturing

Inventor Hole Notes: How to Annotate with Drill Numbers Not Diameters Author: David Ponka, Senior Applications Expert Manufacturing Inventor Hole Notes: How to Annotate with Drill Numbers Not Diameters Author: David Ponka, Senior Applications Expert Manufacturing Introduction Hole notes in Inventor are a great drawing aid that can

More information

INSTRUCTIONS FOR USING HMS 2016 Scoring (v1)

INSTRUCTIONS FOR USING HMS 2016 Scoring (v1) INSTRUCTIONS FOR USING HMS 2016 Scoring (v1) HMS 2016 Scoring (v1).xlsm is an Excel Workbook saved as a Read Only file. Intended for scoring multi-heat events run under HMS 2016, it can also be used for

More information

ADVANCED. CATIA V5 Workbook. Knowledgeware and Workbenches. Release 16. Knowledgeware. Workbenches. Richard Cozzens. Southern Utah University

ADVANCED. CATIA V5 Workbook. Knowledgeware and Workbenches. Release 16. Knowledgeware. Workbenches. Richard Cozzens. Southern Utah University ADVANCED CATIA V5 Workbook Knowledgeware and Workbenches Release 16 Knowledgeware Tutorial Exercises Workbenches Kinematics Stress Analysis Sheetmetal Design Prismatic Machining Richard Cozzens Southern

More information

Figure 1 Example feature overview.

Figure 1 Example feature overview. 1. Introduction This case focuses on the northeastern region of Onslow Bay, NC, and includes an initial shoreline, regional contour, wave gauges, inlets, dredging, and beach fills. Most of the features

More information

OMS Alerts with Milsoft IVR Written by: Darcy O Neal Presented by: Clayton Tucker

OMS Alerts with Milsoft IVR Written by: Darcy O Neal Presented by: Clayton Tucker OMS Alerts with Milsoft IVR Written by: Darcy O Neal Presented by: Clayton Tucker The Foundation Milsoft IVR s Notification One-stop shop for Email, Text, and Voice Call Notifications Robust and Configurable

More information

Dance Team Tabulation Program. Instruction Manual For use with a MAC

Dance Team Tabulation Program. Instruction Manual For use with a MAC Dance Team Tabulation Program Instruction Manual For use with a MAC Minnesota State High School League 2100 Freeway Boulevard Brooklyn Center, MN 55430 1735 763/560 2262 FAX 763/569 0499 PAGE MSHSL Dance

More information

Dance Team Tabulation Program Instruction Manual For use with a MAC Revision 2, 11/2017

Dance Team Tabulation Program Instruction Manual For use with a MAC Revision 2, 11/2017 Dance Team Tabulation Program Instruction Manual For use with a MAC Revision 2, 11/2017 Minnesota State High School League 2100 Freeway Boulevard Brooklyn Center, MN 55430-1735 763/560-2262 FAX 763/569-0499

More information

Managing Timecard Exceptions

Managing Timecard Exceptions Managing Timecard Exceptions 1. General Exception Information Exceptions are flags in timecards, reports and Genies that identify when information on the timecard deviates from the employee s schedule.

More information

STRIDES USER GUIDE Version September 2014

STRIDES USER GUIDE Version September 2014 STRIDES USER GUIDE Version 3.0 - September 2014 NEW YORK ROAD RUNNERS YOUTH AND COMMUNITY SERVICES 156 W. 56 th Street, New York, NY 10019 youngrunners@nyrr.org 646-758-9651 Copyright 2014 by New York

More information

Software Manual for FITstep Pro Version 2

Software Manual for FITstep Pro Version 2 Thank you for purchasing this product from Gopher. If you are not satisfied with any Gopher purchase for any reason at any time, contact us and we will replace the product, credit your account, or refund

More information

szen Eighteen Full Manual 2010 szen Corp

szen Eighteen Full Manual 2010 szen Corp szen Eighteen Full Manual I Full Eighteen Manual Table of Contents Part I Introduction 1 Part II Tee Sheet Operation 1 1 Using the... Tee Sheet 1 Booking Reservations... 2 Booking Reservations... for Mem

More information

Requesting Team Activation

Requesting Team Activation Requesting Team Activation After assigning players/coaches to your teams and finalizing rosters, you can request team activation for your roster to be approved by Iowa Soccer. The following rules apply

More information

ARCCOS 360 NEW USER GUIDE

ARCCOS 360 NEW USER GUIDE ARCCOS 360 NEW USER GUIDE Table of Contents 1. Getting Started a. Download & Install.2 b. Create Account....3 c. Pair Clubs..4 2. Play a. Starting a Round..5 b. Shot Editing.6 c. Shot List.7 d. Flag &

More information

Creating Your Events on the Lightseekers Website

Creating Your Events on the Lightseekers Website Creating Your Events on the Lightseekers Website Before Getting Started Ensure your store is registered on www.lightseekers.cards and that you have been given admin rights to your store section (if your

More information

McKnight Hockey Association

McKnight Hockey Association McKnight Hockey Association Electronic Evaluation Tool Manual 2013-2014 Table of Contents Introduction...3 Evaluation Tool...3 Login to OneClickIce...3 Evaluations...4 PROCESS...4 Evaluation Procedure...5

More information

Proform Software Upgrade v1.9.1 Release Notes Welcome to release of the Proform Form Book and System Builder.

Proform Software Upgrade v1.9.1 Release Notes Welcome to release of the Proform Form Book and System Builder. Proform Software Upgrade v1.9.1 Release Notes Welcome to release 1.9.1 of the Proform Form Book and System Builder. This version mainly contains the ability to analyse system returns to Best Odds Guaranteed

More information

Table Football. Introduction. Scratch. Let s make a world cup football game in Scratch! Activity Checklist. Test your Project.

Table Football. Introduction. Scratch. Let s make a world cup football game in Scratch! Activity Checklist. Test your Project. Scratch + Table Football All Code Clubs must be registered. By registering your club we can measure our impact, and we can continue to provide free resources that help children learn to code. You can register

More information

Another window pops up where you can input some parameters (called System Preferences) for your team as shown

Another window pops up where you can input some parameters (called System Preferences) for your team as shown FCSL HyTek Team Manager Training Open your installed copy of HyTek Do you already have a team database from last year? Have you updated your team database for this year? If so, some of this info below

More information

Introducing Version 7R2

Introducing Version 7R2 Introducing Version 7R2 CircuitCAM - A Tutorial Manufacturing OperationsSoftware [Type text] COPYRIGHTS AND TRADEMARKS Information in this document is subject to change without notice. Copyright 2009 Aegis

More information

SQL LiteSpeed 3.0 Installation Guide

SQL LiteSpeed 3.0 Installation Guide SQL LiteSpeed 3.0 Installation Guide Revised January 27, 2004 Written by: Jeremy Kadlec Edgewood Solutions www.edgewoodsolutions.com 888.788.2444 2 Introduction This guide outlines the SQL LiteSpeed 3.0

More information

[CROSS COUNTRY SCORING]

[CROSS COUNTRY SCORING] 2015 The Race Director Guide [CROSS COUNTRY SCORING] This document describes the setup and scoring processes employed when scoring a cross country race with Race Director. Contents Intro... 3 Division

More information

TRAP MOM FUN SHOOT 2011

TRAP MOM FUN SHOOT 2011 TRAP MOM FUN SHOOT 2011 Program Manual 2011 - Trap Mom Software - CYSSA Fun Shoot - Build 8 REQUIRED TO RUN THIS PROGRAM APPLE USERS: 1. OS X Mac Computer (Intel Preferred) 2. Printer (Laser recommended)

More information

10 The Performance Assessment Report

10 The Performance Assessment Report 10 The Performance Assessment Report CCQAS 2.8 provides the capability for online generation, completion, and review of a Performance Assessment Report (PAR) for a privileged provider for every privileging

More information

SHIMADZU LC-10/20 PUMP

SHIMADZU LC-10/20 PUMP SHIMADZU LC-10/20 PUMP Clarity Control Module ENG Code/Rev.: M091/70C Date: 24.10.2017 Phone: +420 251 013 400 DataApex Ltd. Fax: +420 251 013 401 Petrzilkova 2583/13 clarity@dataapex.com 158 00 Prague

More information

The following steps take you through creating a hytek database for a new season May 1 st to April 30 th.

The following steps take you through creating a hytek database for a new season May 1 st to April 30 th. Getting the Most out of Hytek Team Manager Proposed Standards for all BCSSA Clubs Hytek Team Manager can be a great tool for managing club data. It s also used by regional registrars and the provincial

More information

Inventory User Guide

Inventory User Guide Inventory User Guide User Guide ~ Table of Contents ~ Sign On/Select Facility Rates & Inventory Update Tee Times Load Tee Times AutoLoad Schedule Rate Fences Dashboards Revenue At Risk, Rounds & Revenue,

More information

v2.3 USER MANUAL

v2.3 USER MANUAL v2.3 USER MANUAL www.foresightsports.com Table of Contents 03 04 05 09 12 17 20 21 Activation Getting Started Play Compete Improve Settings Update Manager Glossary 04 11 05 12 03 Activation FSX Activation

More information

[XACT INTEGRATION] The Race Director. Xact Integration

[XACT INTEGRATION] The Race Director. Xact Integration 2018 The Race Director Xact Integration [XACT INTEGRATION] This document describes the steps in using the direct integration that has been built between Race Director and Xact. There are three primary

More information

uemis CONNECT: Synchronisation of the SDA with myuemis

uemis CONNECT: Synchronisation of the SDA with myuemis uemis CONNECT: Synchronisation of the SDA with myuemis 1 What is myuemis? In myuemis, your private area on the Internet portal www.uemis.com, you can visualise your dives, manage your database and transfer

More information

Allocation of referees, hours and pistes User manual of Engarde - August, 2013

Allocation of referees, hours and pistes User manual of Engarde - August, 2013 Allocation of referees, hours and pistes User manual of Engarde - August, 2013 Introduction 1. Launching the advanced allocation of referees 1.1. Poules 1.2. Tableaux 2. The advanced allocation window

More information

The ICC Duckworth-Lewis-Stern calculator. DLS Edition 2016

The ICC Duckworth-Lewis-Stern calculator. DLS Edition 2016 The ICC Duckworth-Lewis-Stern calculator DLS Edition 2016 (DLS2-2016) Installation and operating instructions Queries about program operation should be sent to: Steven.Stern@qut.edu.au 2016 International

More information

Tutorial: Adding Twitch ChatPlay

Tutorial: Adding Twitch ChatPlay Tutorial: Adding Twitch ChatPlay This tutorial walks you through the steps needed to connect the Twitch ChatPlay feature to your Twitch channel. At the end of the tutorial you will have a primitive sphere

More information

The Race Director. Race Director Go [RACE DIRECTOR GO] This document describes the implementation of Race Director Go with a beginning to end example.

The Race Director. Race Director Go [RACE DIRECTOR GO] This document describes the implementation of Race Director Go with a beginning to end example. 2018 The Race Director [RACE DIRECTOR GO] This document describes the implementation of with a beginning to end example. Contents Intro... 3 1 Setup... 3 Combining Race Director Divisions... 3 Creating

More information

Working with Marker Maps Tutorial

Working with Marker Maps Tutorial Working with Marker Maps Tutorial Release 8.2.0 Golden Helix, Inc. September 25, 2014 Contents 1. Overview 2 2. Create Marker Map from Spreadsheet 4 3. Apply Marker Map to Spreadsheet 7 4. Add Fields

More information

INSTRUCTIONS FOR ENTERING SCHEDULES THROUGH THE NCAA STATISTICS SITE AND WEBSITE PROVIDERS

INSTRUCTIONS FOR ENTERING SCHEDULES THROUGH THE NCAA STATISTICS SITE AND WEBSITE PROVIDERS INSTRUCTIONS FOR ENTERING SCHEDULES THROUGH THE NCAA STATISTICS SITE AND WEBSITE PROVIDERS SCHEDULES THROUGH WEBSITE PROVIDERS Please see pages 5-7 for directions on submitting schedules through Presto

More information

Understood, Inc. User Guide SCUBA Solutions Version 1.7

Understood, Inc. User Guide SCUBA Solutions Version 1.7 Understood, Inc. User Guide SCUBA Solutions Version 1.7 Table of Contents Revision History... 4 Introduction... 5 Purpose... 5 Scope... 5 Home... 5 Today s Dive Trips [Display]:... 6 Next Dive Trip [Display]:...

More information

The ICC Duckworth-Lewis Calculator. Professional Edition 2008

The ICC Duckworth-Lewis Calculator. Professional Edition 2008 The ICC Duckworth-Lewis Calculator Professional Edition 2008 (Version 1.1) Installation and operating instructions Any queries about operating the program should be sent to steven.stern@anu.edu.au 2008

More information

Tutorial: Setting up and importing Splat Maps from World Machine

Tutorial: Setting up and importing Splat Maps from World Machine Tutorial: Setting up and importing Splat Maps from World Machine In this tutorial I will be going over how add more detail to your world using the terrain tools to smooth and clean up your terrain, and

More information

How to Download a Red App

How to Download a Red App How to Download a Red App End to End Process Quick Reference W H O C A N D O W N L O A D / R E Q U E S T A R E D A P P Anyone with Sabre Agency eservices Admin or Ordering rights automatically has Agency

More information

SCW Web Portal Instructions

SCW Web Portal Instructions LP & JH 7/21/16 SCW Web Portal Instructions Contents Welcome to the SCW Web Portal!... 1 Accessing the SCW Web Portal... 2 Main SCW Web Portal Page... 4 My Profile... 5 Rounds History... 7 Book a Tee Time...

More information

Using the GHIN Handicap Allocation Utility with GHP Golfer

Using the GHIN Handicap Allocation Utility with GHP Golfer Using the GHIN Handicap Allocation Utility with GHP Golfer In order to gather Hole by Hole (HBH) scores to be used with the GHIN Handicap Allocation Utility, the golf club must have individual tee information

More information

A GUIDE TO THE LOOSE ENDS HOCKEY LEAGUE WEBSITE PAGE

A GUIDE TO THE LOOSE ENDS HOCKEY LEAGUE WEBSITE PAGE A GUIDE TO THE LOOSE ENDS HOCKEY LEAGUE WEBSITE PAGE 1 What Can Be Done Using The League Website: MAIN PAGE: From the main page, click on the man with the newspaper beneath the label News and Archives

More information

IRB Staff Administration Guide

IRB Staff Administration Guide March 2013 Table of Contents IRB Process Overview 3 IRB Submission Types 3 Study Process Overview 4 Ancillary Review Overview 5 Initiating Ancillary Reviews 5 Notifications and Ancillary Review Feedback

More information

Club s Homepage Use this feature to return the club s website.

Club s Homepage Use this feature to return the club s website. The first time the golfer logs into the Internet Golf Reservation System, the member # is the club assigned golfer number, the default password is 1234. The golfer will automatically be transferred to

More information

GN21 Frequently Asked Questions For Golfers

GN21 Frequently Asked Questions For Golfers Customer Support We are dedicated to offering you the best customer support possible. Our goal is to respond to your requests within 24hrs. 1. On the www.ngn.com homepage there is link labeled Help which

More information

Steltronic Focus. User Manual Manage Focus Tournaments

Steltronic Focus. User Manual Manage Focus Tournaments Steltronic Focus User Manual Manage Focus Tournaments Steltronic S.p.A. Via Artigianale 34, 25082 Botticino Sera Brescia - Italy Tel: +39 030 2190811 Fax: +39 030 2190798 Service: + 39 030 2190830 http:

More information

1. A Tutorial on LSA SwimMeet

1. A Tutorial on LSA SwimMeet SwimMeet 5.7 --1 1. A Tutorial on LSA SwimMeet Thank you for selecting LSA SwimMeet. This simple tutorial shows you how to use the program to run a swim meet. If you aren't familiar with LSA SwimMeet,

More information

Oracle ebusiness CCTM Supplier: Rate Card

Oracle ebusiness CCTM Supplier: Rate Card S1.2 CREATE A RATE CARD: INTRODUCTION... 1 S1.2.1 Create a Rate Card Online... 2 S1.2.2 Download a Rate Card Template... 16 S1.2.3 Rate Card Template Field Descriptions... 20 S1.2.4 Upload a Rate Card

More information

[CROSS COUNTRY SCORING]

[CROSS COUNTRY SCORING] 2018 The Race Director Guide [CROSS COUNTRY SCORING] This document describes the setup and scoring processes employed when scoring a cross country race with Race Director. Contents Intro... 3 Division

More information

Quintic Automatic Putting Report

Quintic Automatic Putting Report Quintic Automatic Putting Report Tutorial www.quintic.com Introduction The Quintic Automatic Putting Report is designed to work as an add on to our premier Quintic Biomechanics analysis software. Auto

More information

Registering Club players in Whole Game Club Official Training Guide

Registering Club players in Whole Game Club Official Training Guide Registering Club players in Whole Game Club Official Training Guide Version 1.1 Page 1 INTRODUCTION As part a commitment by The FA and County FAs to improve the administration experience for grassroots

More information

Dive Planet. Manual. Rev Basic User Interface. 2 How to organize your dives. 3 Statistics. 4 Location Service and Map View.

Dive Planet. Manual. Rev Basic User Interface. 2 How to organize your dives. 3 Statistics. 4 Location Service and Map View. Dive Planet Manual Rev 1.2 1 Basic User Interface 2 How to organize your dives 3 Statistics 4 Location Service and Map View 5 Settings 6 Languages 7 Buddies and guide 8 Backup and restore of the data 9

More information

How to Set Up Your League

How to Set Up Your League From www.pcdrafter.com How to Set Up Your League The following tutorial will help you quickly see how easy PC Drafter is to use as you configure your fantasy league with your own rules, teams, draft order

More information

FOOTBALL WEST. Sports TG User Guide. Club Administrators

FOOTBALL WEST. Sports TG User Guide. Club Administrators FOOTBALL WEST Sports TG User Guide Club Administrators CONTENTS What is Sports TG 3 New Users 4 Current Sports TG Users 5 User Management 8 Give Team Level Access 9 Deleting a User 11 Team Entry 13 Navigating

More information

GOLF LIFE MANAGEMENT SYSTEM Member Manual

GOLF LIFE MANAGEMENT SYSTEM Member Manual GOLF LIFE MANAGEMENT SYSTEM Member Manual CONTENTS: 1.Activate your account 2.Add Courses to Your List 3.Post Scores 4.Edit Scores 5.Frequently Asked Questions HANDICAP ACCOUNT ACTIVATION Before using

More information

Ameren Oracle ebusiness CCTM Supplier

Ameren Oracle ebusiness CCTM Supplier CCTM PROCESS... 1 S1.1 CREATE A RATE CARD: INTRODUCTION... 2 S1.1.1 Create a Rate Card Online... 3 S1.1.2 Download a Rate Card Template... 29 S1.1.3 Rate Card Template Field Descriptions... 40 S1.1.4 Upload

More information

Inventor Hole Notes: How to Annotate with Drill Numbers Not Diameters

Inventor Hole Notes: How to Annotate with Drill Numbers Not Diameters TECHNICAL WHITEPAPER Inventor Hole Notes: How to Annotate with Drill Numbers Not Diameters Introduction Hole notes in Inventor are a great drawing aid that can save a drafter significant amounts of time

More information

Apple Device Instruction Guide- High School Game Center (HSGC) Football Statware

Apple Device Instruction Guide- High School Game Center (HSGC) Football Statware Apple Device Instruction Guide- High School Game Center (HSGC) Football Statware Getting Started 1. Download the app on your Apple device a. Open the app store b. Search for Digital Scout, Inc. c. Locate

More information

ELIMINATOR COMPETITION DRAG RACE Program Manual Firm Ver 4.11

ELIMINATOR COMPETITION DRAG RACE Program Manual Firm Ver 4.11 ELIMINATOR COMPETITION DRAG RACE Program Manual Firm Ver 4.11 The Portatree Eliminator Super 2000 Competition Track Timer can be used with an IBM Compatible Personal Computer connected through Com Port

More information

Operating Manual. SUPREMA Calibration. Software for Fire and Gas Warning Units. Order No.: /01. MSAsafety.com

Operating Manual. SUPREMA Calibration. Software for Fire and Gas Warning Units. Order No.: /01. MSAsafety.com Operating Manual Software for Fire and Gas Warning Units Order No.: 10154656/01 MSAsafety.com MSA Europe GmbH Schlüsselstrasse 12 8645 Rapperswil-Jona Switzerland info.ch@msasafety.com www.msasafety.com

More information

Basic Tryout Registration Set Up. Using the pre-loaded folder set up from US Soccer Connect

Basic Tryout Registration Set Up. Using the pre-loaded folder set up from US Soccer Connect Basic Tryout Registration Set Up Using the pre-loaded folder set up from US Soccer Connect Step 1 - Choose the SELECT folder on the left side of the screen if these folders have been set up for you. Step

More information

To Logon On to your tee sheet, start by opening your browser. (NOTE: Internet Explorer V. 6.0 or greater is required.)

To Logon On to your tee sheet, start by opening your browser. (NOTE: Internet Explorer V. 6.0 or greater is required.) 1. Log-On To Logon On to your tee sheet, start by opening your browser. (NOTE: Internet Explorer V. 6.0 or greater is required.) (NOTE: Logon ID s must be 7 characters or more and passwords are case sensitive.)

More information

Quick Start Guide. For Gold and Silver Editions

Quick Start Guide. For Gold and Silver Editions Quick Start Guide For Gold and Silver Editions Table of Content Introduction... 3 Prerequisites... 3 Installation and Setup... 4 Download and Install QQEvolution 2... 4 Create Users... 8 Create Agent/CSR/Producer...

More information

Wire Buddy Manual IOpath Software

Wire Buddy Manual IOpath Software Wire Buddy Manual IOpath Software Wire Buddy is a calculation reference tool for Electricians and Maintenance personnel. Wire Buddy was created for the Maintenance Electrician. There are many occasions

More information

League Manager Tutorial

League Manager Tutorial League Manager Tutorial ===================================================================================== This tutorial will give you a quick overview of the League Manager. In this tutorial you will:

More information

1 Document history Version Date Comments

1 Document history Version Date Comments V1.4 Contents 1 Document history... 2 2 What is TourneyKeeper?... 3 3 Creating your username and password... 4 4 Creating a tournament... 5 5 Editing a tournament... 8 6 Adding players to a tournament...

More information

Team BUSY : Excise register RG-23 A-11, provision made to input starting S.No.

Team BUSY : Excise register RG-23 A-11, provision made to input starting S.No. The BUSY development team is proud to announce the immediate release of BUSY 16 ( Rel 4.0 ) with following feedbacks implemented and bugs rectified : Statutory Changes Team BUSY : Delhi VAT ereturn as

More information