invoke self "createradio" using radio "radio one " line 120 pos 250

Size: px
Start display at page:

Download "000350 invoke self "createradio" using radio 000360 "radio one " line 120 pos 250"

Transcription

1 Pagina:1/ IDENTIFICATION DIVISION PROGRAM-ID. guitest ENVIRONMENT DIVISION DATA DIVISION WORKING-STORAGE SECTION check1 pic x check usage pointer external parent usage pointer radio usage pointer external radio1 usage pointer external radio2 usage pointer external button usage pointer external button1 usage pointer external button2 usage pointer external edit usage pointer external edit1 usage pointer external edit2 usage pointer external label1 usage pointer external label2 usage pointer external label3 usage pointer external label4 usage pointer external label5 usage pointer external label6 usage pointer external combo usage pointer external frame usage pointer external. 01 stringa pic x(10) value "provaxx" copy "global" PROCEDURE DIVISION invoke gtk-form "Openform" move "Example form" to "title" of self move gtk-true to "modal" of gtk-form. always true... if "modal" of gtk-form = gtk-true display "this is a modal window" else display "not modal". adjust size using single property move 800 to "width" of gtk-form move 250 to "height" of gtk-form. or adjust invoking the appropriate method... invoke gtk-form "setsize" using invoke self "createframe" using frame "Frame's title " line 1 pos 1 invoke frame "setsize" using

2 Pagina:2/ invoke self "createradio" using radio "radio one " line 120 pos 250 invoke radio "addradio" using radio "radio two " line 120 pos 350 invoke radio "addradio" using radio "radio three " line 120 pos 450 invoke radio "addradio" using radio "radio four " line 120 pos 550 move gtk-true to "value" of radio invoke self "createbutton" using button "Assign as title" line 180 pos invoke self "createbutton" using button "Done" line 180 pos move 80 to "width" of button if the above statement is not declared the "createbutton" calculate it move 35 to "height" of button invoke self "createbutton" using button "Invoke another form" line 180 pos move 80 to "width" of button move 35 to "height" of button invoke self "createtext" using edit line 10 pos move 180 to "width" of edit move 25 to "height" of edit invoke self "createtext" using edit line 51 pos move 180 to "width" of edit move 25 to "height" of edit invoke self "createtext" using edit line 91 pos move 180 to "width" of edit move 25 to "height" of edit move "Title" of self to "Text" of edit invoke gtk-form "createlabel" using label "Window's title" line 11 pos 10 move "red" to "forecolor" of label move 100 to "width" of label move 25 to "height" of label invoke gtk-form "createlabel" using label "What you wrote" line 51 pos 10

3 Pagina:3/6 move "red" to "backcolor" of label1. move "blue" to "forecolor" of label move 100 to "width" of label move 25 to "height" of label invoke self "createcheck" using check "Upper case" line 120 pos 20 move "red" to "backcolor" of check. move "blue" to "forecolor" of check invoke self "createcombo" using combo line 10 pos 300 invoke combo "setsize" using invoke combo "addstring" using "test window" invoke combo "addstring" using "another test" invoke combo "addstring" using "last string". move "red" to "backcolor" of combo. move "blue" to "forecolor" of combo invoke gtk-form "Closed" using "exitform" invoke button "clicked" using "click" invoke button1 "clicked" using "byebye" invoke button2 "clicked" using "callform" invoke check "clicked" using "testvalues" invoke combo "changed" using "combostring" invoke gtk-form "showform" invoke gtk-form "runform" STOP RUN end program guitest identification division program-id. exitform data division working-storage section testo pic x(100) button usage pointer external edit usage pointer external edit1 usage pointer external check usage pointer external copy "global" procedure division

4 Pagina:4/ move "title" of gtk-form to testo display " exitform " testo invoke gtk-form "closeform" exit program end program exitform identification division program-id. click data division working-storage section button usage pointer external campo pic x(100) testo pic x(100) edit usage pointer external edit1 usage pointer external check usage pointer external valore pic s9(5) comp copy "global" linkage section gtk-window usage pointer gtk-data usage pointer procedure division using by value gtk-window by value gtk-data move "text" of edit to "title" of gtk-form if "value" of check = GTK-ON move "text" of edit to testo move function upper-case(testo) to "text" of edit else move "text" of edit to "text" of edit exit program end program click identification division program-id. testvalues data division working-storage section button usage pointer external campo pic x(100) testo pic x(100) edit usage pointer external edit1 usage pointer external edit2 usage pointer external check usage pointer external valore pic s9(5) comp copy "global" linkage section gtk-window usage pointer gtk-data usage pointer

