NOMADS Enhancements v7.50 & v8.00. Presented by: Yvonne Sampson

Size: px
Start display at page:

Download "NOMADS Enhancements v7.50 & v8.00. Presented by: Yvonne Sampson"

Transcription

1 NOMADS Enhancements v7.50 & v8.00 Presented by: Yvonne Sampson

2 Presentation Outline V7.50 & v8.00 Enhancements Preserve Folder Controls File Maintenance Objects Embedded Panels Enhancements Library Default Menu Colours Panel Designer Enhancements Updated Designer Utilities New Control Properties QA Automation Support

3 NOMADS Enhancements V7.50 Preserve Folder Controls File Maintenance Objects Embedded Panels Enhancements Library Default Menu Colours V8.00 Panel Designer Enhancements New Properties Window New Format Definition for Grids/Listboxes Updated Designer Utilities Bulk Edit Drag and Drop Dependency Definition New Control Properties QA Automation Support

4 Preserve Folder Controls Controls no longer destroyed and redrawn when moving between tabs Controls renamed using the new directive RENAME CONTROL RENAME CONTROL from_to_list {HIDE SHOW} [,ERR=stmtref] Controls assigned unique negative CTL value Example: From.ctl=10001,To.ctl= ctls$+=bin(from.ctl,2)+bin(to.ctl,2)! build ctl string RENAME CONTROL ctls$ HIDE

5 Preserve Folder Controls Benefits controls such as grids and list boxes that contain a large amount of data Logic to load the control would only need to execute after the control is initially drawn Improves overall system performance - data does not have to be re-read from disk each time the control is drawn

6 Preserve Folder Controls Existing application logic (Pre-Display/Post- Display) may need to be changed in order to use this new feature Application must indicate when the Pre- Display and Post-Display logic will execute

7 Preserve Folder Controls Activating Preserve Folder Controls Option Turn on the Preserve Controls checkbox in the Tabs panel of the folder definition Turn on the Execute Pre-Disp One Time and Execute Post-Disp One Time attributes in the grid control on the Tabs panel of the folder definition If you want the logic to execute every time, then leave these options off.

8 Preserve Folder Controls Activating Preserve Folder Controls Option Sample Panel:

9 Preserve Folder Controls What Happens when a Tab is Selected? The first time a tab is activated: Pre-Display logic executes Controls are drawn Controls are resized (if applicable) Object persistence is applied (if applicable) Post-Display logic executes

10 Preserve Folder Controls What Happens when a Tab is Selected? When a new tab is selected: On-Exit logic for current tab executes Controls are renamed and hidden using the RENAME CONTROL directive with the HIDDEN option Fonted text, frames, pictures, and shapes are hidden using 'IMAGE'(DISABLE Img_nm$)

11 Preserve Folder Controls What Happens when a Tab is Selected? The next time the tab is selected: Pre-Display logic executes if the check box Execute Pre-Disp One Time is off Controls are renamed and restored using the RENAME CONTROL with the RESTORE option Fonted text, frames, pictures and shapes are shown using 'IMAGE'(ENABLE Img_nm$) Initially hidden fonted text, frames, pictures and shapes will be set back to their hidden state Controls are resized if the folder control is set to Auto Size and the panel had been resized Post-Display logic executes if the check box Execute Post-Disp One Time is off

12 Preserve Folder Controls Force Re-execution of Pre-Display/Post-Display Logic at Runtime New methods ForcePreDisp(Id) - Force Pre-Display logic to re-execute ForcePostDisp(Id) - Force Post-Display logic to re-execute Where Id is the tab sequential ID (set Id to zero for all tabs) Application is responsible for invoking methods For example, in your application logic, after reading a new customer you would issue Fldr'ForcePostDisp(0) This will cause the Post-Display logic to re-execute when moving between tabs.

13 Preserve Folder Controls New folder property Fldr'CurrentTab'NextId used in combination with the Execute Post- Disp One Time option Property is loaded with the value assigned in the NEXT_ID variable The next time the tab is selected, NOMADS will use this property to reload the NEXT_ID variable This property is only used if the Execute Post-Disp One Time option is turned on.

14 File Maintenance Objects The File Maintenance Utility will now handle objects Panels generated can use either a generic or custom object Panel is generated with no logic attached to the panel header or the controls

15 File Maintenance Objects Defining File Maintenance Objects Two program types added to the Parameter Selection panel in the File Maintenance Utility: Generic Object System pre-loads the Maintenance Program multi-line with the text (Standard file maintenance object) Custom Object Requires the name of the.pvc program for the file maintenance panel

16 File Maintenance Objects Defining File Maintenance Objects Sample Panel:

17 File Maintenance Objects Generic Objects Flmaint Object *win/flmaint.pvc Handles panel and control events Inherits the NOMADS object (*nomads.pvc) and the FlmaintIO object FlmaintIO Object *win/flmaintio.pvc File IO handling

18 File Maintenance Objects Flmaint Object Methods DefaultChange( ) Read current record. This logic will only execute if the control name is part of the key definition. DefaultInitialize( ) Setup key definition fields, required fields and numeric fields. DefaultOnFocus( ) Check if current record has been changed and enable/disable field inputs. See NOMADS Enhancements-V75

19 File Maintenance Objects FlmaintIO Object Methods OpenFile(_File_Name$) Open file. Returns 1 if successful, 0 if not. _File_Name$ - Name of physical file. ReadFirst( ) Return first record using same key. Returns 1 if successful, 0 if not. Update(_KeyType) Update current record. Returns 1 if successful, 0 if not. _KeyType set to 1 if the file contains an external key. Default is 0. See NOMADS Enhancements-V75

