Best Practice - Programming Ribbons

Size: px
Start display at page:

Download "Best Practice - Programming Ribbons"

Transcription

1 Best Practice - Programming Ribbons

2 Copyright 2016 Lexmark. All rights reserved. Lexmark is a trademark of Lexmark International, Inc., registered in the U.S. and/or other countries. All other trademarks are the property of their respective owners. No part of this publication may be reproduced, stored, or transmitted in any form without the prior written permission of Lexmark.

3 Table of Contents 1 Introduction Ribbon Structure Functional Description Events Managing Controls using Events Creating Ribbon Elements Creating Tabs Creating Groups Creating Controls Control Types Universal Properties... 5 BeginGroup... 5 Enabled... 6 IconId... 6 Style... 6 TooltipText... 6 Visible... 6 Text... 7 Width Extending Controls with Icons Embedding the Controls in the Quick Access Bar Sample Macro"ribbon.bas" Extensions Loading Ribbon Icons out of Ressource Appendix s SAPERION Main Menu "Start" Menu "Folders" Menu "Import" Menu "Advanced" Menu "Design" Menu "Administration" Menu "Document Tray" Menu "Edit" Menu... 14

4 Best Practice - Programming Ribbons 1 Introduction The ribbons introduced in SAPERION 7 are based on third-party programs from Codejock Software. They are provided as ActiveX objects (Codejock.*.ocx; in the SAPERION directory). The API interface allows you to create and display your own ribbons. The procedure described below describes the best practice for programming ribbons. 2 Ribbon Structure The ribbon consists of tabs, groups and various controls that are designed task-orientated and in accordance with particular application scenarios. This means that only certain groups of controls are relevant when objects of certain types are processed. Fig. 2 1: Ribbon Structure A ribbon contains normally the following elements: Quick Access Toolbar The quick access toolbar can be individually configured and includes for instance commonly used commands. Tabs Tabs add structure for the ribbon groups, and can contain only groups. Groups Groups are used to structure the ribbon controls, and can contain only controls. Controls Each control is assigned to a particular ribbon group. Each element in a ribbon has a defined ID.! Please keep in mind that you have to assign ribbon IDs for elements in the ribbon which you create yourself and that a scope of IDs greater than 50,000 has been allotted for this purpose. 1

5 3 3 Functional Description 3.1 Events Functional Description For certain functions to be executed when a ribbon control is pressed in the Rich Client, a corresponding callback must be implemented. A callback is a function whose name is established when the menu object is created. Using the cmdid one can define which action takes place. The cmdid corresponds to the ID of the verified ribbon control. Example Sub CallbackName( cmdid As Long, cmdstring As String, ocurrmask As Object ) Select Case cmdid Case ControlId MsgBox "Control: " & CStr(cmdId) & "was pressed!" Case Else MsgBox "Unknown command Id : " & CStr(cmdId) & "!" End Select End Sub 3.2 i Managing Controls using Events With SAPERION 7.1 SP4, all ribbon handling is controlled by one OnRibbonEvent. Because this is - contrary to the conventional method - much simpler, we recommend to use this event-controlled method from SP4 on. The OnRribbonEvent makes it possible to manage the entire ribbon handling inside of one method, by linking the ribbon event with its own ribbon method. The method has the following standard event API: Example Function OnRibbonEvent( pre As Long, note As String ) As Boolean Pre = 0 : This value has no special meaning note = <form name>.<event name> Define the parameters form name: Name of the currently active form. If there are no active forms, the value "application" is valid. event name: Name of the events (see following table). The following events are used to program ribbons: 2

6 4.1 Creating Tabs OnRibbonEvents Event Description FormCreate Form is created. Depending on the form, this event displays the controls that are valid for form and for the active element in the result list (if there is one). FormSetFocus Form has focus. Depending on the form, this event displays the controls that are valid for form and for the active element in the result list (if there is one). FormKillFocus Form no longer has focus. The controls for the form are deactivated or hidden. FormRefresh Refreshes the results list of a form. The controls for the results list must be deactivated. FormClose The form is closed. The controls for the form are deactivated or hidden. ItemSelect Selects a row in the result list. The controls that are valid for the active element in the results list are activated (depending on the form). RibbonInit The entire ribbon is initialized. All controls that are created are displayed correctly. NOTE: Please validate the context of the form. RibbonCreate The ribbon is created anew. Creates a menu object, and then creates an entry for each ribbon control. In addition, you can expand the ribbon with the desired tabs, groups and controls. 4 Creating Ribbon Elements 4.1 Creating Tabs A tab can be added by means of the following function: Dim otab As Object Set otab = Application.Ribbon.InsertTab( Index, "TabName" ) Set otab = TabID In order to find the tab again later, a unique ID should be assigned to the tab using the property otab.id = TabID. 3