5 Pagina:5/ procedure division using by value gtk-window by value gtk-data move "value" of check to valore if valore = GTK-OFF move "value off" to "text" of edit2 move "red" to "backcolor" of EDIT2 move "blue" to "forecolor" of EDIT else move "value on" to "text" OF edit2 move "blue" to "backcolor" of EDIT2 move "green" to "forecolor" of EDIT the same using direct conditional access to the "value" property IF "value" of check = GTK-ON MOVE "value on from inline IF" TO "text" of edit exit program end program testvalues identification division program-id. byebye data division working-storage section edit usage pointer external edit1 usage pointer external check usage pointer external copy "global" procedure division display "See you next time from byebye" invoke gtk-form "closeform" invoke gtk-form "stoprun" exit program end program byebye identification division program-id. callform data division working-storage section this-form usage pointer copy "global" procedure division move "parent" of gtk-form to this-form.

6 Pagina:6/6 display "parent:" gtk-form " is " this-form. if "is-widget" of gtk-form = GTK-TRUE Display "gtk-form:" gtk-form " e' un widget" else Display "gtk-form:" gtk-form " NON e' un widget". if "is-widget" of this-form = GTK-TRUE Display "this-form:" this-form " e' un widget" else Display "this-form:" this-form " NON e' un widget". call "lancio2" exit program end program callform identification division program-id. combostring data division working-storage section button usage pointer external campo pic x(100) testo pic x(100) edit usage pointer external edit1 usage pointer external edit2 usage pointer external check usage pointer external valore pic s9(5) comp combo usage pointer external copy "global" linkage section gtk-window usage pointer gtk-data usage pointer procedure division using by value gtk-window by value gtk-data move "selstring" of gtk-window to "text" of edit. if "selstring" of gtk-window = "last string" move "you have chosen last item" to "Text" OF EDIT exit program end program combostring.

8 CREATING FORM WITH FORM WIZARD AND FORM DESIGNER

8 CREATING FORM WITH FORM WIZARD AND FORM DESIGNER 8 CREATING FORM WITH FORM WIZARD AND FORM DESIGNER 8.1 INTRODUCTION Forms are very powerful tool embedded in almost all the Database Management System. It provides the basic means for inputting data for

More information

HTML Form Widgets. Review: HTML Forms. Review: CGI Programs

HTML Form Widgets. Review: HTML Forms. Review: CGI Programs HTML Form Widgets Review: HTML Forms HTML forms are used to create web pages that accept user input Forms allow the user to communicate information back to the web server Forms allow web servers to generate

More information

MANUAL FOR WEBSITE DEVELOPMENT USING WORDPRESS FOR RESEARCH GROUP SITE

MANUAL FOR WEBSITE DEVELOPMENT USING WORDPRESS FOR RESEARCH GROUP SITE MANUAL FOR WEBSITE DEVELOPMENT USING WORDPRESS FOR RESEARCH GROUP SITE 0 Table of Content Site Full View 2 I How to create a new Post? 3 II How to create Post Category? 4 III How to create new Page? 6

More information

SAPScript. A Standard Text is a like our normal documents. In Standard Text, you can create standard documents like letters, articles etc

SAPScript. A Standard Text is a like our normal documents. In Standard Text, you can create standard documents like letters, articles etc SAPScript There are three components in SAPScript 1. Standard Text 2. Layout Set 3. ABAP/4 program SAPScript is the Word processing tool of SAP It has high level of integration with all SAP modules STANDARD

More information

Creating Fill-able Forms using Acrobat 8.0: Part 1

Creating Fill-able Forms using Acrobat 8.0: Part 1 Creating Fill-able Forms using Acrobat 8.0: Part 1 The first step in creating a fill-able form in Adobe Acrobat is to generate the form with all its formatting in a program such as Microsoft Word. Then

More information

Introduction to Visual Basic and Visual C++ Introduction to Control. TextBox Control. Control Properties. Lesson 5

Introduction to Visual Basic and Visual C++ Introduction to Control. TextBox Control. Control Properties. Lesson 5 Introduction to Visual Basic and Visual C++ Introduction to Control Lesson 5 TextBox, PictureBox, Label, Button, ListBox, ComboBox, Checkbox, Radio Button I154-1-A A @ Peter Lo 2010 1 I154-1-A A @ Peter

More information

Homepage / Login FAQ - VENDOR MANAGEMENT SYSTEM

Homepage / Login FAQ - VENDOR MANAGEMENT SYSTEM Homepage / Login To access the Login dropdown box, click on the Login hyperlink on the upper right side of the page Returning users enter their existing credentials, click on the Login button, and are

More information

Quick Guide. pdoc Forms Designer. Copyright Topaz Systems Inc. All rights reserved.

Quick Guide. pdoc Forms Designer. Copyright Topaz Systems Inc. All rights reserved. Quick Guide pdoc Forms Designer Copyright Topaz Systems Inc. All rights reserved. For Topaz Systems, Inc. trademarks and patents, visit www.topazsystems.com/legal. Table of Contents Overview... 3 pdoc

More information

Customization Manager in Microsoft Dynamics SL 7.0

Customization Manager in Microsoft Dynamics SL 7.0 Customization Manager in Microsoft Dynamics SL 7.0 8965: Customization Manager in Microsoft Dynamics SL 7.0 (1 Day) About this Course This one-day course is designed to give individuals a comprehensive

More information

Time Off Tracker Supervisor Instructions

