Building InfoMaker Styles and Actions

Size: px
Start display at page:

Download "Building InfoMaker Styles and Actions"

Transcription

1 CHAPTER 34 Building InfoMaker Styles and Actions About this chapter Contents This chapter explains how to build styles in PowerBuilder and provide them to InfoMaker users. Topic Page About form styles 656 Naming the DataWindow controls in a form style 659 Building and using a form style 660 Modifying an existing style 661 Building a style from scratch 663 Completing the style 664 Using the style

2 About form styles About form styles What a form style is How form styles are constructed InfoMaker comes with built-in form styles with which users can build sophisticated forms. You can create your own form styles in PowerBuilder and provide them to InfoMaker users. With these custom form styles, you can enforce certain standards in your forms and provide extra functionality to your InfoMaker users. For example, you might want to: Include your organization's logo in each form. You can do this by creating custom form styles that have the logo in place. Reconfigure the toolbar that is provided with the built-in form styles. You can do this by modifying a built-in form style and saving it as a custom form style. Use drag and drop in forms. Include picture buttons, edit controls, and other controls in forms. Almost anything you can do in a PowerBuilder window you can do in a custom form style. InfoMaker users use forms to maintain data. Users can view, add, delete, and update data in a form. Each form is based on a form style, which specifies: The way the data is presented (for example, in a freeform, grid, or master/detail presentation) The menu and toolbar that are available when users run a form Actions that users can attach to command buttons in the form You build form styles in PowerBuilder. A form style consists of: A window A menu About the window The window serves as the foundation of the form. It contains one or more DataWindow controls with special names. It is these DataWindow controls that are the heart of the form style. The user views and changes data in the form through the special DataWindow controls. This chapter refers to the special DataWindow controls as the central DataWindow controls. You must name the central DataWindow controls using one of a set of supported names. 656

3 Chapter 34 Building InfoMaker Styles and Actions Looking at an example In addition to the central DataWindow controls, the window can contain any other controls that you can place in a window in PowerBuilder (such as CommandButtons, RadioButtons, user objects, and pictures). About the menu When users run forms, they can pick items off a menu. You build that menu in the Menu painter and associate it with the window that the form style is based on. When building the menu, you can specify which menu items should display in a toolbar when a form is run. The toolbar works like all PowerBuilder toolbars. About actions Form styles contain actions that users can attach to command buttons in the form and that you can call in scripts. Each public window function you define in the window for the form style is available as an action to users of the form style. For example, the built-in form style Freeform consists of: A window named w_pbstyle_freeform A menu named m_pbstyle_freeform About w_pbstyle_freeform The window w_pbstyle_freeform contains a DataWindow control named dw_freeform (w_pbstyle_freeform contains no other controls just the DataWindow control). The PowerBuilder window defines many window-level functions: 657

4 About form styles Each of these window functions is available as an action in InfoMaker to users of the Freeform form style: About m_pbstyle_freeform The menu named m_pbstyle_freeform provides the menu items and toolbar items available to users when they run forms based on the Freeform style. For example, m_pbstyle_freeform contains the item Specify Criteria on the Rows menu; the item also displays on the toolbar: When InfoMaker users run the form, they can select Specify Criteria to enter selection criteria that are used in retrieving rows in the form. 658

5 Chapter 34 Building InfoMaker Styles and Actions Naming the DataWindow controls in a form style Each form style you define contains one or more central DataWindow controls that are based on DataWindow controls in one of the built-in InfoMaker form styles. The best way to understand the behavior of these DataWindow controls is to build forms in InfoMaker using each of the built-in styles. Then, when you want to build a form style, choose the DataWindow controls from the built-in style that matches the type of presentation you want in your form style. For example, to create a basic freeform data entry form, base it on dw_freeform, the DataWindow control found in w_pbstyle_freeform. When building your form style, you must assign the central DataWindow controls one of the following names: dw_freeform dw_grid dw_master_12many dw_detail_12many dw_master_many21 dw_detail_many21 Valid combinations You must use one of the following four combinations of DataWindow controls in a form style: Use these DataWindow control names dw_freeform only dw_grid and dw_freeform dw_master_12many and dw_detail_12many dw_master_many21 and dw_detail_many21 To base your form style on this built-in style Freeform Grid (dw_grid is the central DataWindow control; dw_freeform shares the result set and serves as the background, allowing users to place computed fields anywhere in the form) Master Detail/One-To-Many Master Detail/Many-To-One 659

6 Building and using a form style Building and using a form style v To build and use a form style: 1 Do one of the following: Copy the window and menu from an existing form style to act as your starting point. Begin from scratch by creating a new window and placing in it one or two DataWindow controls that have the supported names. 2 Save the window with a special comment that indicates that the window serves as the basis for a form style. 3 Enhance the form style by adding controls to the window, modifying the menu, defining window functions to serve as actions, and so on. 4 Copy all objects used in the form style (such as windows, user objects, and menus) to a library that will be defined as a style library for InfoMaker users. 5 Add the style library to the search path for InfoMaker users. When InfoMaker users create a new form, the form style you defined displays in the New Form dialog box. Users can select the style to build a form based on the style you built. The rest of this chapter describes these steps. 660

7 Chapter 34 Building InfoMaker Styles and Actions Modifying an existing style The easiest way to get started building form styles is to copy an existing form style and work with it. By examining its structure and making small changes, you can quickly understand how form styles work. v To begin by modifying an existing form style: 1 Open the Library painter in PowerBuilder. 2 Copy the window and menu that serve as the foundation for a form style to a library that is on your application s library search path. Starting from a built-in form style The windows and menus that serve as the basis for the built-in form styles are in IMSTYLE8.PBL, which is shipped with InfoMaker and installed in the InfoMaker 8.0 directory. You can make a copy of this PBL and use it as the basis of your own form styles. 3 Open the window in the Window painter and select File>Save As from the menu bar to save it with a new name. 4 Give the window a new name. You can use any name you want, except that names of windows that define form styles must be unique across all style libraries that are used by an InfoMaker user. 5 Define a special comment for the window (for how, see "Identifying the window as the basis of a style" on page 662). 6 Click OK to save the window. 7 Open the menu in the Menu painter and select File>Save As from the menu bar to save it with a new name. 8 Provide a new name and an optional comment, then click OK to save the menu. You do not need to provide a comment for the menu, but it is a good idea to identify it as being used in the form style you are building. 9 Enhance the form style (for how, see "Completing the style" on page 664). 661