7 4 Creating Ribbon Elements otab = Application.Ribbon.FindTab(TabID) 4.2 Creating Groups You can add a group to an existing SAPERION tab or to a new tab. In both cases the corresponding tab object is needed. There are two possible ways to add a group to a particular tab: Function 1 Set ogroup = otab.groups.addgroup(gruppenname, GruppenID) Use this function to create a group in the last position of the tab. Function 2 Set ogroup = otab.groups.insertgroup(index,gruppenname, GruppenID) Using this function, you can also use the index parameter to control at which location in the tab the new group should be added. 4.3 Creating Controls Ribbon controls can be assigned to any group. The group object is added to the control using the following function: Set octl = ogrp.add(controltyp, ControlID, ControlName, Position) Note that the position parameter is optional Control Types In the following overview all control types used in SAPERION are listed: Control types Control Type Description Button Button control. By clicking the button an event is fired. Popup Control that displays a caption with no image. When clicked, a popup menu will display any added controls. Button Popup Control that displays an image with no caption. When clicked, a popup menu will display any added controls. Split Button Popup Control that consists of a button and a popup. Edit Edit box control. 4

8 4.3 Control Type Description Checkbox Checkbox control. The user can select or deactivate an option. Creating Controls Property Checked (Boolean) Public Property Checked() As Long Combobox Combobox control. The user can open a list of given options and choose one item from the list. Property AutoComplete: De-/ activation of the automatic completion. Public Property AutoComplete() As Boolean Methods AddItem: Adds an item to the combobobox control (string or optionally integer). Public Sub AddItem( _ ByVal Text As String, _#Optional ByVal Index As Variant _) Public Sub AddItem( _ ByVal Text As String, _#Optional ByVal dex As VaClear: Clears the content of the combobox. Public Sub Clear() FindItem: Finds the first item in the combobox that starts with the specified string. Public Function FindItem( _#ByVal Text As String _#) As Long Public Function FindItem( _#ByVal Text As String Text As String RemoveItem: Removes an item from the combobox. Public Sub RemoveItem( _#ByVal nindex As Long _#) Public Sub RemoveItem( _#ByVal nindex As Radiobutton Radiobutton controls are usually grouped so that the user can choose one of multiple options Universal Properties In the following properties are listed that can be used for all controls mentioned above BeginGroup Public Property BeginGroup() As Boolean 5

9 4 Creating Ribbon Elements Adds a separator in front of a control Enabled Public Property Enabled() As Boolean The control is activated (TRUE) resp. deactivated (FALSE) IconId Public Property IconId() As Long Reads/ sets the icon ID of the control. The icon ID allows you to change the icon associated with a control without changing the ID of the control Style Public Property Style() As Long Reads/ sets the style of the control. 0 = automatic display 1 = only the title is displayed 2 = only the icon is displayed 3 = the title and the icon is displayed 4 = the title is displayed under the icon TooltipText Public Property TooltipText() As String Reads/ sets the tooltip text of the control Visible Public Property Visible() As Boolean 6

10 4.3 Creating Controls Defines whether the control is visible (TRUE) Text Public Property Text() As String Reads/ sets the text of the current selection. You are allowed to replace the text by your text Width Public Property Width() As Long Reads/ sets the size (in pixels) of elements Extending Controls with Icons You are allowed to assign an own icon to a control. First add the icon to the internal adminsitration. omen.addicon <IconPath,IconId> Then assign the icon directly to an existing control. octl.iconid = IconId Embedding the Controls in the Quick Access Bar It is also possible to add custom ribbon controls just to the quick access bar. The ribbon controls don't have to already exist in the ribbon. If you intend to add custom ribbon to the quick access toolbar, then use the following function: octl = Application.Ribbon.QuickAccessControls.Add(ControlTyp, ControlID, ControlName, Position) To find controls in the ribbon, use the following function: octl = Application.Ribbon.QuickAccessControls.Find(0, ControlId) 7

11 4 i Creating Ribbon Elements Controls in the quick access bar cannot be found through the "octl = Application.Ribbon.FindControl( 0, ControlId )" function. This will also apply to controls that are added to the ribbon with the same ID. 4.4 Sample Macro"ribbon.bas" During the SAPERION installation, the "ribbon.bas" file is installed by default. The "ribbon.bas" file is copied into "...\Program Files (x86)\saperion\macros" directory. The macro contains examplarily some use cases such as the creation of new tabs, new groups, new controls and icons or controls that are active when a particular form is active and a row is marked in the results list Extensions Following extensions are made by "ribbon.bas": Extending the "Start" tab with controls An extension of the Start tab with the following four controls in an existing group a button that is always active a button that is only active when the form "example71_q" is active a checkbox which is activated and checked when a row in the results list of the "example71_q" form is selected. all elements of the "example71_q" form are hidden when the form is not active. Extending the "Start" tab with a group A new group in the "Start" tab with a button that is active when the "example71_q" form is activated. The group is always visible, even when the form is not active. Adding a new tab A new tab containing a group with a button, after the Start tab. The elements are always visible Loading Ribbon Icons out of Ressource For the loading of ribbon icons it is allowed to point directly to the resource. This means that the path to images no longer needs to be specified. Examples loading an icon out of the resource file omen.addicon "!CustomLightRed16",ICON_BTN_FORM loading the icon "test.png" or "test.bmp" out of the "Image" directory 8

12 5.1 omen.addicon "!Test",ICON_BTN_FORM 5 Appendix 5.1 s SAPERION Main Menu s SAPERION main menu Titel/ Caption 5002 Window Properties 1703 Save Window Position When Closing 1704 Save Window Position Now 1705 Clear Saved Window Position 1706 Edit Caption Reset Layout 1062 Checked-out Documents Print Print Preview 5954 Document(s) 1221 Search Query Log Table From Document Tray Search Query Log Table Settings Settings 1304 OCR System AutoCorrect Manage Stamps 1308 Current User Display Status Bar Records Management 1333 Rules Help 9 s

13 5 Titel/ Caption 1504 Using Help About Switch Current User Close "Start" Menu "Start" menu 2258 Refresh 2259 Reset 1249 Add to Favorites 1241 Export View 5953 Edit Edit Annotations 5955 Index Structure 1060 Check Out 1059 Check In 1061 Discard 5957 Delete 46 Revisions Save As Send 1072 Send Link 1073 Send as Copy 1074 Send Copy and Link 1250 Add Documents to Favorites 1067 Cross-reference 5972 Set Access Lists Start Process Start Adhoc Process Private Templates 5993 Public Templates 3581 History Comments Appendix

14 Reassign Reminder Put Back 3587 Tasks "Folders" Menu "Folders" menu 4308 Refresh 4300 Create Folder 4301 Create Application Create Tray Folder Delete 4305 Access List Classes "Import" Menu "Import" menu 1054 Page Feed Single Page Replace Page Scan Profile 1339 Duplex 1000 File(s) New Page Bulk Import COLD Data Scanned Pages Loaded Files Configuration 1300 Options Format Preset Input 11 s

15 Documents 1052 To Do "Advanced" Menu "Advanced" menu 1218 Create Reader Quality assurance New 1201 Load Save Delete Refresh 1242 Back to Form "Design" Menu "Design" menu 1212 Create Load Edit Save As Delete Document Formats Process Designer Events Scripts Edit Form Create Search Form Create Index Form Print Lists Cover Sheets Appendix

16 Background Forms "Administration" Menu "Administration" menu 1329 New Content Type Edit Content Type New Retention Class Edit Retention Class Encryption 1337 Localization Administration Access Lists Query Form 1226 Configure Forms Settings Export "Document Tray" Menu "Document Tray" menu 2451 Order 2450 Disconnect 2454 Save As 2455 Format 2456 Complete 1076 Send 1206 Add Page 1207 Add All 2460 Up 2461 Down 2459 Right 2458 Left 2453 View 13 s

17 Edit Edit Name 2465 Delete 2477 Delete All 2467 Encrypt 2466 Security 2471 Rendering 1210 Single Document 1211 Index Form All Documents 1233 Options Activate Forms Index Form 1208 Index Automatic Indexing Create Edit Verify 2469 Delete 2473 Finish 2474 Finish All 2475 Start Mass Signing "Edit" Menu "Edit" menu 2013 Previous Document 2054 First Page 2011 Previous Page 2010 Next Page 2055 Last page 2012 Next Document 2005 Zoom In 2006 Zoom Out 2000 Fit 2081 No Auto Scale 14 Appendix

18 Fit to Page 2083 Fit to Whole Page 2048 Enlarge 2049 Reduce 2036 Previous Link 1103 Insert 1101 Cut 1102 Copy 1100 Undo 1104 Delete 2014 Rotate Rotate Rotate Mark All 15 s

Teamcenter 11.1 Systems Engineering and Requirements Management

Teamcenter 11.1 Systems Engineering and Requirements Management SIEMENS Teamcenter 11.1 Systems Engineering and Requirements Management Systems Architect/ Requirements Management Project Administrator's Manual REQ00002 U REQ00002 U Project Administrator's Manual 3

More information

Best Practice Localization in SAPERION

Best Practice Localization in SAPERION Best Practice Localization in SAPERION Copyright 016 Lexmark. All rights reserved. Lexmark is a trademark of Lexmark International, Inc., registered in the U.S. and/or other countries. All other trademarks

More information

Saperion Version 7.5 Service Pack 6 Bug Fixes

Saperion Version 7.5 Service Pack 6 Bug Fixes Saperion Version 7.5 Service Pack 6 Bug Fixes Copyright 2016 Lexmark. All rights reserved. Lexmark is a trademark of Lexmark International, Inc., registered in the U.S. and/or other countries. All other

More information

Virto SharePoint Forms Designer for Office 365. Installation and User Guide

Virto SharePoint Forms Designer for Office 365. Installation and User Guide Virto SharePoint Forms Designer for Office 365 Installation and User Guide 2 Table of Contents KEY FEATURES... 3 SYSTEM REQUIREMENTS... 3 INSTALLING VIRTO SHAREPOINT FORMS FOR OFFICE 365...3 LICENSE ACTIVATION...4

More information

Saperion Version 7.5 Service Pack 5 Patch Level Update

Saperion Version 7.5 Service Pack 5 Patch Level Update Saperion Version 7.5 Service Pack 5 Patch Level Update Copyright 2016 Lexmark. All rights reserved. Lexmark is a trademark of Lexmark International, Inc., registered in the U.S. and/or other countries.

More information

What s New in Access 2007

What s New in Access 2007 What s New in Access 2007 This document provides a general overview of the new and improved features in Microsoft Access 2007. Opening Assurances 1. Functionality is the same; how we interact with the

More information

Layout and display. STILOG IST, all rights reserved

Layout and display. STILOG IST, all rights reserved 2 Table of Contents I. Main Window... 1 1. DEFINITION... 1 2. LIST OF WINDOW ELEMENTS... 1 Quick Access Bar... 1 Menu Bar... 1 Windows... 2 Status bar... 2 Pop-up menu... 4 II. Menu Bar... 5 1. DEFINITION...

More information

Guideline SAPERION Update Version 7.1

Guideline SAPERION Update Version 7.1 Guideline SAPERION Update Version 7.1 Copyright 201 Lexmark. All rights reserved. Lexmark is a trademark of Lexmark International, Inc., registered in the U.S. and/or other countries. All other trademarks

More information

Content Author's Reference and Cookbook

Content Author's Reference and Cookbook Sitecore CMS 7.0 Content Author's Reference and Cookbook Rev. 130425 Sitecore CMS 7.0 Content Author's Reference and Cookbook A Conceptual Overview and Practical Guide to Using Sitecore Table of Contents

More information

GOBENCH IQ Release v

GOBENCH IQ Release v GOBENCH IQ Release v1.2.3.3 2018-06-11 New Add-Ons / Features / Enhancements in GOBENCH IQ v1.2.3.3 GOBENCH IQ v1.2.3.3 contains several new features and enhancements ** New version of the comparison Excel

More information

Virto SharePoint Forms Designer for Office 365. Installation and User Guide

Virto SharePoint Forms Designer for Office 365. Installation and User Guide Virto SharePoint Forms Designer for Office 365 Installation and User Guide 2 Table of Contents KEY FEATURES... 3 SYSTEM REQUIREMENTS... 3 INSTALLING VIRTO SHAREPOINT FORMS FOR OFFICE 365... 3 LICENSE ACTIVATION...

More information

COURSE CONTENT EXCEL BASIC ONE DAY

COURSE CONTENT EXCEL BASIC ONE DAY COURSE CONTENT EXCEL BASIC ONE DAY SOME OF THE BENEFITS OF USING A SPREADSHEET STARTING EXCEL GETTING YOURSELF ORIENTATED WITH THE EXCEL SCREEN THE OFFICE BUTTON/FILE TAB THE TITLE BAR THE RIBBONS GROUPS

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

Modifying Preferences in Microsoft Outlook 2016 for the PC

Modifying Preferences in Microsoft Outlook 2016 for the PC University Information Technology Services Learning Technologies, Training & Audiovisual Outreach Modifying Preferences in Microsoft Outlook 2016 for the PC When first opening Outlook 2016, the Outlook

More information

SAPERION Records Management

SAPERION Records Management SAPERION Records Management Copyright 2016 Lexmark. All rights reserved. Lexmark is a trademark of Lexmark International, Inc., registered in the U.S. and/or other countries. All other trademarks are the

More information

Perceptive Intelligent Capture Visibility

Perceptive Intelligent Capture Visibility Perceptive Intelligent Capture Visibility User Guide Version: 3.1.x Written by: Product Knowledge, R&D Date: February 2016 2015 Lexmark International Technology, S.A. All rights reserved. Lexmark is a

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

User Guide. BlackBerry Workspaces for Windows. Version 5.5

User Guide. BlackBerry Workspaces for Windows. Version 5.5 User Guide BlackBerry Workspaces for Windows Version 5.5 Published: 2017-03-30 SWD-20170330110027321 Contents Introducing BlackBerry Workspaces for Windows... 6 Getting Started... 7 Setting up and installing

More information

ELM Server Exchange Edition ArchiveWeb version 5.5

ELM Server Exchange Edition ArchiveWeb version 5.5 ELM Server Exchange Edition ArchiveWeb version 5.5 Copyright 2016 Lexmark. All rights reserved. Lexmark is a trademark of Lexmark International, Inc., registered in the U.S. and/or other countries. All

More information

Main Window. Overview. Do this Click the New Report link. Create a New Report.

Main Window. Overview. Do this Click the New Report link. Create a New Report. Overview Main Window Create a new report from a table or existing view Create a new report by defining a custom join Work with your custom reports Open a recently accessed custom report Work with reports

More information

Business Insight Authoring

Business Insight Authoring Business Insight Authoring Getting Started Guide ImageNow Version: 6.7.x Written by: Product Documentation, R&D Date: August 2016 2014 Perceptive Software. All rights reserved CaptureNow, ImageNow, Interact,

More information

User Guide. Product Design. Version 2.2.2

User Guide. Product Design. Version 2.2.2 User Guide Product Design Version 2.2.2 Table of Contents Bridge User Guide - Table of Contents 1 TABLE OF CONTENTS... 1 INTRODUCTION... 4 Guide... 4 PRODUCTS... 5 Creating a New Product... 5 Viewing and

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

Forms/Distribution Acrobat X Professional. Using the Forms Wizard

Forms/Distribution Acrobat X Professional. Using the Forms Wizard Forms/Distribution Acrobat X Professional Acrobat is becoming a standard tool for people and businesses to use in order to replicate forms and have them available electronically. If a form is converted

More information

Using Sitecore 5.3.1

Using Sitecore 5.3.1 Using Sitecore 5.3.1 An End-User s Guide to Using and Administrating Sitecore Author: Sitecore Corporation Date: December 12, 2007 Release: Rev. 1.0 Language: English Sitecore is a registered trademark.

More information

http://pdws.hccfl.edu March 2014 2014 Hillsborough Community College - Professional Development and Workshop Services Hillsborough Community College - Professional Development and Workshop Services The

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 Dashboard Widgets. Version: 16.0

Creating Dashboard Widgets. Version: 16.0 Creating Dashboard Widgets Version: 16.0 Copyright 2017 Intellicus Technologies This document and its content is copyrighted material of Intellicus Technologies. The content may not be copied or derived

More information

IBM Rational Rhapsody Gateway Add On. User Guide

IBM Rational Rhapsody Gateway Add On. User Guide User Guide Rhapsody IBM Rational Rhapsody Gateway Add On User Guide License Agreement No part of this publication may be reproduced, transmitted, stored in a retrieval system, nor translated into any

More information

OpenText StreamServe 5.6 Correspondence Reviewer. Accessibility and Compatibility Features

OpenText StreamServe 5.6 Correspondence Reviewer. Accessibility and Compatibility Features OpenText StreamServe 5.6 Correspondence Reviewer Accessibility and Compatibility Features OpenText StreamServe 5.6 Correspondence Reviewer Accessibility and Compatibility Features OPEN TEXT CORPORATION

More information

Attributes Preset Values v1.5 OpenCart Extension by stv_vl

Attributes Preset Values v1.5 OpenCart Extension by stv_vl Attributes Preset Values v1.5 OpenCart Extension by stv_vl e-mail: stefvlac@gmail.com DESCRIPTION This Extension helps the administrator to add attribute values quickly and accurately, for all the languages

More information

Getting Started with Access

Getting Started with Access MS Access Chapter 2 Getting Started with Access Course Guide 2 Getting Started with Access The Ribbon The strip across the top of the program window that contains groups of commands is a component of the

More information

Creating Dashboard. Version: 7.3

Creating Dashboard. Version: 7.3 Creating Dashboard Version: 7.3 Copyright 2015 Intellicus Technologies This document and its content is copyrighted material of Intellicus Technologies. The content may not be copied or derived from, through

More information

Victaulic Tools for Revit

Victaulic Tools for Revit Victaulic Tools for Revit User Manual Revit 2016, 2017, 2018 Table of Contents Introduction Section 01 Licensing Page 3 Section 02 Pipe Tools (Pipe / Duct Splitting) Page 4 Section 03 Pipe Tools (Pipe

More information

User Manual Version

User Manual Version User Manual Version 8.14.0 This publication contains proprietary information of the Card Scanning Solution Company, provided for customer use only. No other use is authorized without the express written

More information

Forms iq Designer Training

Forms iq Designer Training Forms iq Designer Training Copyright 2008 Feith Systems and Software, Inc. All Rights Reserved. No part of this publication may be reproduced, transmitted, stored in a retrieval system, or translated into

More information

SAPERION Release Script

SAPERION Release Script SAPERION Release Script Copyright 2016 Lexmark. All rights reserved. Lexmark is a trademark of Lexmark International, Inc., registered in the U.S. and/or other countries. All other trademarks are the property

More information

Line Spacing and Double Spacing...24 Finding and Replacing Text...24 Inserting or Linking Graphics...25 Wrapping Text Around Graphics...

Line Spacing and Double Spacing...24 Finding and Replacing Text...24 Inserting or Linking Graphics...25 Wrapping Text Around Graphics... Table of Contents Introduction...1 OpenOffice.org Features and Market Context...1 Purpose of this Book...4 How is OpenOffice.org Related to StarOffice?...4 Migrating from Microsoft Office to OpenOffice.org...4

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

User Guide Product Design Version 1.7

User Guide Product Design Version 1.7 User Guide Product Design Version 1.7 1 INTRODUCTION 3 Guide 3 USING THE SYSTEM 4 Accessing the System 5 Logging In Using an Access Email 5 Normal Login 6 Resetting a Password 6 Logging Off 6 Home Page

More information

The New Office 2010 Interface and Shared Features

The New Office 2010 Interface and Shared Features The New Office 2010 Interface and Shared Features The Ribbon and Ribbon Tabs Minimising and Maximising Minimise Ribbon button Double-click Keytips and shortcut keys (Press Alt or F10) Standard vs contextual

More information

SmartView. User Guide - Analysis. Version 2.0

SmartView. User Guide - Analysis. Version 2.0 SmartView User Guide - Analysis Version 2.0 Table of Contents Page i Table of Contents Table Of Contents I Introduction 1 Dashboard Layouts 2 Dashboard Mode 2 Story Mode 3 Dashboard Controls 4 Dashboards

More information

Perceptive Intelligent Capture Visibility

Perceptive Intelligent Capture Visibility Perceptive Intelligent Capture Visibility Upgrade Guide Version: 3.0.x Written by: Product Knowledge, R&D Date: September 2016 2015 Lexmark International Technology, S.A. All rights reserved. Lexmark is

More information

Mail & Deploy Reference Manual. Version 2.0.5

Mail & Deploy Reference Manual. Version 2.0.5 Mail & Deploy Reference Manual Version 2.0.5 Introduction TABLE OF CONTENTS Introduction... 4 General Introduction... 5 Architecture... 6 Server... 6 Repository... 6 Client... 6 Contact Us... 7 Server...

More information

Working with PDF s. To open a recent file on the Start screen, double click on the file name.

Working with PDF s. To open a recent file on the Start screen, double click on the file name. Working with PDF s Acrobat DC Start Screen (Home Tab) When Acrobat opens, the Acrobat Start screen (Home Tab) populates displaying a list of recently opened files. The search feature on the top of the

More information

Content Author's Reference and Cookbook

Content Author's Reference and Cookbook Sitecore CMS 7.2 Content Author's Reference and Cookbook Rev. 140225 Sitecore CMS 7.2 Content Author's Reference and Cookbook A Conceptual Overview and Practical Guide to Using Sitecore Table of Contents

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

Business Intelligence Launch Pad User Guide SAP BusinessObjects Business Intelligence Platform 4.1 Support Package 1

Business Intelligence Launch Pad User Guide SAP BusinessObjects Business Intelligence Platform 4.1 Support Package 1 Business Intelligence Launch Pad User Guide SAP BusinessObjects Business Intelligence Platform 4.1 Support Package 1 Copyright 2013 SAP AG or an SAP affiliate company. All rights reserved. No part of this

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

Context-sensitive Help

Context-sensitive Help USER GUIDE MADCAP DOC-TO-HELP 5 Context-sensitive Help Copyright 2018 MadCap Software. All rights reserved. Information in this document is subject to change without notice. The software described in this

More information

Lightning Knowledge Guide

Lightning Knowledge Guide Lightning Knowledge Guide Salesforce, Spring 18 @salesforcedocs Last updated: April 13, 2018 Copyright 2000 2018 salesforce.com, inc. All rights reserved. Salesforce is a registered trademark of salesforce.com,

More information

EVALUATION ONLY. Table of Contents. iv Labyrinth Learning

EVALUATION ONLY. Table of Contents. iv Labyrinth Learning Quick Reference Tables Preface EXCEL 2013 LESSON 1: EXPLORING EXCEL 2013 Presenting Excel 2013 Starting Excel Windows 7 Windows 8 Exploring the Excel Program Window Using Worksheets and Workbooks Mousing

More information

Office 2010: New Features Course 01 - The Office 2010 Interface

Office 2010: New Features Course 01 - The Office 2010 Interface Office 2010: New Features Course 01 - The Office 2010 Interface Slide 1 The Excel Ribbon (Home Tab) Slide 2 The Cell Styles Gallery in Excel Slide 3 Live Preview Default Live Preview of the cell style

More information

1.0 Instructions for using your UQ templates

1.0 Instructions for using your UQ templates 1.0 Instructions for using your UQ templates 1.1 Opening a template Save your template attachment (without opening it) to a local or network location don t open it from email. Double-click the template

More information

User Guide. v7.5. September 4, For the most recent version of this document, visit kcura's Documentation Site.

User Guide. v7.5. September 4, For the most recent version of this document, visit kcura's Documentation Site. User Guide v7.5 September 4, 2013 For the most recent version of this document, visit kcura's Documentation Site. Table of Contents 1 User guide overview 4 2 Relativity objects 4 3 Workspace 6 3.1 Workspaces

More information

Client Configuration Cookbook

Client Configuration Cookbook Sitecore CMS 6.4 or later Client Configuration Cookbook Rev: 2013-10-01 Sitecore CMS 6.4 or later Client Configuration Cookbook Features, Tips and Techniques for CMS Architects and Developers Table of

More information

Syllabus KCXXXXXX: Excel Level I, Version 2010

Syllabus KCXXXXXX: Excel Level I, Version 2010 Syllabus KCXXXXXX: Excel Level I, Version 2010 ITSW 1022 Introduction to Electronic Spreadsheets 8 classroom hours Course Description: This course is designed to introduce the student to basic spreadsheet

More information

SolidWorks Implementation Guides. User Interface

SolidWorks Implementation Guides. User Interface SolidWorks Implementation Guides User Interface Since most 2D CAD and SolidWorks are applications in the Microsoft Windows environment, tool buttons, toolbars, and the general appearance of the windows

More information

Microsoft Word. Introduction

Microsoft Word. Introduction Microsoft Word Introduction Microsoft Word is the word processing component of the Microsoft Office Suite. It is used primarily to enter, edit, format, save, retrieve and print documents. The area outlined

More information

PDFelement 6 Solutions Comparison

PDFelement 6 Solutions Comparison duct Data Sheet Solutions Comparison Our latest release comes stacked with all the productivity-enhancing functionality you ve come to know and love. Compatibility DC Compatible with Microsoft Windows

More information

PRESENCE. RadEditor Guide. SchoolMessenger 100 Enterprise Way, Suite A-300 Scotts Valley, CA

PRESENCE. RadEditor Guide. SchoolMessenger 100 Enterprise Way, Suite A-300 Scotts Valley, CA PRESENCE RadEditor Guide SchoolMessenger 100 Enterprise Way, Suite A-300 Scotts Valley, CA 95066 800-920-3897 www.schoolmessenger.com Contents Contents... 2 Introduction... 3 What is RadEditor?... 3 RadEditor

More information

Microsoft Word 2007 Module 1

Microsoft Word 2007 Module 1 Microsoft Word 2007 Module 1 http://citt.hccfl.edu Microsoft Word 2007: Module 1 July, 2007 2007 Hillsborough Community College - CITT Faculty Professional Development Hillsborough Community College -

More information

Table of Contents. Part I How do I... Part II Zetafax Client. Foreword. 3 Advanced tasks. 1 Menu options. Annotate a fax? View a text message?

Table of Contents. Part I How do I... Part II Zetafax Client. Foreword. 3 Advanced tasks. 1 Menu options. Annotate a fax? View a text message? I Table of Contents Foreword 0 1 Part I How do I... 1 Zetafax Client... actions 2 Send a fax?... Specify options... when sending a fax? View a fax?... Annotate a fax?... Print a fax?... Preview a message...

More information

The Menu Toolbar includes the File, Edit, View, Report, Tools, Actions, Window and Help menu options.

The Menu Toolbar includes the File, Edit, View, Report, Tools, Actions, Window and Help menu options. Menu Toolbar The Menu Toolbar includes the File, Edit, View, Report, Tools, Actions, Window and Help menu options. Title Bar The title bar at the top of the screen includes the name of the application

More information

Contents. Common Site Operations. Home actions. Using SharePoint

Contents. Common Site Operations. Home actions. Using SharePoint This is a companion document to About Share-Point. That document describes the features of a SharePoint website in as much detail as possible with an emphasis on the relationships between features. This

More information

Perceptive AP Invoice eform

Perceptive AP Invoice eform Perceptive Release Notes Version: 12.2.x Written by: Product Documentation, R&D Date: October 2016 2014 Perceptive Software. All rights reserved Perceptive Software is a trademark of Lexmark International

More information

Multi-NVR Manager. Quick Start Configuration Usage

Multi-NVR Manager. Quick Start Configuration Usage Multi-NVR Manager Quick Start Configuration Usage 2014. All rights are reserved. No portion of this document may be reproduced without permission. All trademarks and brand names mentioned in this publication

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

Calendar & Buttons Dashboard Menu Features My Profile My Favorites Watch List Adding a New Request...

Calendar & Buttons Dashboard Menu Features My Profile My Favorites Watch List Adding a New Request... remitview User Guide 1 TABLE OF CONTENTS INTRODUCTION... 3 Calendar & Buttons... 3 GETTING STARTED.... 5 Dashboard.... 7 Menu Features... 8 PROFILE.... 10 My Profile... 10 My Favorites... 12 Watch List...

More information

Explore commands on the ribbon Each ribbon tab has groups, and each group has a set of related commands.

Explore commands on the ribbon Each ribbon tab has groups, and each group has a set of related commands. Quick Start Guide Microsoft Excel 2013 looks different from previous versions, so we created this guide to help you minimize the learning curve. Add commands to the Quick Access Toolbar Keep favorite commands

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

Expense Management Asset Management

Expense Management Asset Management Expense Management Asset Management User Guide NEC NEC Corporation November 2010 NDA-31136, Revision 1 Liability Disclaimer NEC Corporation reserves the right to change the specifications, functions, or

More information

PageScope Box Operator Ver. 3.2 User s Guide

PageScope Box Operator Ver. 3.2 User s Guide PageScope Box Operator Ver. 3.2 User s Guide Box Operator Contents 1 Introduction 1.1 System requirements...1-1 1.2 Restrictions...1-1 2 Installing Box Operator 2.1 Installation procedure...2-1 To install

More information

Excel 2013 Getting Started

Excel 2013 Getting Started Excel 2013 Getting Started Introduction Excel 2013 is a spreadsheet program that allows you to store, organize, and analyze information. While you may think that Excel is only used by certain people to

More information

Sending image(s) to report Click Send Snapshot on any screen in Dolphin3D and choose the Send to Report option

Sending image(s) to report Click Send Snapshot on any screen in Dolphin3D and choose the Send to Report option Dolphin 3D Reports Sending image(s) to report Click Send Snapshot on any screen in Dolphin3D and choose the Send to Report option Creating a report step by step 1. Generate the desired images in Dolphin3D

More information

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

Vizit Pro User Manual

Vizit Pro User Manual Vizit Pro User Manual 1 Table of Contents Vizit Pro User Manual... 1 Using Vizit Pro... 3 The Vizit Pro User Interface... 3 Toolbars... 4 File Tab Toolbar... 4 Edit Tab Toolbar... 5 Annotations Tab Toolbar...

More information

WF-distiller Process Designer

WF-distiller Process Designer WF-distiller Process Designer Version 4.0 SP1 September 2016 prepared by WF-distiller Engineering 2016 Lexmark. All rights reserved. Lexmark is a trademark of Lexmark International Inc., registered in

More information

Overview of the EMF Refresher Webinar Series. EMF Resources

Overview of the EMF Refresher Webinar Series. EMF Resources Overview of the EMF Refresher Webinar Series Introduction to the EMF Working with Data in the EMF viewing & editing Inventory Data Analysis and Reporting 1 EMF User's Guide EMF Resources http://www.cmascenter.org/emf/internal/guide.html

More information

DOCUMENT IMAGING REFERENCE GUIDE

DOCUMENT IMAGING REFERENCE GUIDE January 25, 2017 DOCUMENT IMAGING REFERENCE GUIDE AppXtender Web Access version 7 Kent State University Division of Information Services AppXtender Web Access Help: For questions regarding AppXtender Web

More information

If there is not a shortcut icon on the desktop: Click on the Start menu > All Apps> and select Word 2016 from the list.

If there is not a shortcut icon on the desktop: Click on the Start menu > All Apps> and select Word 2016 from the list. MICROSOFT WORD PART 1 Office 2016 Opening Word Double click the Word icon on the desktop. -OR- If there is not a shortcut icon on the desktop: Click on the Start menu > All Apps> and select Word 2016 from

More information

Reporting and Printing Guide

Reporting and Printing Guide Enterprise Studio Reporting and Printing Guide 2017-03-17 Applies to: Enterprise Studio 2.3 and Team Server 2.3 Table of contents 1 About reporting and printing models 4 2 Reporting models to HTML and

More information

Microsoft Certified Application Specialist Exam Objectives Map

Microsoft Certified Application Specialist Exam Objectives Map Microsoft Certified Application Specialist Exam Objectives Map This document lists all Microsoft Certified Application Specialist exam objectives for (Exam 77-601) and provides references to corresponding

More information

Installing a Custom AutoCAD Toolbar (CUI interface)

Installing a Custom AutoCAD Toolbar (CUI interface) Installing a Custom AutoCAD Toolbar (CUI interface) AxciScape produces AutoCAD script files which must be Run within AutoCAD. You can do this by typing SCRIPT into the command line and then select the

More information

ADDITIONAL GUIDES Customer SAP Enable Now Customization. Customer SAP SE or an SAP affiliate company. All rights reserved.

ADDITIONAL GUIDES Customer SAP Enable Now Customization. Customer SAP SE or an SAP affiliate company. All rights reserved. ADDITIONAL GUIDES Customer 1811 2018-11-01 Customer 2018 SAP SE or an SAP affiliate company. All rights reserved. Table of Contents 1 Introduction... 4 1.1 Workarea Resources... 4 1.2 Customization Editors...

More information

Software User's Guide

Software User's Guide Software User's Guide The contents of this guide and the specifications of this product are subject to change without notice. Brother reserves the right to make changes without notice in the specifications

More information

Admin Training. PaperSave Miami Green Way, 11th Floor, Miami, Florida USA

Admin Training. PaperSave Miami Green Way, 11th Floor, Miami, Florida USA Admin Training PaperSave 5.2 3150 Miami Green Way, 11th Floor, Miami, Florida 33146. USA 877 727 3799 305 373 0056 www.papersave.com PaperSave is a product of WhiteOwl - www.whiteowlsolutions.com TABLE

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

SMARTdoc v2 User Manual

SMARTdoc v2 User Manual Pages: 1/49 SMARTdoc v2 Pages: 2/49 1 Introduction SMARTdoc is an easy to use but full functional document management system. The mean focus is easy and fast. SMARTdoc is all about document and information

More information

The New Office 2007 Interface and Shared Features

The New Office 2007 Interface and Shared Features The New Office 2007 Interface and Shared Features The Ribbon and Ribbon Tabs Minimising and Maximising Keytips and shortcut keys Standard vs contextual tabs Live Preview Dialogue Box/ Task Pane launchers

More information

CORRESPONDENCE TRACKING SYSTEM - EVER ME

CORRESPONDENCE TRACKING SYSTEM - EVER ME CORRESPONDENCE TRACKING SYSTEM - EVER ME CORRESPONDENCE TRACKING SYSTEM USER GUIDE Document Title Author ES-CTS - User Guide Grace Boutros - EVER ME Date 29/08/2008 Validated by Date Version 1.1 Status

More information

User Guide 701P Wide Format Solution Wide Format Scan Service

User Guide 701P Wide Format Solution Wide Format Scan Service User Guide 701P44865 6204 Wide Format Solution Wide Format Scan Service Xerox Corporation Global Knowledge & Language Services 800 Phillips Road Bldg. 845-17S Webster, NY 14580 Copyright 2006 Xerox Corporation.

More information

AgWare ClickFORMS 7.0 Introductory Tutorial

AgWare ClickFORMS 7.0 Introductory Tutorial AgWare ClickFORMS 7.0 Introductory Tutorial MAIN WINDOW If you have used Office 2007, our new layout will look familiar. Here is a screenshot of the new and improved AgWare ClickFORMS window: The Forms

More information

GreenFolders User Manual

GreenFolders User Manual GreenFolders User Manual Welcome! Welcome to GreenFolders the Electronic Records Management Solution. GreenFolders allows you to store and retrieve files with many easy-to-use features for working with

More information

Griffin Training Manual

Griffin Training Manual Griffin Training Manual Grif-WebI Orientation Class For View Only Users Alumni Relations and Development The University of Chicago Table of Contents Chapter 1: Defining & Accessing Web Intelligence...

More information

Status Bar: Right click on the Status Bar to add or remove features.

Status Bar: Right click on the Status Bar to add or remove features. Outlook 2010 Quick Start Guide Getting Started File Tab: Click to access actions like Print, Save As, etc. Also to set Outlook options. Ribbon: Logically organizes Command Buttons onto Tabs and Groups

More information

Sage 500 ERP Business Intelligence

Sage 500 ERP Business Intelligence Sage 500 ERP Business Intelligence Getting Started Guide Sage 500 Intelligence (7.4) Getting Started Guide The software described in this document is protected by copyright, And may not be copied on any

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

Operations Dashboard 7.2

Operations Dashboard 7.2 User Guide Focused Insights for SAP Solution Manager Document Version: 1.1 2017-07-31 ST-OST 200 SP 1 Typographic Conventions Type Style Example Example EXAMPLE Example Example EXAMPLE Description

More information

MS Word 2010 An Introduction

MS Word 2010 An Introduction MS Word 2010 An Introduction Table of Contents The MS Word 2010 Environment... 1 The Word Window Frame... 1 The File Tab... 1 The Quick Access Toolbar... 4 To Customize the Quick Access Toolbar:... 4

More information