Time Off Tracker Supervisor Instructions Time Off Tracker Supervisor Instructions Contents Opening the Time Off Tracker... 1 Approving Leave Time... 2 Viewing Reports... 6 Submitting a Time Card on Behalf of an Employee (Proxy View)... 8 Opening

More information

Gravity Forms: Creating a Form

Gravity Forms: Creating a Form Gravity Forms: Creating a Form 1. To create a Gravity Form, you must be logged in as an Administrator. This is accomplished by going to http://your_url/wp- login.php. 2. On the login screen, enter your

More information

This training module reviews the CRM home page called the Dashboard including: - Dashboard My Activities tab. - Dashboard Pipeline tab

This training module reviews the CRM home page called the Dashboard including: - Dashboard My Activities tab. - Dashboard Pipeline tab This training module reviews the CRM home page called the Dashboard including: - Dashboard My Activities tab - Dashboard Pipeline tab - My Meetings Dashlet - My Calls Dashlet - My Calendar Dashlet - My

More information

Using the NPIN Customizable Testing and Treatment Service Referral Widget. Help Guide for Prevention Partners

Using the NPIN Customizable Testing and Treatment Service Referral Widget. Help Guide for Prevention Partners Using the NPIN Customizable Testing and Treatment Service Referral Widget Help Guide for Prevention Partners Overview Create a Large, Full Page Widget Create a Medium Widget Create a Small Widget Overview

More information

First Bytes Programming Lab 2

First Bytes Programming Lab 2 First Bytes Programming Lab 2 This lab is available online at www.cs.utexas.edu/users/scottm/firstbytes. Introduction: In this lab you will investigate the properties of colors and how they are displayed

More information

To view your team, including your universal profile, please complete the following steps: Result: Your universal bio page will display.

To view your team, including your universal profile, please complete the following steps: Result: Your universal bio page will display. Overview The Milwaukee County Training and Development Center is the new cloud-based Learning Management System (LMS) for Milwaukee County. The LMS will allow you to track your or your direct reports training,

More information

EXERCISE 4. Load Cases Form. Objectives: Add a callback for additional analysis information. PATRAN 305 Exercise Workbook 4-1

EXERCISE 4. Load Cases Form. Objectives: Add a callback for additional analysis information. PATRAN 305 Exercise Workbook 4-1 EXERCISE 4 Load Cases Form Objectives: Add a callback for additional analysis information PATRAN 305 Exercise Workbook 4-1 4-2 PATRAN 305 Exercise Workbook Exercise 4 Problem Description: Write a PCL Class

More information

WebSphere Business Monitor V6.2 KPI history and prediction lab

WebSphere Business Monitor V6.2 KPI history and prediction lab Copyright IBM Corporation 2009 All rights reserved IBM WEBSPHERE BUSINESS MONITOR 6.2 LAB EXERCISE WebSphere Business Monitor V6.2 KPI history and prediction lab What this exercise is about... 1 Lab requirements...

More information

Auto Clicker Tutorial

Auto Clicker Tutorial Auto Clicker Tutorial This Document Outlines Various Features of the Auto Clicker. The Screenshot of the Software is displayed as below and other Screenshots displayed in this Software Tutorial can help

More information

Enhanced Search Results for Service Providers (SCR 8611A)

Enhanced Search Results for Service Providers (SCR 8611A) The current structure when creating Service Provider information requires that an individual record is created for each unique address. This results in many duplicate and inaccurate data records and increased

More information

FrontPage 2003: Forms

FrontPage 2003: Forms FrontPage 2003: Forms Using the Form Page Wizard Open up your website. Use File>New Page and choose More Page Templates. In Page Templates>General, choose Front Page Wizard. Click OK. It is helpful if

More information

SeeVogh User Guide. Date: March 26 th, 2012

SeeVogh User Guide. Date: March 26 th, 2012 SeeVogh User Guide Date: March 26 th, 2012 About This Guide This guide provides users an overview of the features found in the SeeVogh PC client software. This guide does not discuss the use of the web

More information

National Database System (NDS-32) Macro Programming Standards For Microsoft Word Annex - 8

National Database System (NDS-32) Macro Programming Standards For Microsoft Word Annex - 8 National Database System () Macro Programming Standards For Microsoft Word Annex - 8 02/28/2000 /10:23 AM ver.1.0.0 Doc. Id: RNMSWS softcopy : word page : 1/6 Objectives A well-defined system needs to

More information

MAGELLAN CONNECTING TO CASH REGISTER EXPRESS

MAGELLAN CONNECTING TO CASH REGISTER EXPRESS MAGELLAN CONNECTING TO CASH REGISTER EXPRESS Programming codes are for the following products: Magellan 8100 Magellan 8200 Magellan 8300 Magellan 8400 Magellan 8500 Magellan 8500XT Magellan 8500XTS Magellan

More information

Scheduling/ Calendar Software Training Manual

Scheduling/ Calendar Software Training Manual In order to enter the Scheduling Software, click on Appointment button on the home page in Clinician Gateway. Once you click on the Appointment button an additional browser page called the Physician s