8 Modifying an existing style Identifying the window as the basis of a style In order for InfoMaker to recognize that a window in a library serves as the basis for a form style, you must specify a comment for the window that starts with the text Style: Style: text that describes the style The text that follows Style: is the text that displays below the icon for the form style in the New Form dialog box in InfoMaker. For example, if you save a w_pbstyle_freeform window with the comment Style: Maintain corporate data in a style library, InfoMaker users see this when they create a new form: You can specify the comment either when first saving the window or in the Library painter. For more information about designing windows, see the PowerBuilder User s Guide. 662

9 Chapter 34 Building InfoMaker Styles and Actions Building a style from scratch Once you understand how form styles work, you can build one from scratch. v To build a form style from scratch: 1 Create a new window. 2 Place a DataWindow control in the window. 3 In the Properties view for the control, name the control using one of the special names. For the list of special names, see "Naming the DataWindow controls in a form style" on page Change properties for the control as desired. For example, you can add vertical and horizontal scrollbars. Do not associate the control with a DataWindow object InfoMaker users specify the data for the control when they create a new form. 5 If the form style you are building uses two DataWindow controls, place another DataWindow control in the window and name it to conform with the valid combinations. For the list of valid combinations, see "Naming the DataWindow controls in a form style" on page Save the window and specify a comment for it. For how, see "Identifying the window as the basis of a style" on page

10 Completing the style Completing the style To complete your form style, enhance the window and menu to provide the processing you want. For example, you can: Work with the central DataWindow control Add controls to the window Define actions (functions that appear as actions in your form style) Modify the menu and its associated toolbar Write scripts for the window, its controls, and menu items Add other capabilities, such as drag and drop, to the window Working with the central DataWindow controls How the freeform DataWindow is sized Retrieving rows into the central DataWindow control The DataWindow controls with special names are the heart of a form. It is in these controls that users manipulate the data in the form. You need to understand: How the freeform DataWindow is sized in the form How to retrieve data into the control in the form All form styles you build contain a freeform DataWindow (as do all the builtin styles). Regardless of what size you specify for the freeform DataWindow control in the Window painter in PowerBuilder, the freeform DataWindow fills the entire form in the Form painter in InfoMaker. InfoMaker enlarges the freeform DataWindow so that users can place data (such as computed fields) anywhere in the form. This means that a window background color that you specify in PowerBuilder is ignored in the form. When an InfoMaker user runs a form, InfoMaker automatically populates the SQLCA Transaction object with the correct values, so you do not have to do that in a script. To retrieve rows into the central DataWindow control, all you have to do is set the Transaction object for the control and then retrieve rows. For example, to retrieve data into the control named dw_freeform, code: dw_freeform.settransobject(sqlca) dw_freeform.retrieve() 664

11 Chapter 34 Building InfoMaker Styles and Actions You would code this in the window s Open event to present the data to the user when the form opens. For more information about Transaction objects, see Chapter 12, "Using Transaction Objects". Adding controls All windows serving as the basis for a form style have at least one DataWindow control. In addition, you can add any other controls that you can add to standard PowerBuilder windows, such as command buttons, user objects, text, edit boxes, pictures, and drawing objects. Users of the form can move the controls you place in the window, but they cannot delete them. Users can also add controls to the form in the Form painter. They make CommandButtons and PictureButtons work by associating actions with them. Actions are described next. Defining actions Often users want to add buttons (CommandButtons or PictureButtons) to a form created using a custom form style. When you create the form style, you specify what the added buttons can do by defining actions for the form style. When users place a button, they select the desired action from a list: Actions are implemented as public window-level functions. 665

12 Completing the style v To define an action: 1 In the Script view in the Window painter, select Insert>Function from the menu bar. 2 Define the window-level function (for how, see the PowerBuilder User s Guide). If you want the window function to be available to a form user as an action, be sure to define the function as public. Function arguments you define are used as parameters of the action. Each public window function you define is listed as an action in the Select Action dialog box in the Form painter. Defining functions not available as actions If you want to define and use window functions that are not available as actions in forms, define them as private. Using menus You specify the menu and toolbar that display when users run a form by defining a menu in the Menu painter and associating it with the window serving as the basis for your form style. Each menu item in the menu you define displays when a form is run. In addition, InfoMaker adds Window and Help menus to allow users to manipulate windows and get online Help when running a form in the InfoMaker environment. Providing online Help You can define a Help item in the menu bar, then define menu items that display in the Help dropdown menu. The Help items do not display when users run a form within InfoMaker, but they do display when a form is run from an executable. For more information about InfoMaker executables, see the InfoMaker User s Guide. Item in a toolbar As with MDI applications, you can specify that a menu item displays as an item in a toolbar when the form is run. 666

13 Chapter 34 Building InfoMaker Styles and Actions Scripting For more information You use the same scripting techniques for menus used in forms as you do for menus used in standard windows. Typically you communicate between a window and its menu by defining user events for the window, then triggering them from the menu using the menu object s ParentWindow property to refer to the form window; this technique is used in the built-in form styles. For more information about using menus and user events, see the PowerBuilder User s Guide. For more information about associating toolbars with menus, see Chapter 5, "Building an MDI Application". Writing scripts You write scripts for the window, its controls, and Menu objects the same way you write them for standard windows and menus. When working with DataWindow controls, remember that you do not have to set the properties of the SQLCA Transaction object InfoMaker does that automatically when users run a form. You can define global user-defined functions and structures to support the scripts you code, but note that since InfoMaker does not have an application object, form styles cannot use global variables or global external function declarations. Adding other capabilities You can make forms as sophisticated as you want. For example, you can implement drag and drop features, and mail-enable your form. For complete information about the features you can build into a window, see the PowerBuilder User s Guide. 667