20 File Maintenance Objects Invoking a File Maintenance Panel Generic Object Cust_Id$="0001" O=new("*win/flmaint","Customer","Mylib.en") O'Process(Cust_Id$) Data for customer 0001 will automatically be loaded after the panel is displayed. Custom Object O=new("<.pvc program>","<panel name>","<library name>") O'Process(arg_1$,arg_2$...arg_20$) Note: arg_1$ thru arg_20$ are optional

21 File Maintenance Objects Customizing File Maintenance Objects Browse/Edit Buttons Panel FlmaintObj - vertical buttons Panel FlmaintObj.v horizontal buttons Copies panels to an alternate library and loads the global variable %Flmaint_Lib$ with the alternate library name. NOMADS uses these custom panels when a file maintenance is generated.

22 File Maintenance Objects Customizing File Maintenance Objects Generic Object adding custom code Copy *win/flmaint.pvc to another program name and enter this name in the Maintenance Program input field Program name must contain a.pvc extension

23 Embedded Panels Enhancements Panel header logic events (Pre-Display, Post- Display, On-Exit) will now be carried forward to the container panel The order of execution for the panel header logic events is determined by a series of options presented in a grid control on the embedded panels definition screen Default Program assignment on the Embedded Panel is also carried forward to the container panel The default program in the container panel will only be used if one does not exist on the Embedded Panel.

24 Embedded Panels Enhancements Assigning Embedded Panels Sample Panel:

25 Library Defaults Menu Colours The menu text background and left edge colours can now be defined in the Library Defaults Colours are applied to two areas of the menu giving a two-tone appearance Left edge bitmap portion of the menu Individual menu entries text background Valid Colour formats Pre-defined system colour such as Light Green Custom (RGB codes) User Defined (fixed or string expression) System Default - uses Windows system colours

26 Library Defaults Menu Colours To Assign Default Menu Colours Turn on the Menus (Text Background/Left Edge) checkbox in the Font/Clr tab of the Library Defaults definition.

27 Library Defaults Menu Colours To Assign Default Menu Colours Press the colour palette button

28 Library Defaults Menu Colours Order of Precedence for applying colours: 1. Menu definition settings 2. Library Defaults settings 3. Global settings: %NOMAD_MENU_LEFTEDGE_CLR$ - Left edge colour %NOMAD_MENU_TEXTBACKGROUND_CLR$ - Text background colour

29 Panel Designer Enhancements Completely redesigned Simpler, faster, and more intuitive Build applications faster Save valuable development time New look and feel is up-to-date and used by many other designer tools available in the market

30 Panel Designer Enhancements New interactive Properties window Uses a grid to display the control properties Control and panel properties are stored in the Providex file *win/providex.prp Properties are grouped by categories On-The-Fly changes Automatically updated This new format eliminates the need to navigate through folder tabs and panels to select various properties and values

31 Panel Designer Enhancements Resizable active window Window is anchored to the right of the Panel Designer window when the designer is invoked Window can be moved within the Panel Designer window Components include properties list, preview button and help text display For editing both the panel header and control properties

32 New Designer Interface Your Panel Toolbar Controls Toolbox Properties Window

33 Properties Window Components of the Properties Window Properties list grid control Preview Button Help text display field

34 Properties Window Properties List Uses a grid control to hold the available properties for the panel header or control Grid contains 2 columns: Property Name of property Only properties that apply to the specified control or panel header will be displayed Value Contains the current value defined for the property or the default value assigned

35 Properties Window Value Column Four cell types used to represent data: Normal CheckMarkRecessed DropBox Query

36 Properties Window Preview Button Button will be visible or hidden depending on the object type View font and colour properties of true GUI objects such as buttons and check boxes Help Text Locked borderless multi-lines Property name and brief description of the property Help text appears when clicking on a cell in the Property or Value column

37 Properties Window Properties File Contains the details for all the properties of the controls and panel header Providex keyed file *win/providex.prp Key Information Primary key - property name (30 characters) Alternate key - property group (20 characters) + property name File Details Contains info such as property name, applicable object types, property categories, format mask, validator program and help text

38 Properties Window Property Grouping Properties are grouped into categories Property category order stored in keyed file *win/providex.grp Ten property categories Default order: Name/Type, Coordinates, Display, Events, Validation, Attributes, Colours, Font, User Aids, Other

39 Properties Window Property Grouping Name/Type Contains the Control Name, Object Type, Data Class, and any additional properties such as List Box Type and Shape Coordinates Object co-ordinates: Column, Line, Width and Height Display Visual display information; e.g., Text/Bitmaps, Input Length, Format Mask, Pen Style Events Logic that will execute when a particular event occurs; e.g., On Change, On Focus and Post Create events Validation Validation logic for multi-line controls; e.g., Rules, Formatter and Validator

40 Properties Window Property Grouping Attributes Control attributes represented as check box cells in the property list; e.g, Auto Tab Skip, Numeric, Initially Hidden Colours Background and Foreground colours of the control or panel Font Graphic Font User Aids Floating Tip, Help Reference and Message Bar text Other Additional panel/object features; e.g., Groups, Popup Menu, Query, User Tag and Security references

41 Properties Window Changing the Property Order Select Options > Property Categories in the designer menu New order used the next time control or panel header is selected

42 Properties Window Editing the Panel Header By default, the panel header properties are loaded into the Properties window when the designer is invoked Changes to the font, background and foreground colours are automatically applied to all the controls in your panel Use the Undo button ( ) to reverse last change

43 Properties Window Editing Control Properties Select control by using the mouse (single click) or by selecting an entry from the drop box on the designer toolbar Properties window automatically loaded Changing a value in the Properties window is automatically reflected in your panel and the library Use the Undo button ( ) to reverse last change

44 Format Definition New Format Definition for Grids/List Boxes New interface for format definition of grid and list box controls Invoked using Format Definition property in the Display group Use the Insert Above or Insert Below buttons to add a new row in the grid Column information will vary if grid or list boxes are selected