More information

Go Ria / Mobile. Automatic Conversion of Magic / unipaas Applications to RIA / Mobile

Go Ria / Mobile. Automatic Conversion of Magic / unipaas Applications to RIA / Mobile Go Ria / Mobile Automatic Conversion of Magic / unipaas Applications to RIA / Mobile The advanced patented technology developed by Go Up Technology experts, enables automatic conversion of Magic applications

More information

Joomla Article Advanced Topics: Table Layouts

Joomla Article Advanced Topics: Table Layouts Joomla Article Advanced Topics: Table Layouts An HTML Table allows you to arrange data text, images, links, etc., into rows and columns of cells. If you are familiar with spreadsheets, you will understand

More information

User Tutorial on Changing Frame Size, Window Size, and Screen Resolution for The Original Version of The Cancer-Rates.Info/NJ Application

User Tutorial on Changing Frame Size, Window Size, and Screen Resolution for The Original Version of The Cancer-Rates.Info/NJ Application User Tutorial on Changing Frame Size, Window Size, and Screen Resolution for The Original Version of The Cancer-Rates.Info/NJ Application Introduction The original version of Cancer-Rates.Info/NJ, like

More information

7. In the boxed unlabeled field, enter the last 4 digits of your Social Security number.

7. In the boxed unlabeled field, enter the last 4 digits of your Social Security number. CREATE YOUR MYVIEW LOGIN To access myview while ensuring security, you will be given an encrypted access key token. You will use this token the first time you log into myview. Once you have successfully

More information

Mobitalker User Guide (Symbian)

Mobitalker User Guide (Symbian) Mobitalker User Guide (Symbian) 1 Download and Installation To download the Mobitalker app, visit the Ovi Store using your mobile device and search for Mobitalker. Or you can download the Mobitalker app

More information

PDF Web Form. Projects 1

PDF Web Form. Projects 1 Projects 1 In this project, you ll create a PDF form that can be used to collect user data online. In this exercise, you ll learn how to: Design a layout for a functional form. Add form fields and set

More information

How do I Install and Configure MS Remote Desktop for the Haas Terminal Server on my Mac?

How do I Install and Configure MS Remote Desktop for the Haas Terminal Server on my Mac? Enterprise Computing & Service Management How do I Install and Configure MS Remote Desktop for the Haas Terminal Server on my Mac? In order to connect remotely to a PC computer from your Mac, we recommend

More information

BATS Global Markets, Inc. U.S. Data Product Declarations User Manual

BATS Global Markets, Inc. U.S. Data Product Declarations User Manual BATS Global Markets, Inc. U.S. Data Product Declarations User Manual Overview of the Data Product Declarations Tool and Uncontrolled / Controlled Data Distributor Reporting Obligations The Data Product

More information

Glogster.com. Type code from box above

Glogster.com. Type code from box above Glogster.com A glog is like a poster, only better. Glogs allow you to create an online poster using photographs, images, graphics, video files and sound files. Glogs allow you to add hyperlinks to other

More information

Flash MX Image Animation

Flash MX Image Animation Flash MX Image Animation Introduction (Preparing the Stage) Movie Property Definitions: Go to the Properties panel at the bottom of the window to choose the frame rate, width, height, and background color

More information