14 Using the style Using the style Once you complete a form style (or at least have a version that you want to test), you can put it to use. v To make a style available to InfoMaker users: 1 Make sure the window and menu that define the form style are in a library that is accessible to InfoMaker users (the style library). 2 Add any other PowerBuilder objects that you use in the form style (such as windows, user objects, global user-defined functions, and global structures) to the same library. 3 Add the style library to the path for an InfoMaker user. For more information, see the InfoMaker User s Guide. Building a form with the custom form style When an InfoMaker user using the style library creates a new form, all custom form styles display in the Form Style box in the New Form dialog box: Custom styles display with a generic icon. InfoMaker users simply select a data source and a custom style to start building a form based on your form style. You should provide documentation to users of your form styles. 668

15 Chapter 34 Building InfoMaker Styles and Actions Understanding inheritance When users build a form, they are working with a window that is a descendant of the window that you built for the form style. That is, the form style window you built in PowerBuilder is the ancestor, and the form window used in InfoMaker is the descendant. This means that if you change the form style, the changes are picked up the next time users work with a form using that style. For example, you can add controls to the form style and have the controls display automatically when users later open existing forms using the style. Caution Be careful: don t make changes that invalidate forms already built using the style. Managing the use of form styles You can store style libraries on the network to make them readily available to all InfoMaker users. You do this with a shared initialization file on a network: you place an InfoMaker initialization file that references the shared style libraries out on the network, then set up InfoMaker users so that they can access the initialization file. v To make style libraries available throughout your organization: 1 Place the style libraries on the network in a directory accessible to InfoMaker users. 2 Open InfoMaker, go to the Library painter, and make sure all style libraries are listed in the search path. 3 Close InfoMaker. 4 Copy your InfoMaker initialization file to a directory on the network that is accessible to all InfoMaker users. This is the shared initialization file. It records all the style libraries in the StyleLib variable in the [Application] section. 5 Set up InfoMaker users so that they can access the shared initialization file. Each InfoMaker user needs to specify the location of the shared initialization file in InfoMaker. For more information, see "Specifying the location of the shared InfoMaker initialization file in InfoMaker" next. 669

16 Using the style Specifying the location of the shared InfoMaker initialization file in InfoMaker Once the shared initialization file has been defined in a user s InfoMaker initialization file, the user s style library search path consists of the style libraries defined in their local InfoMaker initialization file plus all style libraries defined in the shared initialization file. When the user creates a new form, the form styles defined in all the style libraries display in the New Form dialog box. Each InfoMaker user needs to tell InfoMaker where to find the shared initialization file. Preventing the use of built-in styles v v To specify the location of a shared InfoMaker initialization file: 1 Select Tools>System Options from the InfoMaker menu bar. 2 On the General property page, enter the path for the shared InfoMaker initialization file. 3 Click OK. InfoMaker saves the path for InfoMaker initialization in the registry. You might not want the built-in form styles to be available to InfoMaker users. That is, you might want all forms to be based on one of your organization s user-defined styles. You can ensure this by suppressing the display of the builtin styles in the New Form dialog box. To suppress the display of built-in styles: 1 Set up a shared initialization file on the network as described in the preceding section. 2 Add this line to the [Window] section of the shared initialization file: ShowStandardStyles = 0 With that line specified in the shared initialization file, users can choose only from user-defined form styles when creating a new form. (Note that a ShowStandardStyles line in a user s local InfoMaker initialization file is ignored by InfoMaker.) 670

Introduction to PeopleSoft Query. The University of British Columbia

Introduction to PeopleSoft Query. The University of British Columbia Introduction to PeopleSoft Query The University of British Columbia December 6, 1999 PeopleSoft Query Table of Contents Table of Contents TABLE OF CONTENTS... I CHAPTER 1... 1 INTRODUCTION TO PEOPLESOFT

More information

Getting Started. InfoMaker 12.5

Getting Started. InfoMaker 12.5 Getting Started InfoMaker 12.5 DOCUMENT ID: DC37788-01-1250-01 LAST REVISED: July 2011 Copyright 2011 by Sybase, Inc. All rights reserved. This publication pertains to Sybase software and to any subsequent

More information

Access Review. 4. Save the table by clicking the Save icon in the Quick Access Toolbar or by pulling

Access Review. 4. Save the table by clicking the Save icon in the Quick Access Toolbar or by pulling Access Review Relational Databases Different tables can have the same field in common. This feature is used to explicitly specify a relationship between two tables. Values appearing in field A in one table

More information

Microsoft Office Access Learn how to use the Query window in Design view. Tutorial 3b Querying a Database

Microsoft Office Access Learn how to use the Query window in Design view. Tutorial 3b Querying a Database Microsoft Office Access 2003 Tutorial 3b Querying a Database 1 Learn how to use the Query window in Design view The Query window in Design view allows you to specify the results you want for a query. In

More information

Using MS Publisher. Launch MS Publisher: Start > All Programs > Microsoft Office > Publisher. Setting up Document Size and Orientation

Using MS Publisher. Launch MS Publisher: Start > All Programs > Microsoft Office > Publisher. Setting up Document Size and Orientation Designing and Creating your GIS Poster Revised by Carolyn Talmadge 1/20/2015 First think about your audience and purpose then design your poster! Here are instructions for setting up your poster using

More information

Working with Macros. Creating a Macro

Working with Macros. Creating a Macro Working with Macros 1 Working with Macros THE BOTTOM LINE A macro is a set of actions saved together that can be performed by issuing a single command. Macros are commonly used in Microsoft Office applications,

More information

What is OneNote? The first time you start OneNote, it asks you to sign in. Sign in with your personal Microsoft account.

What is OneNote? The first time you start OneNote, it asks you to sign in. Sign in with your personal Microsoft account. OneNote What is OneNote? OneNote is a digital notebook. In OneNote, you can: Type notes or record audio at your laptop. Sketch or write ideas on your tablet. Add picture from your phone. Find notes instantly.

More information