45 Format Definition New Format Definition for Grids/List Boxes Different cell types used to represent each column: Normal Used for free form values, such as Column Name CheckMarkRecessed Used for On/Off selections, such as Uppercase Sort or Bitmap DropBox Used for preset selections, such as Alignment and Cell Type Query Used for values requiring more than 1 input, such as Title and Width. To add or edit a Title or Width value, press the lookup button to the right of the cell.

46 Format Definition New Format Definition for Grids/List Boxes Sample Panel:

47 Updated Designer Utilities New Look and Feel For Designer Utilities Bulk Edit Utility Dependencies Utility Drag&Drop Utility

48 Bulk Edit Utility Improved interface uses a grid control Resizable window Changeable properties retrieved from the keyed file *win/providex.prp Property categories loaded: Events Attributes Coordinates Display Colours Font User Aids Other

49 Bulk Edit Utility Grid consists of 2 columns: Property Value Name of property Value to apply to the property Different cell types represent Value column DropBox Normal Query Help Text Used for preset selections (As is/off/on) -Used for Coordinates group (Width and Height) Used for values requiring more than 1 input such as Events, Font and Colours groups. Note: To edit, press the lookup button to the right of the cell. - Floating tip for Property column - Contains a list of all applicable controls

50 Bulk Edit Utility Sample Panel:

51 Dependencies Utility New interface uses a grid control Grid consists of five columns: Condition Actions for Controls (press the lookup button to add/edit an action) Actions for Groups (press the lookup button to add/edit an action) Invert Logic (press the lookup button to add/edit logic) Resizable window Use the Insert Above or Insert Below buttons to add a new row Use the move up/move down buttons ( ) to change dependency order

52 Dependencies Utility Sample Panel:

53 Drag and Drop Utility New interface uses a grid control Grid consists of 3 columns: Drag From Drop On Logic (press the lookup button to add/edit logic) Resizable window Use the Insert Above or Insert Below buttons to add a new row

54 Drag and Drop Utility Sample Panel:

55 New Control Properties Line Colour - LineColour$ Display colour of connecting lines in a Tree View control Added to the Colours group in the Panel Designer Valid Colour formats: Pre-defined system colour such as Light Green Custom (RGB codes) User Defined (fixed or string expression) Multi-line Auto Resize On Focus On Focus Resize Width - OnFocusCols On Focus Resize Height OnFocusLines Added to the Display group in the Panel Designer Numeric value between

56 QA Automation Support Activated by setting global variable %NOMAD_AUTOMATION_ENABLED=1 GUI controls created using OWN= extension Automation Text Text/name exposed to external automation tools Added to the Display group in the Panel Designer Value can be fixed, expression or message library reference If blank, NOMADS uses the control name as default Attend QA Automation session for full details

57 Questions and Answers

58 End of Presentation THANK YOU!

ProvideX. NOMADS Enhancements

ProvideX. NOMADS Enhancements ProvideX VERSION 8.0 NOMADS Enhancements Introduction 3 Panel Designer Enhancements 5 Properties Window 7 New Format Definition for Grids/List Boxes 12 Bulk Edit Utility 14 Drag and Drop Utility 16 Dependency

More information

Programming in C# Project 1:

Programming in C# Project 1: Programming in C# Project 1: Set the text in the Form s title bar. Change the Form s background color. Place a Label control on the Form. Display text in a Label control. Place a PictureBox control on

More information

v5.1 NOMADS Enhancements

v5.1 NOMADS Enhancements Partners in Success v5.1 NOMADS Enhancements Presented by: Yvonne Sampson Copyright 2002 Best Software Canada Ltd. All rights reserved. No part of this publication may be reproduced, or transmitted in

More information

Tutorial 3 - Welcome Application

Tutorial 3 - Welcome Application 1 Tutorial 3 - Welcome Application Introduction to Visual Programming Outline 3.1 Test-Driving the Welcome Application 3.2 Constructing the Welcome Application 3.3 Objects used in the Welcome Application

More information

Nauticom NetEditor: A How-to Guide

Nauticom NetEditor: A How-to Guide Nauticom NetEditor: A How-to Guide Table of Contents 1. Getting Started 2. The Editor Full Screen Preview Search Check Spelling Clipboard: Cut, Copy, and Paste Undo / Redo Foreground Color Background Color

More information

Creating & Modifying Tables in Word 2003

Creating & Modifying Tables in Word 2003 Creating & Modifying Tables in Word 2003 This bookl LaTonya Motley Trainer / Instructional Technology Specialist Staff Development 660-6452 Table of Contents Overview... 1 Inserting Tables... 1 Using Pre-Set

More information

Adobe Photoshop Sh S.K. Sublania and Sh. Naresh Chand

Adobe Photoshop Sh S.K. Sublania and Sh. Naresh Chand Adobe Photoshop Sh S.K. Sublania and Sh. Naresh Chand Photoshop is the software for image processing. With this you can manipulate your pictures, either scanned or otherwise inserted to a great extant.

More information

MODIFYING CIRCULATION WINDOW DISPLAYS

MODIFYING CIRCULATION WINDOW DISPLAYS 5-58 Using M3 Circulation MODIFYING CIRCULATION WINDOW DISPLAYS Note: If M3 v1.6 was your first installation of M3, graphic cells appear by default in the Patron and Item panes for all modes. Tip: Create

More information

OpenForms360 Validation User Guide Notable Solutions Inc.

OpenForms360 Validation User Guide Notable Solutions Inc. OpenForms360 Validation User Guide 2011 Notable Solutions Inc. 1 T A B L E O F C O N T EN T S Introduction...5 What is OpenForms360 Validation?... 5 Using OpenForms360 Validation... 5 Features at a glance...