How To Write A Cq5 Authoring Manual On An Ubuntu Cq 5.2.2 (Windows) (Windows 5) (Mac) (Apple) (Amd) (Powerbook) (Html) (Web) (Font

How To Write A Cq5 Authoring Manual On An Ubuntu Cq 5.2.2 (Windows) (Windows 5) (Mac) (Apple) (Amd) (Powerbook) (Html) (Web) (Font Adobe CQ5 Authoring Basics Print Manual SFU s Content Management System SFU IT Services CMS Team ABSTRACT A summary of CQ5 Authoring Basics including: Setup and Login, CQ Interface Tour, Versioning, Uploading

More information

HOW TO CLAIM ACORD DIGITAL CREDENTIALS: INDIVIDUAL BADGES

HOW TO CLAIM ACORD DIGITAL CREDENTIALS: INDIVIDUAL BADGES Congratulations on receiving an ACORD Digital Credential! Follow the steps below to create your credential profile page, claim your badge, and display it on your social media pages or email signature.

More information

Form Builder in Agile CRM

Form Builder in Agile CRM Form Builder in Agile CRM Agile CRM pulls in visitor information entered, through the web forms on your website & creates a contact with all the given attributes, in the CRM. It integrates with various

More information

2. More Use of the Mouse in Windows 7

2. More Use of the Mouse in Windows 7 65 2. More Use of the Mouse in Windows 7 The mouse has become an essential part of the computer. But it is actually a relatively new addition. The mouse did not become a standard part of the PC until Windows

More information

CONFIGURING VIRTUAL TERMINAL: This is the screen you will see when you first open Virtual Terminal

CONFIGURING VIRTUAL TERMINAL: This is the screen you will see when you first open Virtual Terminal CONFIGURING VIRTUAL TERMINAL: This is the screen you will see when you first open Virtual Terminal Before you begin you must configure the Options for Virtual Terminal. Click on the Options drop down menu

More information

How to Copy Photos to a CD Using Microsoft Windows XP or Microsoft Windows Vista

How to Copy Photos to a CD Using Microsoft Windows XP or Microsoft Windows Vista How to Copy Photos to a CD Using Microsoft Windows XP or Microsoft Windows Vista There are many occasions, where you will want to copy (sometimes called burn ) photo files to a CD. You may be creating

More information

Vizit 4.1 Installation Guide

Vizit 4.1 Installation Guide Vizit 4.1 Installation Guide Contents Running the Solution Installer... 3 Installation Requirements... 3 The Solution Installer... 3 Activating your License... 7 Online Activation... 7 Offline Activation...

More information

FedTraveler.com. Log o FedTraveler.com using your valid Member ID and PIN.

FedTraveler.com. Log o FedTraveler.com using your valid Member ID and PIN. FedTraveler.com Log o FedTraveler.com using your valid Member ID and PIN. Page 3 / 38 FedTraveler.com S een will refresh to Organizer page Page 4 / 38 Organizer 3. On he Organizer Page, click the link

More information

ADOBE ACROBAT 7.0 CREATING FORMS

ADOBE ACROBAT 7.0 CREATING FORMS ADOBE ACROBAT 7.0 CREATING FORMS ADOBE ACROBAT 7.0: CREATING FORMS ADOBE ACROBAT 7.0: CREATING FORMS...2 Getting Started...2 Creating the Adobe Form...3 To insert a Text Field...3 To insert a Check Box/Radio

More information

How do I Install and Configure MS Remote Desktop for the Haas Terminal Server on my Mac?

How do I Install and Configure MS Remote Desktop for the Haas Terminal Server on my Mac? How do I Install and Configure MS Remote Desktop for the Haas Terminal Server on my Mac? In order to connect remotely to a PC computer from your Mac, we recommend the MS Remote Desktop for Mac client.

More information

Using Lei Shing Hong Securities Limited (LSHS) Online Trading Services

Using Lei Shing Hong Securities Limited (LSHS) Online Trading Services Using Lei Shing Hong Securities Limited (LSHS) Online Trading Services Now, you can take advantage of our fast and secure Online Trading Services to place order directly to the market. You may also monitor

More information

Visual Basic and Databases

Visual Basic and Databases 1-1 1. Introducing Preview In this first chapter, we will do a quick overview of what the course entails. We will discuss what you need to complete the course. We ll take a brief look at what databases

More information

Viewing Imaged Travel Expense Reports in the Travel Reimbursement System

Viewing Imaged Travel Expense Reports in the Travel Reimbursement System Viewing Imaged Travel Expense Reports in the Travel Reimbursement System Effective September 15, 2008, the Travel & Entertainment Office converted the handling of Travel Expense Reports from paper to electronic

More information

6. If you want to enter specific formats, click the Format Tab to auto format the information that is entered into the field.

6. If you want to enter specific formats, click the Format Tab to auto format the information that is entered into the field. Adobe Acrobat Professional X Part 3 - Creating Fillable Forms Preparing the Form Create the form in Word, including underlines, images and any other text you would like showing on the form. Convert the

More information

Teaching: The Psychology Department Courses Database. Quick Reference Guide by Craig Rypstat

Teaching: The Psychology Department Courses Database. Quick Reference Guide by Craig Rypstat Teaching: The Psychology Department Courses Database Quick Reference Guide by Craig Rypstat Part I: Entering Your Projected Classes 1. Navigate to: http://glial2.psych.wisc.edu/teaching/ Tutorial: Page

More information

Outlook Web Access 2003 New Features Guide

Outlook Web Access 2003 New Features Guide Global Information Services Outlook Web Access 2003 New Features Guide Table of Contents After following a link, click on the toolbar to return to the Table of Contents. OWA 2003 2 Log in Screen 2 OWA

More information

Stripe Event Trigger

Stripe Event Trigger Stripe Event Trigger Agile CRM integrates with many billing widgets including Stripe. The Stripe CRM integration lets you track your customer payments, provides 2-way sync and trigger campaigns following

More information

Form Tutorial. Overview. Creating a Form. Insert a Form

Form Tutorial. Overview. Creating a Form. Insert a Form Form Tutorial Overview Note: The information on this page pertains to the old WYSIWYG Editor. For information about the new JustEdit Editor and the JustEdit toolbar, visit the JustEdit page. Building a

More information

How do I Create Calmail Mailing List?

How do I Create Calmail Mailing List? How do I Create Calmail Mailing List? Enterprise Computing & Service Management In order to create a Calmail mailing list, you must first have a Calmail account. If you do not yet have a Calmail account,

More information

Adding Digital Signature and Encryption in Outlook

Adding Digital Signature and Encryption in Outlook Adding Digital Signature and Encryption in Outlook Using Outlook, the email messages can be signed and encrypted by a digital certificate. To digitally sign a message in Outlook some conditions must be

More information

MODEL ANALYSES AND GUIDANCE (MAG) WEB APPLICATION

MODEL ANALYSES AND GUIDANCE (MAG) WEB APPLICATION MODEL ANALYSES AND GUIDANCE (MAG) WEB APPLICATION MAG User s Manual (Documentation Version 3.10) April 2016 Prepared by: Systems Integration Branch/Software Development Team NCEP Central Operations NOAA

More information

Assigning Access and Roles to FAMTest

Assigning Access and Roles to FAMTest Assigning Access and Roles to FAMTest Step by step instructions for how to assign access to FAMTest so that users can learn and practice on the new Sit/209 program. Notes: A new user must first complete

More information

Creating and Using Links and Bookmarks in PDF Documents

Creating and Using Links and Bookmarks in PDF Documents Creating and Using Links and Bookmarks in PDF Documents After making a document into a PDF, there may be times when you will need to make links or bookmarks within that PDF to aid navigation through the

More information

my.scouting Tools Training Dashboard Trained Exception Report YPT Aging Report Trained Leader Rpt Add Training Search Training View Training

my.scouting Tools Training Dashboard Trained Exception Report YPT Aging Report Trained Leader Rpt Add Training Search Training View Training my.scouting Tools Training Dashboard YPT Aging my.scouting Tools is best experienced using Firefox 14 or greater, Google Chrome 21 or greater, Apple Safari 6 or greater, and Internet Explorer 9.0 or greater.

More information

TBR System Office Performance Management Employee s Guide

TBR System Office Performance Management Employee s Guide TBR System Office Performance Management Employee s Guide A Step-By-Step Employee Guide for completing performance evaluations in the PeopleAdmin Performance Management Suite PeopleAdmin 7.0 is a multi-functional

More information

Creating a Form. A form is something that is created allowing users to enter information in a more visual manner than a datasheet view.

Creating a Form. A form is something that is created allowing users to enter information in a more visual manner than a datasheet view. Creating a Form A form is something that is created allowing users to enter information in a more visual manner than a datasheet view. In the database object window, click on the word Forms Double Click

More information

Important Information and Setup Instructions

Important Information and Setup Instructions Important Information and Setup Instructions This CD-ROM is set up for Adobe Reader version 9.0 or higher. If you must use an earlier version (e.g. because Adobe does not have a 9.0 or later version available

More information

A Lead is a record of a short or long term sale possibility. Note: In Selltis, a Lead is an Activity Log with the Purpose set as Lead

A Lead is a record of a short or long term sale possibility. Note: In Selltis, a Lead is an Activity Log with the Purpose set as Lead Learning Objectives A Lead is a record of a short or long term sale possibility. Note: In Selltis, a Lead is an Activity Log with the Purpose set as Lead Leads are very important Selltis forms because,

More information

Managing Payment Information

Managing Payment Information Managing Payment Information Online Payment functionality allows the ability to register, modify and delete payment methods. These tools enable a transaction to occur and provide users with the ability

More information

Setting up Direct Deposit of Refunds using Touchnet Student Account Center

Setting up Direct Deposit of Refunds using Touchnet Student Account Center Setting up Direct Deposit of Refunds using Touchnet Student Account Center Gordon College utilizes Touchnet s Student Bill + Payment application to allow for online viewing and refunding of a student s

More information

Working with Video in PowerPoint 2010

Working with Video in PowerPoint 2010 518 442-3608 Working with Video in PowerPoint 2010 Adding video to a PowerPoint presentation can be very useful. In this handout we will explore many of the program s video options. When you start PowerPoint

More information

Reservation, Booking, POS, Management for Youth Hostels, Hostels and Hotels

Reservation, Booking, POS, Management for Youth Hostels, Hostels and Hotels Reservation, Booking, POS, Management for Youth Hostels, Hostels and Hotels The ASSD reservation and booking program is a flexible standard program, which can be taken into operation directly after the

More information

Quick Instructions for Employee Self Service. 1) On the UAMS HR Website (www.hr.uams.edu) under Quick Links click on Employee Self Service

Quick Instructions for Employee Self Service. 1) On the UAMS HR Website (www.hr.uams.edu) under Quick Links click on Employee Self Service Quick Instructions for Employee Self Service 1) On the UAMS HR Website (www.hr.uams.edu) under Quick Links click on Employee Self Service 2) Enter your domain name and password (the same one you use to

More information

How to create buttons and navigation bars

How to create buttons and navigation bars How to create buttons and navigation bars Adobe Fireworks CS3 enables you to design the look and functionality of buttons, including links and rollover features. After you export these buttons from Fireworks,

More information

Abstract. Introduction. System Requirement. GUI Design. Paper AD17-2011

Abstract. Introduction. System Requirement. GUI Design. Paper AD17-2011 Paper AD17-2011 Application for Survival Analysis through Microsoft Access GUI Zhong Yan, i3, Indianapolis, IN Jie Li, i3, Austin, Texas Jiazheng (Steven) He, i3, San Francisco, California Abstract This

More information

Medical Practice Management Software EzMedPro http://www.dsoftsystems.com. User Manual For

Medical Practice Management Software EzMedPro http://www.dsoftsystems.com. User Manual For User Manual For Table of Contents INSTALLATION... 4 Windows Install... 4 EzMedPro Setup... 8 Environment Setup... 10 Setup Mode:... 10 Network Setup... 11 Standalone Mode... 12 Environment Setup... 13

More information

HOWTO annotate documents in Microsoft Word

HOWTO annotate documents in Microsoft Word HOWTO annotate documents in Microsoft Word Introduction This guide will help new users markup, make corrections, and track changes in a Microsoft Word document. These instructions are for Word 2007. The

More information

DASHBOARD FEATURES OVERVIEW

DASHBOARD FEATURES OVERVIEW FAITAS TRAINING APPLICATION SYSTEM DASHBOARD FEATURES OVERVIEW Updated February 016 Melissa A. Starinsky, Director www.fai.gov FAITAS DASHBOARD FEATURES INTRODUCTION The Federal Acquisition Institute Training

More information

COP25- F&A Rate, Period and Exclusions Popup

COP25- F&A Rate, Period and Exclusions Popup COP25- F&A Rate, Period and Exclusions Popup Summary...1 Purpose...2 Screen Group...2 Account/CC Selection...3 F&A Rate, Periods and Exclusions Popup:...4 Report Generation...9 Page Access...9 Summary

More information

CAQH ProView. Practice Manager and Provider Frequently Asked Questions

CAQH ProView. Practice Manager and Provider Frequently Asked Questions CAQH ProView Practice Manager and Provider Frequently Asked s *s related to the CAQH ProView Practice Manager Module begin on page 2. *s on the CAQH ProView system for providers begin on page 6. 1 P age

More information

This document provides instructions for updating and running the free versions of Ad- Aware, Spybot Search & Destroy, and Spyware Blaster.

This document provides instructions for updating and running the free versions of Ad- Aware, Spybot Search & Destroy, and Spyware Blaster. How to Use Anti-Spyware Tools Spyware are programs that get installed on your computer without your permission. Some spyware is relatively harmless, and some spyware can destroy your computer. Most anti-virus

More information

Barcode Support. Table of Contents

Barcode Support. Table of Contents Barcode Support Table of Contents Barcode Scanning and Labeling Support... 2 Scanning in Barcodes... 2 Basic Scanning Techniques... 2 Quick Barcode Scanning... 2 Using the Quick Find Fields with Scanners...

More information

Customizing Confirmation Text and Emails for Donation Forms

Customizing Confirmation Text and Emails for Donation Forms Customizing Confirmation Text and Emails for Donation Forms You have complete control over the look & feel and text used in your donation confirmation emails. Each form in Sphere generates its own confirmation

More information

How to Use the Cypress Report Distribution Service to Access Reports

How to Use the Cypress Report Distribution Service to Access Reports How to Use the Cypress Report Distribution Service to Access Reports First, if the Cypress client is not already installed on your computer, follow the installation instructions found at https://cypress.doit.wisc.edu/.

More information

INTRODUCTION TO COMPUTER PROGRAMMING. Richard Pierse. Class 7: Object-Oriented Programming. Introduction

INTRODUCTION TO COMPUTER PROGRAMMING. Richard Pierse. Class 7: Object-Oriented Programming. Introduction INTRODUCTION TO COMPUTER PROGRAMMING Richard Pierse Class 7: Object-Oriented Programming Introduction One of the key issues in programming is the reusability of code. Suppose that you have written a program

More information

Shipment Label Header Guide

Shipment Label Header Guide Shipment Label Header Guide This guide will walk you through the 3 main phases of setting up a shipment label header within World Ship 2013. This guide was made using standard Windows Microsoft Office

More information

MANUAL FOR WEBSITE DEVELOPMENT USING WORDPRESS FOR STUDENT PERSONAL SITE

MANUAL FOR WEBSITE DEVELOPMENT USING WORDPRESS FOR STUDENT PERSONAL SITE MANUAL FOR WEBSITE DEVELOPMENT USING WORDPRESS FOR STUDENT PERSONAL SITE 0 Table of Content Site Full View 2 I How to get into Dashboard? 3 II What is Post and How to Create It? 4 III What is Page and

More information

Table of Contents. 1. Content Approval...1 EVALUATION COPY

Table of Contents. 1. Content Approval...1 EVALUATION COPY Table of Contents Table of Contents 1. Content Approval...1 Enabling Content Approval...1 Content Approval Workflows...4 Exercise 1: Enabling and Using SharePoint Content Approval...9 Exercise 2: Enabling

More information

BUS-WATCH R1001/R4001 Quick Guide Series

BUS-WATCH R1001/R4001 Quick Guide Series Part 1: Video File Source Connection To Review stored video, you must first connect a PC to a video file source. There are 2 ways to connect to the stored video files: Through the Removable Hard Drive

More information

Chapter 10 - Options

Chapter 10 - Options Chapter 10 - Options Options allow you to customize how individual QVF workstations will operate. You can set certain default values to avoid having to make repetitive entries. You can also adjust where

More information

During the process of creating ColorSwitch, you will learn how to do these tasks:

During the process of creating ColorSwitch, you will learn how to do these tasks: GUI Building in NetBeans IDE 3.6 This short tutorial guides you through the process of creating an application called ColorSwitch. You will build a simple program that enables you to switch the color of

More information

2. Are there any terms I should know to use this product?

2. Are there any terms I should know to use this product? Call Monitoring FAQs 1. What is Call Monitoring? Call Monitoring is a paid service that allows Vonage Business Solutions users to listen in on calls, whisper to the user being monitored, and also barge

More information

Searching for Lawyers Who Are Not Authorized to Practice Due to Recent Change in Status

Searching for Lawyers Who Are Not Authorized to Practice Due to Recent Change in Status Searching for Lawyers Who Are Not Authorized to Practice Due to Recent Change in Status ARDC Search Help ARDC has created an online lookup to identify lawyers who are not authorized to practice due to

More information

UW- Green Bay QuickBooks Accounts Receivable User Manual

UW- Green Bay QuickBooks Accounts Receivable User Manual UW- Green Bay QuickBooks Accounts Receivable User Manual Table of Contents Topic Page Number Logging into QuickBooks 2 Changing your password. 3 Creating Invoices. 4 Customer Entry/Search. 5-7 Entering

More information

Steps when you start the program for the first time

Steps when you start the program for the first time Steps when you start the program for the first time R-Tag Installation will install R-Tag Report Manager and a local SQL Server Compact Database, which is used by the program. This will allow you to start

More information

WEBMAIL User s Manual

WEBMAIL User s Manual WEBMAIL User s Manual Overview What it is: What it is not: A convenient method of retrieving and sending mails while you re away from your home computer. A sophisticated mail client meant to be your primary

More information

Tantalis GATOR Expanded Image Help Guide

Tantalis GATOR Expanded Image Help Guide Tantalis GATOR Expanded Image Help Guide Instructions for Increasing Image Resolution and Large size Printing The following are suggestions for printing an image using the Enabled MrSID plug-in and for

More information

Instructions for Importing (migrating) Data

Instructions for Importing (migrating) Data Instructions for Importing (migrating) Data from CTAS Version 7 to CTAS Version 8 For Windows 8 and 8.1 CTAS Version 8 is designed to work with your Version 7 data if you choose to. These instructions

More information

Food Service (Portal) Viewing Account Information

Food Service (Portal) Viewing Account Information Food Service (Portal) The Food Service screen allows parents and students access to the following food service information: Current account balances Transactions (food item purchases, account deposits

More information

ProCAP Transfer with Omneon Interface

ProCAP Transfer with Omneon Interface ProCAP Transfer with Omneon Interface 1 Table of Contents: Table of Contents:... 2 Transfer Omneon Overview... 3 Single Transfer... 4 Loading Transfer Files...4 Selecting the Video Clip...5 Encode Properties...7

More information

Security Contact User Guide

Security Contact User Guide Introduction Child Support Online is the Internet Web site where employers and the Office of the Attorney General (OAG) of Texas, Child Support Division (CSD), come together to help families in need of

More information

Managing Food Service Payment Information

Managing Food Service Payment Information Managing Food Service Payment Information Registering Payment Information Modifying Payment Information Viewing Online Payment History PATH: Portal > Payments Online Payment functionality allows the ability

More information

Paperless Board Meeting Solution Board Member Training. July 24, 2013

Paperless Board Meeting Solution Board Member Training. July 24, 2013 Paperless Board Meeting Solution Board Member Training July 24, 2013 Overview Using an ipad Using NovusAgenda 2 Using an ipad Basic Use Getting Started: Power and Passcode Navigation Basic Features Change

More information

and forms from multiple folders simultaneously to send out for e signing as the system will automatically create a Queue as you select documents.

and forms from multiple folders simultaneously to send out for e signing as the system will automatically create a Queue as you select documents. This guide was prepared to show our members how to submit saved forms (and/or uploaded documents) out for e signature using our built in integration with Settleware s secure e signing services. Once you

More information

Accessing your Professional Development Plan (PDP) Evaluation Process Professional Development Plan Start New Start Edit

Accessing your Professional Development Plan (PDP) Evaluation Process Professional Development Plan Start New Start Edit 1 NC Educator Effectiveness System Teacher s Guide Professional Development Plan (PDP) This guide outlines the steps that Teachers must complete for the Professional Development Plan in the North Carolina

More information

Using Check Boxes and Radio Buttons

Using Check Boxes and Radio Buttons DocuSign Quick Start Guide Using Check Boxes and Radio Buttons Overview When adding fields to a document, there might be times when you want to let your recipient select options on the document and you

More information