WORD XP/2002 USER GUIDE. Task- Formatting a Document in Word 2002

WORD XP/2002 USER GUIDE. Task- Formatting a Document in Word 2002 University of Arizona Information Commons Training Page 1 of 21 WORD XP/2002 USER GUIDE Task- Formatting a Document in Word 2002 OBJECTIVES: At the end of this course students will have a basic understanding

More information

Getting Started. PowerBuilder 11.0

Getting Started. PowerBuilder 11.0 Getting Started PowerBuilder 11.0 DOCUMENT ID: DC37772-01-1100-01 LAST REVISED: May 2007 Copyright 1991-2007 by Sybase, Inc. All rights reserved. This publication pertains to Sybase software and to any

More information

MASTER-DETAIL FORMS. In this Chapter, you will learn about: Master-Detail Forms Page 108

MASTER-DETAIL FORMS. In this Chapter, you will learn about: Master-Detail Forms Page 108 CHAPTER 4 MASTER-DETAIL FORMS CHAPTER OBJECTIVES In this Chapter, you will learn about: Master-Detail Forms Page 108 In the previous Chapters, you created and worked with forms that had only one base-table

More information

Getting Started. PowerBuilder 11.5

Getting Started. PowerBuilder 11.5 Getting Started PowerBuilder 11.5 DOCUMENT ID: DC37772-01-1150-01 LAST REVISED: September 2008 Copyright 2008 by Sybase, Inc. All rights reserved. This publication pertains to Sybase software and to any

More information

Chapter11 practice file folder. For more information, see Download the practice files in this book s Introduction.

Chapter11 practice file folder. For more information, see Download the practice files in this book s Introduction. Make databases user friendly 11 IN THIS CHAPTER, YOU WILL LEARN HOW TO Design navigation forms. Create custom categories. Control which features are available. A Microsoft Access 2013 database can be a

More information

DataWindow Programmers Guide. PowerBuilder Classic 12.5

DataWindow Programmers Guide. PowerBuilder Classic 12.5 DataWindow Programmers Guide PowerBuilder Classic 12.5 DOCUMENT ID: DC37775-01-1250-01 LAST REVISED: July 2011 Copyright 2011 by Sybase, Inc. All rights reserved. This publication pertains to Sybase software

More information

Tutorials. Lesson 3 Work with Text

Tutorials. Lesson 3 Work with Text In this lesson you will learn how to: Add a border and shadow to the title. Add a block of freeform text. Customize freeform text. Tutorials Display dates with symbols. Annotate a symbol using symbol text.

More information

DataWindow Programmer s Guide. PowerBuilder 11.0

DataWindow Programmer s Guide. PowerBuilder 11.0 DataWindow Programmer s Guide PowerBuilder 11.0 DOCUMENT ID: DC37775-01-1100-01 LAST REVISED: May 2007 Copyright 1991-2007 by Sybase, Inc. All rights reserved. This publication pertains to Sybase software

More information

Using Windows 7 Explorer By Len Nasman, Bristol Village Computer Club

Using Windows 7 Explorer By Len Nasman, Bristol Village Computer Club By Len Nasman, Bristol Village Computer Club Understanding Windows 7 Explorer is key to taking control of your computer. If you have ever created a file and later had a hard time finding it, or if you

More information

Creating a Custom Report

Creating a Custom Report Creating a Custom Report The Analytical Report module provides two ways to create a custom report: modifying an existing shared report or creating a new report from scratch if there is no existing report

More information

Using Microsoft Word. Tables

Using Microsoft Word. Tables Using Microsoft Word are a useful way of arranging information on a page. In their simplest form, tables can be used to place information in lists. More complex tables can be used to arrange graphics on

More information

Introduction to Visual Expert 6.0 new features

Introduction to Visual Expert 6.0 new features Introduction to Visual Expert 6.0 new features 1. NEW NAVIGATION BAR... 2 2. NEW MACROS... 3 2.1. LESS MACROS, MORE PARAMETERS... 3 2.2. MACROS SHORTCUTS IN THE TREEVIEW MENU... 3 2.3. NEW MACROS TO LIST

More information

Copyright 2012 Pulse Systems, Inc. Page 1 of 26

Copyright 2012 Pulse Systems, Inc. Page 1 of 26 The Procedures Table stores information about the Current Procedural Terminology, or CPT, procedure codes which are used in your practice. There are some CPT codes that are consistently used as a group.

More information

Tutorials. Lesson 1 - Format a Schedule. In this lesson you will learn how to: Change the schedule s date range. Change the date headings.

Tutorials. Lesson 1 - Format a Schedule. In this lesson you will learn how to: Change the schedule s date range. Change the date headings. In this lesson you will learn how to: Change the schedule s date range. Change the date headings. Tutorials Change the schedule dimensions. Change the legend and add a new legend entry. Work with pages

More information

IU Kokomo Career and Accessibility Center

IU Kokomo Career and Accessibility Center Creating an Accessible Syllabus in Microsoft Word Incorporating the use of headings and a table of contents (if needed) in your syllabus will make the document increasingly accessible to all students.

More information

Free Microsoft Office 2010 training from MedCerts. Course Outline

Free Microsoft Office 2010 training from MedCerts. Course Outline Free Microsoft Office 2010 training from MedCerts Course Outline Microsoft Office Word 2010: Basic Course Introduction Unit 01 - Getting Started Topic A: The Word Window The Word 2010 Window Demo - A-1:

More information

Enforce Referential. dialog box, click to mark the. Enforce Referential. Integrity, Cascade Update Related Fields, and. Cascade Delete Related

Enforce Referential. dialog box, click to mark the. Enforce Referential. Integrity, Cascade Update Related Fields, and. Cascade Delete Related PROCEDURES LESSON 8: MANAGING RELATIONSHIPS BETWEEN TABLES Renaming a Table 1 In the Navigation pane, right-click the table you want to rename 2 On the shortcut menu, click Rename 3 Type the new table

More information

When you first start OneNote, it creates a sample notebook for you. You can use this notebook or quickly create your own.