More information

POS Designer Utility

POS Designer Utility POS Designer Utility POS Designer Utility 01/15/2015 User Reference Manual Copyright 2012-2015 by Celerant Technology Corp. All rights reserved worldwide. This manual, as well as the software described

More information

Simply Personnel Screen Designer

Simply Personnel Screen Designer Simply Personnel Screen Designer -Training Workbook- Screen Designer Page 1 Build 12.8 Introduction to Simply Personnel Screen Designer This document provides step-by-step guide for employee users to give

More information

EXCEL 2010 COMPETENCIES

EXCEL 2010 COMPETENCIES EXCEL 2010 COMPETENCIES Working with Cells Use undo and redo Clear cell content Enter text, dates, and numbers Edit cell content Go to a specific cell Insert and delete selected cells Cut, copy, paste,

More information

STUDENT NAME ECDL: EXCEL MR BENNELL. This is an example of how to use this checklist / evidence document

STUDENT NAME ECDL: EXCEL MR BENNELL. This is an example of how to use this checklist / evidence document This part contains an instruction, task or a skill which you need to sow evidence of being able to do Once you have completed a task and shown evidence of it write the date underneath the task instruction

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

Quick Reference Card Business Objects Toolbar Design Mode

Quick Reference Card Business Objects Toolbar Design Mode Icon Description Open in a new window Pin/Unpin this tab Close this tab File Toolbar New create a new document Open Open a document Select a Folder Select a Document Select Open Save Click the button to

More information

Microsoft Office Excel 2013 Courses 24 Hours

Microsoft Office Excel 2013 Courses 24 Hours Microsoft Office Excel 2013 Courses 24 Hours COURSE OUTLINES FOUNDATION LEVEL COURSE OUTLINE Getting Started With Excel 2013 Starting Excel 2013 Selecting the Blank Worksheet Template The Excel 2013 Cell

More information

QRG: Using the WYSIWYG Editor

QRG: Using the WYSIWYG Editor WYSIWYG Editor QRG: Using the WYSIWYG Editor WYSIWYG stands for What You See Is What You Get. The WYSIWYG Editor is the reason you don t need to be an IT Programmer to write content for your web page.

More information

Report Designer Report Types Table Report Multi-Column Report Label Report Parameterized Report Cross-Tab Report Drill-Down Report Chart with Static

Report Designer Report Types Table Report Multi-Column Report Label Report Parameterized Report Cross-Tab Report Drill-Down Report Chart with Static Table of Contents Report Designer Report Types Table Report Multi-Column Report Label Report Parameterized Report Cross-Tab Report Drill-Down Report Chart with Static Series Chart with Dynamic Series Master-Detail

More information

AutoCAD 2009 User InterfaceChapter1:

AutoCAD 2009 User InterfaceChapter1: AutoCAD 2009 User InterfaceChapter1: Chapter 1 The AutoCAD 2009 interface has been enhanced to make AutoCAD even easier to use, while making as much screen space available as possible. In this chapter,

More information

Excel Select a template category in the Office.com Templates section. 5. Click the Download button.

Excel Select a template category in the Office.com Templates section. 5. Click the Download button. Microsoft QUICK Excel 2010 Source Getting Started The Excel Window u v w z Creating a New Blank Workbook 2. Select New in the left pane. 3. Select the Blank workbook template in the Available Templates

More information

ProvideX. NOMADS Smart Lists. Introduction. Defining Smart Lists. Formatting Smart Lists. Using Smart Lists Outside of NOMADS. Creating a Smart File

ProvideX. NOMADS Smart Lists. Introduction. Defining Smart Lists. Formatting Smart Lists. Using Smart Lists Outside of NOMADS. Creating a Smart File ProvideX Version 5.10 NOMADS Smart Lists Introduction Defining Smart Lists Formatting Smart Lists Using Smart Lists Outside of NOMADS Creating a Smart File ProvideX is a trademark of Best Software Canada

More information

Introduction to the Visual Studio.NET Integrated Development Environment IDE. CSC 211 Intermediate Programming

Introduction to the Visual Studio.NET Integrated Development Environment IDE. CSC 211 Intermediate Programming Introduction to the Visual Studio.NET Integrated Development Environment IDE CSC 211 Intermediate Programming Visual Studio.NET Integrated Development Environment (IDE) The Start Page(Fig. 1) Helpful links

More information

ProvideX. NOMADS Enhancements

ProvideX. NOMADS Enhancements ProvideX VERSION 7.5 NOMADS Enhancements Introduction 3 Menu Colours 5 Numeric Check Boxes 9 Multiple Character Translation Values 10 COM Control Enhancements 12 Embedded Panels 14 Alternate Screen Layouts

More information

Multimedia web page Board

Multimedia web page Board Page where the users have a space (board) to create their own compositions with graphics and texts previously inserted by the author; furthermore, the users will be able to write their own texts: Multimedia

More information

Content provided in partnership with Que, from the book Show Me Microsoft Office Access 2003 by Steve JohnsonÃÃ

Content provided in partnership with Que, from the book Show Me Microsoft Office Access 2003 by Steve JohnsonÃÃ ,PSURYLQJWKH$SSHDUDQFHRI )RUPVDQGHSRUWV Content provided in partnership with Que, from the book Show Me Microsoft Office Access 00 by Steve JohnsonÃÃ Introduction The objects in a database most on display

More information

Drawing. Chapter 11. Bridge. A. Insert Views. Step 1. Click File Menu > New, click Drawing and OK. on the View Layout toolbar.

Drawing. Chapter 11. Bridge. A. Insert Views. Step 1. Click File Menu > New, click Drawing and OK. on the View Layout toolbar. Chapter 11 Bridge Drawing A. Insert Views. Step 1. Click File Menu > New, click Drawing and OK. Step 2. Click Model View on the View Layout toolbar. Step 3. Click Browse in the Property Manager. Step 4.

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

Rich Text Editor Quick Reference

Rich Text Editor Quick Reference Rich Text Editor Quick Reference Introduction Using the rich text editor is similar to using a word processing application such as Microsoft Word. After data is typed into the editing area it can be formatted

More information

Dive Into Visual C# 2008 Express

Dive Into Visual C# 2008 Express 1 2 2 Dive Into Visual C# 2008 Express OBJECTIVES In this chapter you will learn: The basics of the Visual Studio Integrated Development Environment (IDE) that assists you in writing, running and debugging

More information

DRAFT. Table of Contents About this manual... ix About CuteSITE Builder... ix. Getting Started... 1

DRAFT. Table of Contents About this manual... ix About CuteSITE Builder... ix. Getting Started... 1 DRAFT Table of Contents About this manual... ix About CuteSITE Builder... ix Getting Started... 1 Setting up... 1 System Requirements... 1 To install CuteSITE Builder... 1 To register CuteSITE Builder...

More information

Microsoft Word 2007 on Windows

Microsoft Word 2007 on Windows 1 Microsoft Word 2007 on Windows Word is a very popular text formatting and editing program. It is the standard for writing papers and other documents. This tutorial and quick start guide will help you

More information

Create a new document based on default template, other available template like: memo, fax, agenda.

Create a new document based on default template, other available template like: memo, fax, agenda. Word Processing 3 Objectives: Working with Documents Enhancing Productivity Using the Application Open, close a word processing application. Open, close documents. Create a new document based on default

More information

13 FORMATTING WORKSHEETS

13 FORMATTING WORKSHEETS 13 FORMATTING WORKSHEETS 13.1 INTRODUCTION Excel has a number of formatting options to give your worksheets a polished look. You can change the size, colour and angle of fonts, add colour to the borders

More information

Excel Tutorials - File Size & Duration

Excel Tutorials - File Size & Duration Get Familiar with Excel 46.30 2.96 The Excel Environment 4.10 0.17 Quick Access Toolbar 3.10 0.26 Excel Ribbon 3.10 0.26 File Tab 3.10 0.32 Home Tab 5.10 0.16 Insert Tab 3.10 0.16 Page Layout Tab 3.10

More information

InDesign CS Basics. To learn the tools and features of InDesign CS to create publications efficiently and effectively.

InDesign CS Basics. To learn the tools and features of InDesign CS to create publications efficiently and effectively. InDesign CS Basics InDesign Basics Training Objective To learn the tools and features of InDesign CS to create publications efficiently and effectively. What you can expect to learn from this class: How

More information

Word Tutorial 3. Creating a Multiple- Page Report COMPREHENSIVE

Word Tutorial 3. Creating a Multiple- Page Report COMPREHENSIVE Word Tutorial 3 Creating a Multiple- Page Report COMPREHENSIVE Objectives Format headings with Quick Styles Insert a manual page break Create and edit a table Sort rows in a table Modify a table s structure

More information

Advanced Excel. Click Computer if required, then click Browse.

Advanced Excel. Click Computer if required, then click Browse. Advanced Excel 1. Using the Application 1.1. Working with spreadsheets 1.1.1 Open a spreadsheet application. Click the Start button. Select All Programs. Click Microsoft Excel 2013. 1.1.1 Close a spreadsheet

More information

BusinessObjects Frequently Asked Questions

BusinessObjects Frequently Asked Questions BusinessObjects Frequently Asked Questions Contents Is there a quick way of printing together several reports from the same document?... 2 Is there a way of controlling the text wrap of a cell?... 2 How

More information

Introduction Accessing MICS Compiler Learning MICS Compiler CHAPTER 1: Searching for Data Surveys Indicators...

Introduction Accessing MICS Compiler Learning MICS Compiler CHAPTER 1: Searching for Data Surveys Indicators... Acknowledgement MICS Compiler is a web application that has been developed by UNICEF to provide access to Multiple Indicator Cluster Survey data. The system is built on DevInfo technology. 3 Contents Introduction...

More information

ProvideX NOMADS Reference ProvideX Ver. 4.20

ProvideX NOMADS Reference ProvideX Ver. 4.20 Welcome to the ProvideX NOMADS Reference ProvideX Ver. 4.20 Introduction: NOMADS is Sage Canada s acronym for the ProvideX Non-Procedural Object Module Application Development System which is bundled with

More information

To change the shape of a floating toolbar

To change the shape of a floating toolbar Modifying toolbars You can change the size of toolbar buttons and reposition, add, or delete toolbar buttons. You can also change the toolbar name and turn tooltips on and off. An important item to note-

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

Getting Started With the Cisco PAM Desktop Software

Getting Started With the Cisco PAM Desktop Software CHAPTER 3 Getting Started With the Cisco PAM Desktop Software This chapter describes how to install the Cisco PAM desktop client software, log on to Cisco PAM, and begin configuring access control features

More information

FactoryLink 7. Version 7.0. Client Builder Reference Manual