When you first start OneNote, it creates a sample notebook for you. You can use this notebook or quickly create your own. Basic tasks in Microsoft OneNote 2013 OneNote is a digital notebook that provides a single place for all of your notes and information everything you need to remember and manage in your life at home, at

More information

Cisco Unified CM User Options

Cisco Unified CM User Options Cisco Unified CM User Options This document describes how to use Cisco Unified CM User Options web pages. Cisco Unified CM User Options provides a web-based interface that allows users and administrators

More information

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

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

More information

Here is a complete outline of the entire course as it is currently planned (contents approximate):

Here is a complete outline of the entire course as it is currently planned (contents approximate): Getting Started With The CHT Web Group Server A User s Guide INSTALLATION Installing this CHT Web Group Server software is your first step into the future of desktop web serving. Although the Web Group

More information

Access Intermediate

Access Intermediate Access 2013 - Intermediate 103-134 Advanced Queries Quick Links Overview Pages AC124 AC125 Selecting Fields Pages AC125 AC128 AC129 AC131 AC238 Sorting Results Pages AC131 AC136 Specifying Criteria Pages

More information

Management Reports Centre. User Guide. Emmanuel Amekuedi

Management Reports Centre. User Guide. Emmanuel Amekuedi Management Reports Centre User Guide Emmanuel Amekuedi Table of Contents Introduction... 3 Overview... 3 Key features... 4 Authentication methods... 4 System requirements... 5 Deployment options... 5 Getting

More information

Information Technology Virtual EMS Help https://msum.bookitadmin.minnstate.edu/ For More Information Please contact Information Technology Services at support@mnstate.edu or 218.477.2603 if you have questions

More information

Feature List. PB Code Analyzer (PBCA) Copyright Ecocion, Inc.

Feature List. PB Code Analyzer (PBCA) Copyright Ecocion, Inc. Feature List PB Code Analyzer (PBCA) Copyright 1998-2010 Ecocion, Inc. PB CODE ANALYZER OVERVIEW The PB Code Analyzer (PBCA) suite consists of many useful tools integrated together in a simple to use,

More information

IX. Format Tips. Row & column autofit

IX. Format Tips. Row & column autofit IX. Row & column autofit Excel rows and columns have a standard height and width. You can check on the height of any row and the width of any column by clicking its header (or any cell) to select it and

More information

Data Express 4.0. Data Subset Extraction

Data Express 4.0. Data Subset Extraction Data Express 4.0 Data Subset Extraction Micro Focus The Lawn 22-30 Old Bath Road Newbury, Berkshire RG14 1QN UK http://www.microfocus.com Copyright Micro Focus 2009-2014. All rights reserved. MICRO FOCUS,

More information

BASIC INFOMAKER FOR EX SELF-STUDY LEARNING GUIDE. Compatible with InfoMaker Version 11.5

BASIC INFOMAKER FOR EX SELF-STUDY LEARNING GUIDE. Compatible with InfoMaker Version 11.5 BASIC INFOMAKER FOR EX SELF-STUDY LEARNING GUIDE Compatible with InfoMaker Version 11.5 2009, Jenzabar, Inc. 800 Boylston Street Boston, MA 02199 617.492.9099 www.jenzabar.net This document is confidential

More information

Creating Page Layouts 25 min

Creating Page Layouts 25 min 1 of 10 09/11/2011 19:08 Home > Design Tips > Creating Page Layouts Creating Page Layouts 25 min Effective document design depends on a clear visual structure that conveys and complements the main message.

More information

Contents. Table of Contents Introduction. The Main Menu...1 The Fleet Manager...2. Viewing the Maintenance...16 Generating Reports...

Contents. Table of Contents Introduction. The Main Menu...1 The Fleet Manager...2. Viewing the Maintenance...16 Generating Reports... Contents I Table of Contents 1 2 3 4 5 6 7 8 9 10 Introduction...1 The Main Menu...1 The Fleet Manager...2 Step #1 - Establishing...6 Locations/Departments Step #2 - Defining...8 your PM Schedules Step

More information

ADOBE TRAINING CS6 PHOTOSHOP BASICS: EDITING PHOTOS & WORKING WITH TEXT - 1

ADOBE TRAINING CS6 PHOTOSHOP BASICS: EDITING PHOTOS & WORKING WITH TEXT - 1 ADOBE TRAINING CS6 PHOTOSHOP BASICS: EDITING PHOTOS & WORKING WITH TEXT Photoshop is the leading professional software for editing and adjusting photos, images and other graphic projects. It is a very

More information

Installing the application involves several steps. Note that you must install QuickBooks on your computer prior to installing this application.

Installing the application involves several steps. Note that you must install QuickBooks on your computer prior to installing this application. CCRQLABEL OVERVIEW This is an overview (summary) of the CCRQLabel 4.x label printing product. Full documentation is under development INSTALLING CCRQLABEL This document provides a quick review of how to

More information

Chapter 4 Printing and Viewing a Presentation Using Proofing Tools I. Spell Check II. The Thesaurus... 23

Chapter 4 Printing and Viewing a Presentation Using Proofing Tools I. Spell Check II. The Thesaurus... 23 PowerPoint Level 1 Table of Contents Chapter 1 Getting Started... 7 Interacting with PowerPoint... 7 Slides... 7 I. Adding Slides... 8 II. Deleting Slides... 8 III. Cutting, Copying and Pasting Slides...

More information

CenterStone. Reports User Guide. Manhattan Software Inc. World Leading Real Estate, Asset & Facilities Management Software.

CenterStone. Reports User Guide. Manhattan Software Inc. World Leading Real Estate, Asset & Facilities Management Software. CenterStone Reports User Guide Version 1 Manhattan Software Inc. World Leading Real Estate, Asset & Facilities Management Software The information contained herein is the property of Manhattan Software,

More information

Introduction to Microsoft Word 2008

Introduction to Microsoft Word 2008 1. Launch Microsoft Word icon in Applications > Microsoft Office 2008 (or on the Dock). 2. When the Project Gallery opens, view some of the available Word templates by clicking to expand the Groups, and