FactoryLink 7. Version 7.0. Client Builder Reference Manual FactoryLink 7 Version 7.0 Client Builder Reference Manual Copyright 2000 United States Data Corporation. All rights reserved. NOTICE: The information contained in this document (and other media provided

More information

Excel 2010 Tutorials - Video File Attributes

Excel 2010 Tutorials - Video File Attributes Get Familiar with Excel 2010 42.30 2.70 The Excel 2010 Environment 4.10 0.18 Quick Access Toolbar 3.10 0.27 Excel 2010 Ribbon 3.10 0.26 File Tab 3.10 0.28 Home Tab 5.10 0.17 Insert Tab 3.10 0.18 Page Layout

More information

Labels and Envelopes in Word 2013

Labels and Envelopes in Word 2013 Labels and Envelopes in Word 2013 Labels... 2 Labels - A Blank Page... 2 Selecting the Label Type... 2 Creating the Label Document... 2 Labels - A Page of the Same... 3 Printing to a Specific Label on

More information

For more tips on using this workbook, press F1 and click More information about this template.

For more tips on using this workbook, press F1 and click More information about this template. Excel: Menu to ribbon reference To view Office 2003 menu and toolbar commands and their Office 2010 equivalents, click a worksheet tab at the bottom of the window. If you don't see the tab you want, right-click

More information

How to Create Happy End-Users

How to Create Happy End-Users How to Create Happy End-Users Presented by: Jane Raymond Presentation Outline Widgets SpellCheck AutoComplete Query Enhancements Listbox & Grid Enhancements And More For the Developer Widgets Create different

More information

Excel 2010 Level 1: The Excel Environment

Excel 2010 Level 1: The Excel Environment Excel 2010 Level 1: The Excel Environment Table of Contents The Excel 2010 Environment... 1 The Excel Window... 1 File Tab... 1 The Quick Access Toolbar... 4 Access the Customize the Quick Access Toolbar

More information

Access 2016 Essentials Syllabus

Access 2016 Essentials Syllabus Access 2016 Essentials Syllabus Lesson 1 Creating & Managing Databases 1.1 Introduction Lesson content; What is a database? The course folders; The course player; Screen resolution notes; Prerequisites;

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

Excel 2007 Tutorials - Video File Attributes

Excel 2007 Tutorials - Video File Attributes Get Familiar with Excel 2007 42.40 3.02 The Excel 2007 Environment 4.10 0.19 Office Button 3.10 0.31 Quick Access Toolbar 3.10 0.33 Excel 2007 Ribbon 3.10 0.26 Home Tab 5.10 0.19 Insert Tab 3.10 0.19 Page

More information

Productivity Tools Objectives 1

Productivity Tools Objectives 1 Productivity Tools Objectives 1 Word 2003 Understand Microsoft Office Word 2003 Launch Microsoft Office Word 2003 Open Documents Understand The Working Screen Experiment With The Working Screen Navigate

More information

SPARK. User Manual Ver ITLAQ Technologies

SPARK. User Manual Ver ITLAQ Technologies SPARK Forms Builder for Office 365 User Manual Ver. 3.5.50.102 0 ITLAQ Technologies www.itlaq.com Table of Contents 1 The Form Designer Workspace... 3 1.1 Form Toolbox... 3 1.1.1 Hiding/ Unhiding/ Minimizing

More information

Quick Reference Summary

Quick Reference Summary Microsoft Excel 2010 Quick Reference Summary Microsoft Excel 2010 Quick Reference Summary 3-D Chart, Rotate EX 462 3-D Rotation button (Chart Tools Layout tab Background, change rotation (Format Chart

More information

Document Editor Basics

Document Editor Basics Document Editor Basics When you use the Document Editor option, either from ZP Toolbox or from the Output option drop-down box, you will be taken to the Report Designer Screen. While in this window, you

More information

ECDL Module 6 REFERENCE MANUAL

ECDL Module 6 REFERENCE MANUAL ECDL Module 6 REFERENCE MANUAL Presentation Microsoft PowerPoint XP Edition for ECDL Syllabus Four PAGE 2 - ECDL MODULE 6 (USING POWERPOINT XP) - MANUAL 6.1 GETTING STARTED... 4 6.1.1 FIRST STEPS WITH

More information

Using Microsoft Access

Using Microsoft Access Using Microsoft Access USING MICROSOFT ACCESS 1 Interfaces 2 Basic Macros 2 Exercise 1. Creating a Test Macro 2 Exercise 2. Creating a Macro with Multiple Steps 3 Exercise 3. Using Sub Macros 5 Expressions

More information

FIREFOX MENU REFERENCE This menu reference is available in a prettier format at

FIREFOX MENU REFERENCE This menu reference is available in a prettier format at FIREFOX MENU REFERENCE This menu reference is available in a prettier format at http://support.mozilla.com/en-us/kb/menu+reference FILE New Window New Tab Open Location Open File Close (Window) Close Tab

More information

Guide to WB Annotations

Guide to WB Annotations Guide to WB Annotations 04 May 2016 Annotations are a powerful new feature added to Workbench v1.2.0 (Released May 2016) for placing text and symbols within wb_view tabs and windows. They enable generation

More information

SmartArt Office 2007

SmartArt Office 2007 SmartArt Office 2007 This is not an official training handout of the, Davis School District SmartArt... 2 Inserting SmartArt... 2 Entering the Text... 2 Adding a Shape... 2 Deleting a Shape... 2 Adding

More information

Tree and Data Grid for Micro Charts User Guide

Tree and Data Grid for Micro Charts User Guide COMPONENTS FOR XCELSIUS Tree and Data Grid for Micro Charts User Guide Version 1.1 Inovista Copyright 2009 All Rights Reserved Page 1 TABLE OF CONTENTS Components for Xcelsius... 1 Introduction... 4 Data

More information

Table of Contents. Word. Using the mouse wheel 39 Moving the insertion point using the keyboard 40 Resume reading 41

Table of Contents. Word. Using the mouse wheel 39 Moving the insertion point using the keyboard 40 Resume reading 41 Table of Contents iii Table of Contents Word Starting Word What is word processing? 2 Starting Word 2 Exploring the Start screen 4 Creating a blank document 4 Exploring the Word document window 5 Exploring

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

Let s create another simple report from one of our queries available: Author Age query.

Let s create another simple report from one of our queries available: Author Age query. Microsoft Access 6: Reports & Other Useful Functions This can be a very quick way to build a report, especially if you plan to put only a few fields on your report. When you click on the Blank Report button,

More information

NOMADS Introduction File Formats Outline Screen Library

NOMADS Introduction File Formats Outline Screen Library ProvideXVersion 8.30 NOMADS File Layouts Introduction 3 File Formats Outline 4 Screen Library 5 Data Dictionary 114 System Defaults Record Layout 119 DATA CLASS Record Layout 120 User Defined Colours Layout

More information

What can I say? The Excel program window (shown in Figure 1-1)

What can I say? The Excel program window (shown in Figure 1-1) 1 Customizing Technique Save Time By Switching in and out of Full Screen view Customizing sheet and workbook settings Saving your custom settings in a workbook template the Excel Screen Display What can

More information

Office Applications II Lesson Objectives

Office Applications II Lesson Objectives Office Applications II Lesson Unit 1: MICROSOFT EXCEL SPREADSHEETS BASICS What is a Spreadsheet and What Are Its Uses? Define spreadsheets Define the Microsoft Excel application List business, consumer,

More information

Open. Select the database and click. Print. Set printing options using the dropdown menus, then click the

Open. Select the database and click. Print. Set printing options using the dropdown menus, then click the The Original Quick Reference Guides Microsoft Access 2010 Access is a tool for creating and managing databases collections of related records structured in an easily accessible format such as a table,

More information

DEVELOPING DATABASE APPLICATIONS (INTERMEDIATE MICROSOFT ACCESS, X405.5)

DEVELOPING DATABASE APPLICATIONS (INTERMEDIATE MICROSOFT ACCESS, X405.5) Technology & Information Management Instructor: Michael Kremer, Ph.D. Database Program: Microsoft Access Series DEVELOPING DATABASE APPLICATIONS (INTERMEDIATE MICROSOFT ACCESS, X405.5) Section 6 AGENDA

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

Learning Map Excel 2007

Learning Map Excel 2007 Learning Map Excel 2007 Our comprehensive online Excel tutorials are organized in such a way that it makes it easy to obtain guidance on specific Excel features while you are working in Excel. This structure

More information

PowerPoint 2016 Building a Presentation

PowerPoint 2016 Building a Presentation PowerPoint 2016 Building a Presentation What is PowerPoint? PowerPoint is presentation software that helps users quickly and efficiently create dynamic, professional-looking presentations through the use

More information

Customize the Navigation Pane

Customize the Navigation Pane Page 1 of 7 Microsoft Office Outlook Home > Products > Outlook > Outlook 2007 Help and How-to > Search and navigation > Navigation pane Customize the Navigation Pane Applies to: Microsoft Office Outlook

More information

MICROSOFT EXCEL BIS 202. Lesson 1. Prepared By: Amna Alshurooqi Hajar Alshurooqi

MICROSOFT EXCEL BIS 202. Lesson 1. Prepared By: Amna Alshurooqi Hajar Alshurooqi MICROSOFT EXCEL Prepared By: Amna Alshurooqi Hajar Alshurooqi Lesson 1 BIS 202 1. INTRODUCTION Microsoft Excel is a spreadsheet application used to perform financial calculations, statistical analysis,

More information

Productivity Tools Objectives

Productivity Tools Objectives Word 2003 Understand Microsoft Office Word 2003 Launch Microsoft Office Word 2003 Open Documents Understand The Working Screen Experiment With The Working Screen Navigate Documents Close Documents And

More information

Microsoft FrontPage Practical Session

Microsoft FrontPage Practical Session Ministry of manpower Higher college of technology Department of Information Technology QA Umbrella Workshop 30 th August- 3 rd September 2008 IT Skills Microsoft FrontPage Practical Session Copyright of

More information

NiceForm User Guide. English Edition. Rev Euro Plus d.o.o. & Niceware International LLC All rights reserved.

NiceForm User Guide. English Edition. Rev Euro Plus d.o.o. & Niceware International LLC All rights reserved. www.nicelabel.com, info@nicelabel.com English Edition Rev-0910 2009 Euro Plus d.o.o. & Niceware International LLC All rights reserved. www.nicelabel.com Head Office Euro Plus d.o.o. Ulica Lojzeta Hrovata

More information

OPTOTERMINAL QLARITY FOUNDRY USER'S MANUAL REVISION 2.5

OPTOTERMINAL QLARITY FOUNDRY USER'S MANUAL REVISION 2.5 OPTOTERMINAL QLARITY FOUNDRY USER'S MANUAL REVISION 2.5 Opto 22 43044 Business Park Drive Temecula, CA 92590-3614 USA Phone 800.321.OPTO (6786) or 951.695.3000 Fax 800.832OPTO (6786) or 951.695.2712 Email:

More information

Severe Weather Safety PSA

Severe Weather Safety PSA Contents Add Text 2 Format Text 3 Add Stickers 4 Resize Stickers 8 Change the Color of the Canvas 9 Name the Project 12 Add a Page 12 Practice Adding and Formatting Text 13 Use the Paint Brush Tool 14

More information

Microsoft Office. Microsoft Office

Microsoft Office. Microsoft Office is an office suite of interrelated desktop applications, servers and services for the Microsoft Windows. It is a horizontal market software that is used in a wide range of industries. was introduced by

More information

Creating a Website with Publisher 2016

Creating a Website with Publisher 2016 Creating a Website with Publisher 2016 Getting Started University Information Technology Services Learning Technologies, Training & Audiovisual Outreach Copyright 2017 KSU Division of University Information

More information

Word 2013 Quick Start Guide

Word 2013 Quick Start Guide Getting Started File Tab: Click to access actions like Print, Save As, and Word Options. Ribbon: Logically organize actions onto Tabs, Groups, and Buttons to facilitate finding commands. Active Document

More information

Learn more about Pages, Keynote & Numbers

Learn more about Pages, Keynote & Numbers Learn more about Pages, Keynote & Numbers HCPS Instructional Technology May 2012 Adapted from Apple Help Guides CHAPTER ONE: PAGES Part 1: Get to Know Pages Opening and Creating Documents Opening a Pages

More information

P3e REPORT WRITER CREATING A BLANK REPORT

P3e REPORT WRITER CREATING A BLANK REPORT P3e REPORT WRITER CREATING A BLANK REPORT 1. On the Reports window, select a report, then click Copy. 2. Click Paste. 3. Click Modify. 4. Click the New Report icon. The report will look like the following

More information

European Computer Driving Licence

European Computer Driving Licence European Computer Driving Licence E C D L S y l l a b u s 5. 0 Module 6 Presentation ECDL Syllabus 5 Courseware Module 6 Contents USING THE APPLICATION... 1 OPENING & CLOSING MS POWERPOINT & PRESENTATIONS...

More information

PowerPoint Launching PowerPointX

PowerPoint Launching PowerPointX PowerPoint 2004 Launching PowerPointX 1. Start PowerPoint by clicking on the PowerPoint icon in the dock or finding it in the hard drive in the Applications folder under Microsoft Office 2004. PowerPoint

More information

Microsoft Excel 2010 Part 2: Intermediate Excel

Microsoft Excel 2010 Part 2: Intermediate Excel CALIFORNIA STATE UNIVERSITY, LOS ANGELES INFORMATION TECHNOLOGY SERVICES Microsoft Excel 2010 Part 2: Intermediate Excel Spring 2014, Version 1.0 Table of Contents Introduction...3 Working with Rows and

More information

Creating a Website in Schoolwires Technology Integration Center

Creating a Website in Schoolwires Technology Integration Center Creating a Website in Schoolwires Technology Integration Center Overview and Terminology... 2 Logging into Schoolwires... 2 Changing a password... 2 Accessing Site Manager... 2 Section Workspace Overview...

More information

GraphWorX64 Productivity Tips

GraphWorX64 Productivity Tips Description: Overview of the most important productivity tools in GraphWorX64 General Requirement: Basic knowledge of GraphWorX64. Introduction GraphWorX64 has a very powerful development environment in

More information

Dreamweaver MX Overview. Maintaining a Web Site

Dreamweaver MX Overview. Maintaining a Web Site Dreamweaver MX Overview Maintaining a Web Site... 1 The Process... 1 Filenames... 1 Starting Dreamweaver... 2 Uploading and Downloading Files... 6 Check In and Check Out Files... 6 Editing Pages in Dreamweaver...

More information

Motic Images Plus 3.0 ML Software. Windows OS User Manual

Motic Images Plus 3.0 ML Software. Windows OS User Manual Motic Images Plus 3.0 ML Software Windows OS User Manual Motic Images Plus 3.0 ML Software Windows OS User Manual CONTENTS (Linked) Introduction 05 Menus and tools 05 File 06 New 06 Open 07 Save 07 Save

More information

Excel 2016 Basics for Mac

Excel 2016 Basics for Mac Excel 2016 Basics for Mac Excel 2016 Basics for Mac Training Objective To learn the tools and features to get started using Excel 2016 more efficiently and effectively. What you can expect to learn from

More information

MINT Interactive User s Guide

MINT Interactive User s Guide MINT Interactive User s Guide MINT Interactive is very powerful board software including rich functions and gallery software, which are very useful for lecture environment. It will be continuously upgraded

More information

button Double-click any tab on the Ribbon to minimize it. To expand, click the Expand the Ribbon button

button Double-click any tab on the Ribbon to minimize it. To expand, click the Expand the Ribbon button PROCEDURES LESSON 1: CREATING WD DOCUMENTS WITH HEADERS AND FOOTERS Starting Word 1 Click the Start button 2 Click All Programs 3 Click the Microsoft Office folder icon 4 Click Microsoft Word 2010 1 Click

More information

Microsoft Excel Important Notice

Microsoft Excel Important Notice Microsoft Excel 2013 Important Notice All candidates who follow an ICDL/ECDL course must have an official ICDL/ECDL Registration Number (which is proof of your Profile Number with ICDL/ECDL and will track

More information

Galaxie Report Editor

Galaxie Report Editor Varian, Inc. 2700 Mitchell Drive Walnut Creek, CA 94598-1675/USA Galaxie Report Editor User s Guide Varian, Inc. 2008 Printed in U.S.A. 03-914949-00: Rev 6 Galaxie Report Editor i Table of Contents Introduction...

More information

GE Fanuc Automation. CIMPLICITY HMI Plant Edition. Trend and XY Chart. CIMPLICITY Monitoring and Control Products.

GE Fanuc Automation. CIMPLICITY HMI Plant Edition. Trend and XY Chart. CIMPLICITY Monitoring and Control Products. GE Fanuc Automation CIMPLICITY Monitoring and Control Products CIMPLICITY HMI Plant Edition Trend and XY Chart Operation Manual GFK-1260H July 2001 Following is a list of documentation icons: GFL-005 Warning

More information

Budget Exercise for Intermediate Excel

Budget Exercise for Intermediate Excel Budget Exercise for Intermediate Excel Follow the directions below to create a 12 month budget exercise. Read through each individual direction before performing it, like you are following recipe instructions.

More information

Excel 2013 Intermediate

Excel 2013 Intermediate Excel 2013 Intermediate Quick Access Toolbar... 1 Customizing Excel... 2 Keyboard Shortcuts... 2 Navigating the Spreadsheet... 2 Status Bar... 3 Worksheets... 3 Group Column/Row Adjusments... 4 Hiding

More information