More information

2. In the Start and End Dates section, use the Calendar icon to change the Displayed Start Date to 1/1/2015 and the Displayed End Date to 5/31/2015.

2. In the Start and End Dates section, use the Calendar icon to change the Displayed Start Date to 1/1/2015 and the Displayed End Date to 5/31/2015. Tutorials Lesson 1 - Format a Schedule In this lesson you will learn how to: Change the schedule s date range. Change the date headings. Change the schedule dimensions. Change the legend and add a new

More information

Publisher 2000 Creating a Newsletter The Academic Computing Services

Publisher 2000 Creating a Newsletter The Academic Computing Services 2 Creating a Newsletter This section will cover the following topics: 1. Use the Newsletter Wizard to create a two-page layout. 2. Customizing your newsletter 3. Entering captions for graphics 4. Add or

More information

Designing & Creating your GIS Poster

Designing & Creating your GIS Poster Designing & Creating your GIS Poster Revised by Carolyn Talmadge and Kyle Monahan 4/24/2017 First think about your audience and purpose, then design your poster! Here are instructions for setting up your

More information

Contact: Systems Alliance, Inc. Executive Plaza III McCormick Road, Suite 1203 Hunt Valley, Maryland Phone: / 877.

Contact: Systems Alliance, Inc. Executive Plaza III McCormick Road, Suite 1203 Hunt Valley, Maryland Phone: / 877. Contact: Systems Alliance, Inc. Executive Plaza III 11350 McCormick Road, Suite 1203 Hunt Valley, Maryland 21031 Phone: 410.584.0595 / 877.SYSALLI Fax: 410.584.0594 http://www.systemsalliance.com http://www.siteexecutive.com

More information

Chapter 4: Single Table Form Lab

Chapter 4: Single Table Form Lab Chapter 4: Single Table Form Lab Learning Objectives This chapter provides practice with creating forms for individual tables in Access 2003. After this chapter, you should have acquired the knowledge

More information

Visual Programming 1. What is Visual Basic? 2. What are different Editions available in VB? 3. List the various features of VB

Visual Programming 1. What is Visual Basic? 2. What are different Editions available in VB? 3. List the various features of VB Visual Programming 1. What is Visual Basic? Visual Basic is a powerful application development toolkit developed by John Kemeny and Thomas Kurtz. It is a Microsoft Windows Programming language. Visual

More information

User Guide. Avery Dennison Web Ordering Solution for Steinmart

User Guide. Avery Dennison Web Ordering Solution for Steinmart User Guide Avery Dennison Web Ordering Solution for Steinmart March 2012 Copyright 2012 A very Dennison The information in this document is subject to change without notice and should not be construed

More information

Microsoft Word Part I Reference Manual

Microsoft Word Part I Reference Manual Microsoft Word 2002 Part I Reference Manual Instructor: Angela Sanderson Computer Training Coordinator Updated by: Angela Sanderson January 11, 2003 Prepared by: Vi Johnson November 20, 2002 THE WORD SCREEN

More information

GET TO KNOW FLEXPRO IN ONLY 15 MINUTES

GET TO KNOW FLEXPRO IN ONLY 15 MINUTES GET TO KNOW FLEXPRO IN ONLY 15 MINUTES Data Analysis and Presentation Software GET TO KNOW FLEXPRO IN ONLY 15 MINUTES This tutorial provides you with a brief overview of the structure of FlexPro and the

More information

Microsoft Windows XP. Operating System. Starting Windows XP. You might be asked to enter your username and password

Microsoft Windows XP. Operating System. Starting Windows XP. You might be asked to enter your username and password Microsoft Windows Operating System Starting Windows Windows automatically starts when you turn on your computer You might be asked to enter your username and password The Windows desktop uses a graphical

More information

Designing & Creating your GIS Poster

Designing & Creating your GIS Poster Designing & Creating your GIS Poster Revised by Carolyn Talmadge, 11/26/2018 First think about your audience and purpose, then design your poster! Here are instructions for setting up your poster using

More information

PowerPoint Spring 2002

PowerPoint Spring 2002 PowerPoint 2000 Spring 2002 Table of Contents I. INTRODUCTION... 1 II. GETTING STARTED... 1 A. Opening PowerPoint... 1 B. The Mouse Pointer... 1 C. Working with Text... 2 1. Windows Control Buttons...

More information

Expression binding for Reports

Expression binding for Reports Expression binding for Reports Expression Binding Reporting in Uniconta has now been simplified. Data is now provided to report controls using expression binding. This means that, instead of using data

More information

Microsoft How to Series

Microsoft How to Series Microsoft How to Series Getting Started with EXCEL 2007 A B C D E F Tabs Introduction to the Excel 2007 Interface The Excel 2007 Interface is comprised of several elements, with four main parts: Office

More information

Chapter 2 Using Slide Masters, Styles, and Templates

Chapter 2 Using Slide Masters, Styles, and Templates Impress Guide Chapter 2 Using Slide Masters, Styles, and Templates OpenOffice.org Copyright This document is Copyright 2007 by its contributors as listed in the section titled Authors. You can distribute

More information

To learn more about the Milestones window choose: Help Help Topics Select the Index tab and type in the feature. For Example toolbox.

To learn more about the Milestones window choose: Help Help Topics Select the Index tab and type in the feature. For Example toolbox. To learn more about the Milestones window choose: Help Help Topics Select the Index tab and type in the feature. For Example toolbox. 1 of 12 CHOOSE THE DATES TAB TO: 1. Set the schedule s Date Range.

More information

Roxen Content Provider

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

More information

CREATING A NEW SURVEY IN

CREATING A NEW SURVEY IN CREATING A NEW SURVEY IN 1. Click to start a new survey 2. Type a name for the survey in the Survey field dialog box e.g., Quick 3. Enter a descriptive title for the survey in the Title field. - Quick

More information

Open a new Excel workbook and look for the Standard Toolbar.

Open a new Excel workbook and look for the Standard Toolbar. This activity shows how to use a spreadsheet to draw line graphs. Open a new Excel workbook and look for the Standard Toolbar. If it is not there, left click on View then Toolbars, then Standard to make

More information

Hot Tips from the Training Department

Hot Tips from the Training Department Topic Title: Vovici 6 Which Questionnaire Edit Mode Should I Use? Topic Description: Vovici 6 introduces a new user interface with enhanced questionnaire design experience. With the new Questionnaire Designer

More information

Getting Started with PhraseFind

Getting Started with PhraseFind Getting Started with PhraseFind Legal Notices Product specifications are subject to change without notice and do not represent a commitment on the part of Avid Technology, Inc. This product is subject

More information

Introducing Gupta Report Builder

Introducing Gupta Report Builder Business Reporting Chapter 1 Introducing Gupta Report Builder You can use Report Builder to design reports. This chapter describes: Our approach to building reports. Some of the reports you can build.

More information

DataMaster for Windows

DataMaster for Windows DataMaster for Windows Version 3.0 April 2004 Mid America Computer Corp. 111 Admiral Drive Blair, NE 68008-0700 (402) 426-6222 Copyright 2003-2004 Mid America Computer Corp. All rights reserved. Table

More information

Microsoft Word: Steps To Success (The Bare Essentials)

Microsoft Word: Steps To Success (The Bare Essentials) Microsoft Word: Steps To Success (The Bare Essentials) Workbook by Joyce Kirst 2005 Microsoft Word: Step to Success (The Bare Essentials) Page Contents 1 Starting Word 2 Save 3 Exit 5 Toolbars, Alignment,

More information

Understanding Acrobat Form Tools

Understanding Acrobat Form Tools CHAPTER Understanding Acrobat Form Tools A Adobe Acrobat X PDF Bible PDF Forms Using Adobe Acrobat and LiveCycle Designer Bible Adobe Acrobat X PDF Bible PDF Forms Using Adobe Acrobat and LiveCycle Designer

More information

Introduction to macros

Introduction to macros L E S S O N 6 Introduction to macros Suggested teaching time 45-55 minutes Lesson objectives In this lesson, you will learn about macros by: a b c Running and recording a new macro by using the record

More information

1. PDF forms can be filled out on the computer if converted to Interactive Forms

1. PDF forms can be filled out on the computer if converted to Interactive Forms Forms in Creating an Form 1. PDF forms can be filled out on the computer if converted to Interactive Forms A. You cannot tell if it is interactive, until you click on Highlight Existing Fields button at

More information

Integrating PowerBuilder & SVN

Integrating PowerBuilder & SVN I was tasked with testing the source control product SVN with PowerBuilder. After beating my head against this task, and with the help of Gary Collins and Eduardo G, I was finally able to make this work.

More information

VHSE - COMPUTERISED OFFICE MANAGEMENT MODULE III - Communication and Publishing Art - PageMaker

VHSE - COMPUTERISED OFFICE MANAGEMENT MODULE III - Communication and Publishing Art - PageMaker INTRODUCTION : It is one Adobe PageMaker 7.0 software is the ideal page layout program for business, education, and small- and home-office professionals who want to create high-quality publications such

More information

Lesson 4 Customize the ToolBox

Lesson 4 Customize the ToolBox Lesson 4 Customize the ToolBox In this lesson you will learn how to: Change the toolbox to be a Floating toolbox or a toolbox anchored on the Sidebar. Change the combo ToolBox size and highlighting. Change

More information

InDesign CC 2014 Essential Skills

InDesign CC 2014 Essential Skills InDesign CC 2014 Essential Skills Adobe InDesign Creative Cloud 2014 University Information Technology Services Training, Outreach, Learning Technologies & Video Production Copyright 2015 KSU Division

More information

Access: Printing Data with Reports

Access: Printing Data with Reports Access: Printing Data with Reports Reports are a means for displaying and summarizing data from tables or queries. While forms are primarily for on-screen viewing, reports are for presenting your data

More information

GE Fanuc Automation CIMPLICITY HMI. Historical Data Analyzer. CIMPLICITY Monitoring and Control Products. Operation Manual

GE Fanuc Automation CIMPLICITY HMI. Historical Data Analyzer. CIMPLICITY Monitoring and Control Products. Operation Manual GE Fanuc Automation CIMPLICITY Monitoring and Control Products CIMPLICITY HMI Historical Data Analyzer Operation Manual GFK-1379C December 2000 Following is a list of documentation icons: GFL-005 Warning

More information

Lab 7 Macros, Modules, Data Access Pages and Internet Summary Macros: How to Create and Run Modules vs. Macros 1. Jumping to Internet

Lab 7 Macros, Modules, Data Access Pages and Internet Summary Macros: How to Create and Run Modules vs. Macros 1. Jumping to Internet Lab 7 Macros, Modules, Data Access Pages and Internet Summary Macros: How to Create and Run Modules vs. Macros 1. Jumping to Internet 1. Macros 1.1 What is a macro? A macro is a set of one or more actions

More information

PowerPoint Working with Text PP500

PowerPoint Working with Text PP500 PowerPoint Working with Text PP500 This Page left blank intentionally Diocese of St. Petersburg pg. 2 5/29/2009 Table of Contents Working with Text... 4 Customizing Fonts... 4 Adding Text... 4 Adding Text:

More information

Text box. Command button. 1. Click the tool for the control you choose to draw in this case, the text box.

Text box. Command button. 1. Click the tool for the control you choose to draw in this case, the text box. Visual Basic Concepts Hello, Visual Basic See Also There are three main steps to creating an application in Visual Basic: 1. Create the interface. 2. Set properties. 3. Write code. To see how this is done,

More information

ITEC 101 LAB 9 USING A DATABASE: Tables and Queries

ITEC 101 LAB 9 USING A DATABASE: Tables and Queries ITEC 101 LAB 9 USING A DATABASE: Tables and Queries In the last lab, we saw how a spreadsheet can be useful for organized storage of information. Some kinds of information, however, have more structure

More information

Getting Started with Silo

Getting Started with Silo CHAPTER 1 Getting Started with Silo In this chapter, we discuss how to view, select, and manipulate models in Silo. If you are not familiar with Silo or polygon modeling, make sure to read the About Silo

More information

How to Format Tables in the American University Thesis and Dissertation Template

How to Format Tables in the American University Thesis and Dissertation Template Mac Word 2008 Formatting Tables Page 1 of 9 Click to Jump to a Topic How to Format Tables in the American University Thesis and Dissertation Template Pasting Tables into the Template (3 Steps) Creating

More information

MS Word Basics. Groups within Tabs

MS Word Basics. Groups within Tabs MS Word Basics Instructor: Bev Alderman L e t s G e t S t a r t e d! Open and close MS Word Open Word from the desktop of your computer by Clicking on the Start>All programs>microsoft Office >Word 2010

More information

INTRODUCTION... 1 UNDERSTANDING CELLS... 2 CELL CONTENT... 4

INTRODUCTION... 1 UNDERSTANDING CELLS... 2 CELL CONTENT... 4 Introduction to Microsoft Excel 2016 INTRODUCTION... 1 The Excel 2016 Environment... 1 Worksheet Views... 2 UNDERSTANDING CELLS... 2 Select a Cell Range... 3 CELL CONTENT... 4 Enter and Edit Data... 4

More information

Computer Applications Final Exam Study Guide

Computer Applications Final Exam Study Guide Name: Computer Applications Final Exam Study Guide Microsoft Word 1. To use -and-, position the pointer on top of the selected text, and then drag the selected text to the new location. 2. The Clipboard

More information

Newforma Contact Directory Quick Reference Guide

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

More information

Creating Interactive PDF Forms

Creating Interactive PDF Forms Creating Interactive PDF Forms Using Adobe Acrobat X Pro for the Mac University Information Technology Services Training, Outreach, Learning Technologies and Video Production Copyright 2012 KSU Department

More information

Copyright 2015 Integrated Environmental Solutions Limited. All rights reserved.

Copyright 2015 Integrated Environmental Solutions Limited. All rights reserved. Tabular Room Data User Guide IES Virtual Environment Copyright 2015 Integrated Environmental Solutions Limited. All rights reserved. No part of the manual is to be copied or reproduced in any form without

More information

Getting Started with Publisher 2013

Getting Started with Publisher 2013 1 Getting Started with Publisher 2013 Learning Objectives Get familiarize with the Publisher user interface Create publications from scratch or from templates Customize your template design to meet your

More information

Online Access: Login to The Media Audit

Online Access: Login to The Media Audit Online Access: Login to The Media Audit Using The Media Audit online has never been easier! Simply open your web browser and follow the quick instructions below. app.themediaaudit.com Open your favorite

More information

Workshop on Census Data Processing. TELEform Designer User Manual

Workshop on Census Data Processing. TELEform Designer User Manual Workshop on Census Data Processing TELEform Designer User Manual Contents TELEFORM MODULES... 1 TELEFORM DESIGNER MODULE... 1 FORM TEMPLATES... 1 Available Form Templates... 2 THE DESIGNER WORKSPACE...

More information

Using Microsoft Word. Working With Objects

Using Microsoft Word. Working With Objects Using Microsoft Word Many Word documents will require elements that were created in programs other than Word, such as the picture to the right. Nontext elements in a document are referred to as Objects

More information

KaleidaGraph Quick Start Guide

KaleidaGraph Quick Start Guide KaleidaGraph Quick Start Guide This document is a hands-on guide that walks you through the use of KaleidaGraph. You will probably want to print this guide and then start your exploration of the product.

More information

Access Intermediate

Access Intermediate Access 2010 - Intermediate 103-134 Advanced Queries Quick Links Overview Pages AC116 AC117 Selecting Fields Pages AC118 AC119 AC122 Sorting Results Pages AC125 AC126 Specifying Criteria Pages AC132 AC134

More information

Using Microsoft Word. Text Editing

Using Microsoft Word. Text Editing Using Microsoft Word A word processor is all about working with large amounts of text, so learning the basics of text editing is essential to being able to make the most of the program. The first thing

More information

Delphi for Windows. Inside this manual

Delphi for Windows. Inside this manual Database Desktop User s Guide Delphi for Windows I n t r o d u c t i o n Copyright Agreement SQL Windows note Database Desktop is a compact relational database application that you can use either as a

More information

Creating Vector Shapes Week 2 Assignment 1. Illustrator Defaults

Creating Vector Shapes Week 2 Assignment 1. Illustrator Defaults Illustrator Defaults Before we begin, we are going to make sure that all of us are using the same settings within our application. For this class, we will always want to make sure that our application

More information

In Depth: Writer. The word processor is arguably the most popular element within any office suite. That. Formatting Text CHAPTER 23

In Depth: Writer. The word processor is arguably the most popular element within any office suite. That. Formatting Text CHAPTER 23 CHAPTER 23 In Depth: Writer The word processor is arguably the most popular element within any office suite. That said, you ll be happy to know that OpenOffice.org s Writer component doesn t skimp on features.

More information

Training Guide. Microsoft Excel 2010 Advanced 1 Using Conditional and Custom Formats. Applying Conditional Formatting

Training Guide. Microsoft Excel 2010 Advanced 1 Using Conditional and Custom Formats. Applying Conditional Formatting Microsoft Excel 2010 Advanced 1 Using Conditional and Custom Formats Applying Conditional Formatting Excel lets you quickly apply Conditional Formatting to help you explore and analyze data visually, detect

More information

Tabs, Tables & Columns

Tabs, Tables & Columns Tabs, Tables & Columns What we will cover Creating tables Formatting tables Sorting information in tables Using columns Using tabs Tables You can insert a table several: Insert Table button This will open

More information

5 WAYS TO CUSTOMIZE ALTIUM DESIGNER FOR BETTER EFFICIENCY

5 WAYS TO CUSTOMIZE ALTIUM DESIGNER FOR BETTER EFFICIENCY Menu items, shortcut keys, and toolbar icons are the three ways of accessing features within the Altium Designer environment. All of these are customizable and may enhance the user experience with Altium

More information