Release Notes. MapBasic Version Contents:

Size: px
Start display at page:

Download "Release Notes. MapBasic Version Contents:"

Transcription

1 MapBasic Version 16.0 Contents: Introduction Locating Your Documentation Notes About this Release Known Issues Progress and Resolution of Outstanding Issues

2 Introduction This document provides information on new and enhanced features that have been introduced into MapBasic. It also contains sections on resolved customer issues and some remaining known issues that are important for MapBasic users to be aware of. MapBasic is the programming language that lets you customize and automate MapInfo Pro. Locating Your Documentation The table below lists the available MapBasic documents and explains how to access them. Document Description MapBasic User Guide Complete guide on how to use MapBasic. The PDF document can be accessed from following: View online at Installs with MapInfo Pro and can be accessed from the Documentation folder in the MapInfo Pro installation directory. MapBasic Reference Complete guide to all MapBasic commands. The PDF document can be accessed from following: View online at Installs with MapInfo Pro and can be accessed from the Documentation folder in the MapInfo Pro installation directory. MapBasic Help Includes all of the information in MapBasic Reference plus dialog and menu descriptions. The QT document can be accessed from following: Click Help, then click Contents in MapBasic. Installs with MapBasic and can be accessed by running the MapBasicHelp.exe executable in the MapBasic installation directory. 2

3 Document Description Extensibility Reference Help MapInfo Pro 64-bit.NET Object Model API. The QT document can be accessed from following: Installs with MapBasic and can be accessed by running the ExtensibilityReferenceHelp.exe executable in the MapBasic installation directory. Integrated Mapping Reference Help API documentation to add Integrated Mapping capabilities to your application. The QT document can be accessed from following: Installs with MapBasic and can be accessed by running the IntegratedMappingReferenceHelp.exe executable in the MapBasic installation directory. You must have the Adobe Acrobat reader installed to view PDF files. To download a free copy of the Adobe Acrobat Reader, go to Notes About this Release MapInfo MapBasic is 64-Bit This release of MapBasic is 64-bit. As a result: The submenus in the MapBasic application under Project > Run have been removed, because they are no longer required. MapInfoPro.exe is the executable for the 64-bit MapInfo Pro, so MapBasic launches MapInfoPro.exe by default from the menu or when you press Ctrl-U. MapBasic programs compiled as 64-bit cannot be executed with the Windows 32-bit version of MapInfow.exe. Some functions and statements that only work with the older 32-bit versions of MapBasic are not available with this release, such as Create Report From Table statement, Graph statement, Open Report statement, and Set Graph statement. Preview of Layout Undo We are working on a new feature for the Layout window that lets you undo and redo your last action. This feature is still in development, but a preview is available in MapInfo Pro There are two new MapBasic functions available for performing an undo or redo: 3

4 Set Undo statement turns the Layout Designer window s Undo feature on or off. UndoInfo() function returns information about Undo stack functionality for a Layout Designer window. Activating Undo or Redo To activate this feature, which is hidden by default, you can either run MapInfo Pro from the command line with a flag to activate Undo for the session or edit the MapInfoPro.exe.config. Configuration settings apply every time you launch MapInfo Pro, because it reads the configuration file on start up. To run MapInfo Pro from the command line with the Layout Undo feature turned on: 1. On the Windows Start menu type cmd in the search field. This opens the command line window. 2. In the command line window, change directories (cd) to the folder that has the MapInfoPro.exe file in it. 3. Type MapInfoPro.exe -LayoutUndo to launch MapInfo Pro and activate the Layout Undo feature. To edit the MapInfo configuration file and activate the Layout Undo feature in MapInfo Pro: 1. Open the MapInfoPro.exe.config file in a text editor. This file is in the directory where MapInfo Pro is installed (as an example, C:\Program Files\MapInfo\Professional) 2. Under the appsettings section, remove the comment tags from the following line, <add key="layoutundo" value="true"/>. Changing true to false deactivates this feature (or add comment tags to the line). How to Perform an Undo or Redo in MapInfo Pro The Undo and Redo functions are available as ribbon commands on the LAYOUT tab in the Clipboard group. You can also perform an undo by pressing Ctrl+Z. When deleting a frame that does not support the Undo feature, a Confirm Frame Removal dialog displays. If you choose Yes to continue, MapInfo Pro removes the frame (or frames) and clears the Undo history. This dialog does not display when using a MapBasic statement to remove one or more frames (such as for the Remove Designer Frame statement). What You can Undo and Redo The Undo feature is still in development, so not all actions can be undone. You can Undo and Redo after creating or deleting text objects, images, shapes (line, polyline, ellipse, rectangle, rounded rectangle, polygon) and symbols. You cannot use Undo and Redo when creating a map, browser, legend, or custom frames (including the scale bar frame). If you delete one of these frames, a prompt displays as described in the previous section. You can Undo and Redo after resizing or moving items on the layout, including the frames mentioned above. This also applies when using the MapBasic statement Alter Designer Frame. 4

5 Known Issues Behavior Change for LabelOverrideInfo( ) In previous versions, the LabelOverrideInfo( ) function returned indirect information for attributes. When querying for the label override expression, LabelOverrideInfo( ) would return an empty string if the label override was not edited. An empty string indicates that the expression was not overridden. This has a negative side effect when determining label position. If the label position was not changed in the label override, then the return value is zero (0). However, zero means that the label position was not overridden or the label position is set to (center, center). The same issue occurs for Boolean (True, False) attributes. To resolve these, MapBasic now returns the attribute value as it is in the label override. For an expression, MapBasic returns the label override expression and not an indication of whether it was edited. StringByteLength( ) Function Limitation The new StringByteLength( ) function returns the number of bytes in a string for a given charset. This function works with non-english versions of MapInfo Pro It works with all versions of MapInfo Pro including the English version. Align Keyword Clarification and Update MapInfo Pro introduced the MapBasic Align keyword as part of the struct declaration statement to address multiple struct alignment problems in 64-bit, especially with strings. This includes passing a default struct argument that is aligned to the default packing for Visual Studio, which is eight (8) bytes for 64bit platforms and four (4) bytes for 32bit platforms. You do not need to build custom DLLs with a one-byte alignment (/Zp1). This change better supports the DLLs built on 64-bit platforms as well as the default Windows API calls, while still accommodating user specific struct packing. Struct alignment issues manifest by passing corrupt struct data members into or out of the DLL call. MapInfo Pro now assumes a default alignment value that matches the Visual Studio default, so to successfully integrate a MapBasic program with a custom DLL, you should either: 5

6 modify the MapBasic struct declaration to match the alignment value to the DLL (such as Align1); or rebuild the DLL using the default struct member alignment (/Zp). Japanese Characters do not Display Correctly Japanese characters do not display correctly for after registering a MapBasic tool with the MapBasic TOOLTABL.DLL. This is because the TOOLTABL.DLL delivered with 15.2.x releases supports Unicode for 64-bit operating systems. A modified version of TOOLTABL.DLL is included with this release that reverts legacy interfaces back and adds explicit Unicode WideChar support as separate function and structure definitions (RegisterTool and RegisterToolW). The workaround on a 15.2.x release is to modify the *.MB to set modify the.mb, specifying WideChars on the function declaration. The following is an example of this: Declare Function RegisterTool Lib "tooltabl" WideChars ( ByVal stitle As String, ByVal snote As String, ByVal slocation As String, ByVal sowner As String, ByVal bautoload As Logical ) As Integer In version 16.0, this becomes: Declare Function RegisterTool Lib "tooltabl" ( ByVal stitle As String, ByVal snote As String, ByVal slocation As String, ByVal sowner As String, ByVal bautoload As Logical ) As Integer The *W version will be declared as: Declare Function RegisterToolW Lib "tooltabl" WideChars ( ByVal stitle As String, ByVal snote As String, ByVal slocation As String, ByVal sowner As String, ByVal bautoload As Logical ) As Integer Version 16.0 includes a new MapBasic definition file called ToolTabl.def that contains all the public function and data structure definitions exported from TOOLTABL.DLL. 6

7 Progress and Resolution of Outstanding Issues Issue Number Description and Resolution MIPRO There are performance issues with MapCAD SplitToLines. Resolution: Fixed. The MapBasic Set Table statement has a new Redraw clause that suspends redrawing the map when there are changes to a table, such as for insert, update, or delete operations. This significantly improves processing time depending on the complexity of the map and the table update action. MIPRO For the 64-bit MapBasic, there is a Unicode issue with the string equals operator. Resolution: Fixed. 7

8 3001 Summer Street Stamford CT USA Pitney Bowes Software Inc. All rights reserved

Release Notes. MapInfo Pro Version Contents:

Release Notes. MapInfo Pro Version Contents: MapInfo Pro Version 16.0.2 Contents: System Requirements Upgrading MapInfo Pro Advanced Installation for System Administrators MapInfo Pro 16.0.1 2 2 2 3 4 8 MapInfo Pro is a cumulative Maintenance Release

More information

Release Notes. MapInfo Pro Version Contents:

Release Notes. MapInfo Pro Version Contents: MapInfo Pro Version 16.0 Contents: Introduction System Requirements Dependencies and Prerequisites MapInfo Pro Database Connectivity and Support Microsoft Office Support MapInfo Pro Web Server Support

More information

Release Notes. MapInfo Pro Version Contents:

Release Notes. MapInfo Pro Version Contents: MapInfo Pro Version 15.0.3 Contents: System Requirements Upgrading MapInfo Pro Advanced Installation for System Administrators MapInfo Pro 15.0.2 MapInfo Pro 15.0.1 2 2 2 3 4 6 7 This document provides

More information

Release Notes. MapInfo Pro Version Contents:

Release Notes. MapInfo Pro Version Contents: MapInfo Pro Version 16.0.3 Contents: System Requirements Upgrading MapInfo Pro Advanced Installation for System Administrators MapInfo Pro 16.0.2 MapInfo Pro 16.0.1 2 2 2 3 4 11 15 MapInfo Pro is a cumulative

More information

MapInfo Pro. Version 17.0 Printing Guide. Contents:

MapInfo Pro. Version 17.0 Printing Guide. Contents: MapInfo Pro Version 17.0 Contents: MapInfo Pro Printing in MapInfo Pro General Printing Tips and Tricks Enhancements Added in Different Versions 2 2 8 11 MapInfo Pro MapInfo Pro The purpose of this guide

More information

MapInfo Pro Version Release Notes

MapInfo Pro Version Release Notes MapInfo Pro Version 12.5.3 This document provides information on new and enhanced features that have been introduced into MapInfo Pro since version 12.5.1. It also provides information about resolved issues

More information

Release Notes. MapInfo Stratus Version 44. Contents: This document contains information about Pitney Bowes MapInfo Stratus Release 44.

Release Notes. MapInfo Stratus Version 44. Contents: This document contains information about Pitney Bowes MapInfo Stratus Release 44. Location Intelligence MapInfo Stratus Version 44 This document contains information about Pitney Bowes MapInfo Stratus Release 44. Contents: What s new in MapInfo Stratus? What s new in Mobile Ready User

More information

Release Notes. MapInfo Pro Version Contents:

Release Notes. MapInfo Pro Version Contents: MapInfo Pro Version 15.2.4 Contents: Upgrading MapInfo Pro Advanced Installation for System Administrators MapInfo Pro 15.2.3 MapInfo Pro 15.2.2 MapInfo Pro 15.2.1 2 2 3 4 6 7 29 MapInfo Pro is a cumulative

More information

Notes. MapInfo Runtime Version Contents:

Notes. MapInfo Runtime Version Contents: MapInfo Runtime Version 16.0 Contents: Introduction System Requirements Dependencies and Prerequisites Child Mode Installation Silent Installation Licensing Transferring a Node-Locked License to Another

More information

MapInfo Pro. Version 17 Overview

MapInfo Pro. Version 17 Overview MapInfo Pro tm Version 17 Overview 1 Disclaimers & Notes Most of what you ll see is a Work in Progress There will be some bugs and incomplete functionality Some things being shown are not yet available

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

Spectrum Spatial Map Uploader Guide

Spectrum Spatial Map Uploader Guide Spectrum Spatial Map Uploader Version 11.0 Spectrum Spatial Map Uploader Guide Welcome to Spectrum Spatial Map Uploader. To get started with the Spectrum Spatial Map Uploader, refer to the following help

More information

Release Notes. MapInfo Pro Version Contents:

Release Notes. MapInfo Pro Version Contents: MapInfo Pro Version 15.2.2 Contents: Upgrading MapInfo Pro Advanced Installation for System Administrators MapInfo Pro 15.2.1 2 2 3 4 26 MapInfo Pro is a cumulative Maintenance Release update that also

More information

Installation Reference

Installation Reference Version 5.0 March 11, 2018 Installation Reference Copyright 2005-2018 ManTech International Corporation Protected by the Document Detective End User License Agreement Installation Requirements Document

More information

Release Notes. Spectrum Spatial Analyst Version 7.0. Contents:

Release Notes. Spectrum Spatial Analyst Version 7.0. Contents: Location Intelligence Spectrum Spatial Analyst Version 7.0 This document contains information about Pitney Bowes Spectrum Spatial Analyst Release 7.0. Contents: What s new in Spectrum Spatial Analyst?

More information

User Manual Version 1.1 January 2015

User Manual Version 1.1 January 2015 User Manual Version 1.1 January 2015 - 2 / 112 - V1.1 Variegator... 7 Variegator Features... 7 1. Variable elements... 7 2. Static elements... 7 3. Element Manipulation... 7 4. Document Formats... 7 5.

More information

So you haven t upgraded to MapInfo 64-bit yet?

So you haven t upgraded to MapInfo 64-bit yet? MapInfo v16 So you haven t upgraded to MapInfo 64-bit yet? This document provides a quick overview of the important features and improvements of the current 64-bit release for those customers who have

More information

MapInfo Professional Evolution!

MapInfo Professional Evolution! MapInfo Professional Evolution! A long history of improvement This presentation covers what is new in all of the MapInfo Pro releases since v9.0! MapInfo Pro Release History A feature release every year

More information

Spectrum Spatial Map Uploader Guide

Spectrum Spatial Map Uploader Guide Spectrum Spatial Map Uploader Version 12.0 Spectrum Spatial Map Uploader Guide Welcome to Spectrum Spatial Map Uploader for use with Spectrum Technology Platform and MapInfo Pro version 16.0 and higher.

More information

MapInfo Professional Version Release Notes

MapInfo Professional Version Release Notes MapInfo Professional Version 12.5 Release Notes UNITED STATES www.pb.com/software Technical Support: support.pb.com CANADA www.pb.com/software Technical Support: support.pb.com EUROPE/UNITED KINGDOM www.pitneybowes.co.uk/software

More information

Release Notes. Spectrum Spatial Analyst Version Contents:

Release Notes. Spectrum Spatial Analyst Version Contents: Location Intelligence Spectrum Spatial Analyst Version 12.1 This document contains information about Pitney Bowes Spectrum Spatial Analyst Release 12.1. Contents: What s new in Spectrum Spatial Analyst?

More information

Customizing MapInfo Pro Using the.net API

Customizing MapInfo Pro Using the.net API Customizing MapInfo Pro Using the.net API Bob Fortin John Teague December 19, 2017 In this webinar, we will begin to look at how you can implement your own custom tools, or AddIns, for MapInfo Pro using

More information

Release Notes. Spectrum Spatial Analyst Version 8.0. Contents:

Release Notes. Spectrum Spatial Analyst Version 8.0. Contents: Location Intelligence Spectrum Spatial Analyst Version 8.0 This document contains information about Pitney Bowes Spectrum Spatial Analyst Release 8.0. Contents: What s new in Spectrum Spatial Analyst?

More information

License Server. Version 4.6. License Server User Guide

License Server. Version 4.6. License Server User Guide License Server Version 4.6 Notices Copyright Information in this document is subject to change without notice and does not represent a commitment on the part of the vendor or its representatives. No part

More information

JMP to LSAF Add-in. User Guide v1.1

JMP to LSAF Add-in. User Guide v1.1 JMP to LSAF Add-in User Guide v1.1 Table of Contents Terms and Conditions... 3 System Requirements... 3 Installation... 3 Configuration... 4 API Setup... 4 Java Configuration... 5 Logging In... 5 Launching

More information

QLARITY FOUNDRY USER GUIDE REVISION 2.61

QLARITY FOUNDRY USER GUIDE REVISION 2.61 QLARITY FOUNDRY USER GUIDE REVISION 2.61 QSI CORPORATION 2212 South West Temple #50 Salt Lake City, Utah 84115-2648 USA M01-005-00 Rev 3 Phone 801-466-8770 Fax 801-466-8792 Email info@qsicorp.com Web www.qsicorp.com

More information

USER GUIDE MADCAP MIMIC 8. Key Features

USER GUIDE MADCAP MIMIC 8. Key Features USER GUIDE MADCAP MIMIC 8 Key Features Copyright 2018 MadCap Software. All rights reserved. Information in this document is subject to change without notice. The software described in this document is

More information

REPORT DESIGNER GUIDE

REPORT DESIGNER GUIDE REPORT DESIGNER GUIDE 2018 Advance Workshop Report Designer Guide This document has been very carefully prepared in the hope to meet your expectations and to answer all your questions regarding the Advance

More information

WA1884 Introduction to Java. using Oracle JDeveloper 11g. Classroom Setup Guide. Web Age Solutions Inc. Copyright Web Age Solutions Inc.

WA1884 Introduction to Java. using Oracle JDeveloper 11g. Classroom Setup Guide. Web Age Solutions Inc. Copyright Web Age Solutions Inc. WA1884 Introduction to Java using Oracle JDeveloper 11g Classroom Setup Guide Web Age Solutions Inc. Copyright Web Age Solutions Inc. 1 Table of Contents Classroom Requirements...3 Part 1 - Minimum Hardware

More information

Table of Contents. Contents

Table of Contents. Contents Spring 2009 R.A. Table of Contents Contents Opening PowerPoint... 2 PowerPoint 2007 Interface... 2 PowerPoint Features... 2 Creating, Opening and Saving Presentations... 3 Creating a Presentation... 3

More information

Vizit Essential for SharePoint 2013 Version 6.x User Manual

Vizit Essential for SharePoint 2013 Version 6.x User Manual Vizit Essential for SharePoint 2013 Version 6.x User Manual 1 Vizit Essential... 3 Deployment Options... 3 SharePoint 2013 Document Libraries... 3 SharePoint 2013 Search Results... 4 Vizit Essential Pop-Up

More information

MapInfo Stratus. Release Notes 42

MapInfo Stratus. Release Notes 42 MapInfo Stratus Release Notes 42 UNITED STATES www.pb.com/software Technical Support: www.pbinsight.com/support CANADA www.pb.com/software Technical Support: www.pbinsight.com/support EUROPE/UNITED KINGDOM

More information

Release Notes. MapInfo Pro Version Contents:

Release Notes. MapInfo Pro Version Contents: MapInfo Pro Version 17.0 Contents: Introduction System Requirements Dependencies and Prerequisites MapInfo Pro Database Connectivity and Support Microsoft Office Support MapInfo Pro Web Server Support

More information

MapInfo ProViewer 11.0 USER GUIDE

MapInfo ProViewer 11.0 USER GUIDE MapInfo ProViewer 11.0 USER GUIDE Information in this document is subject to change without notice and does not represent a commitment on the part of the vendor or its representatives. No part of this

More information

PowerPoint Extensions for Enterprise Architect

PowerPoint Extensions for Enterprise Architect PowerPoint Extensions for Enterprise Architect PowerPoint Extensions for Enterprise Architect... 1 Disclaimer... 2 Dependencies... 2 Overview... 2 Installation... 4 Verifying the installation... 4 Exporting

More information

BIMCO's IDEA - User Manual

BIMCO's IDEA - User Manual 1 BIMCO's IDEA - User Manual Modified September 2017 Contents Background... 2 Initials... 2 Ribbon and quick icons... 2 The editor itself... 2 Creating a new document... 2 Open/Finding saved documents...

More information

User Guide Worksoft Certify Integration with SAP Solution Manager v7.2

User Guide Worksoft Certify Integration with SAP Solution Manager v7.2 User Guide Worksoft Certify Integration with SAP Solution Manager v7.2 Worksoft, Inc. 15851 Dallas Parkway, Suite 855 Addison, TX 75001 www.worksoft.com 866-836-1773 Worksoft Certify Integration with SAP

More information

REPORT DESIGNER GUIDE

REPORT DESIGNER GUIDE REPORT DESIGNER GUIDE 2017 Advance BIM Designers Report Designer Guide This document has been very carefully prepared in the hope to meet your expectations and to answer all your questions regarding

More information

Location Intelligence Geographic Information Systems. MapInfo Pro evolution Latest release adds to a long line of enhanced capabilities

Location Intelligence Geographic Information Systems. MapInfo Pro evolution Latest release adds to a long line of enhanced capabilities Location Intelligence Geographic Information Systems MapInfo Pro evolution Latest release adds to a long line of enhanced capabilities Step up to our latest GIS. As the need for spatial analytics grows,

More information

Text Box Frames. Format Text Box

Text Box Frames. Format Text Box Text Box Frames Publisher is different from Word Processing software in that text in Publisher only exists in Text Box Frames. These frames make it possible to type or import text and then move or resize

More information

Corel Ventura 8 Introduction

Corel Ventura 8 Introduction Corel Ventura 8 Introduction Training Manual A! ANZAI 1998 Anzai! Inc. Corel Ventura 8 Introduction Table of Contents Section 1, Introduction...1 What Is Corel Ventura?...2 Course Objectives...3 How to

More information

IBM. Tips and Troubleshooting Guide. IBM Emptoris Contract Management. Version SC

IBM. Tips and Troubleshooting Guide. IBM Emptoris Contract Management. Version SC IBM Emptoris Contract Management IBM Tips and Troubleshooting Guide Version 10.0.4 SC27-5345-03 IBM Emptoris Contract Management IBM Tips and Troubleshooting Guide Version 10.0.4 SC27-5345-03 ii IBM Emptoris

More information

Licensing and Activation

Licensing and Activation MapInfo Pro Version 15.0 Licensing and Activation The first time you start MapInfo Pro you are asked to activate your product using the serial number and access code you supplied during the installation.

More information

Unit 23 Creating Conditional Content

Unit 23 Creating Conditional Content Unit 23 Creating Conditional Content Unit Overview In this unit, you will learn how to: Create conditional build tags in the Project Manager Apply conditional build tags to text and graphics in a topic

More information

ATLAS.ti Feature List Comparing ATLAS.ti 7 and 8. Windows

ATLAS.ti Feature List Comparing ATLAS.ti 7 and 8. Windows ATLAS.ti Feature List Comparing ATLAS.ti 7 and 8 Interface Windows Last updated February 6 th 2018 User interface control Menus Ribbons Document area with margin Managers Navigator No Inspector No Will

More information

Location Intelligence Geographic Information Systems. MapInfo Pro v17. Stronger, smarter and simpler because of you. Free trial >>

Location Intelligence Geographic Information Systems. MapInfo Pro v17. Stronger, smarter and simpler because of you. Free trial >> Location Intelligence Geographic Information Systems MapInfo Pro v17 Stronger, smarter and simpler because of you. Free trial >> MapInfo Pro v17 is easier to use and more powerful than ever, meaning I

More information

World Premium Points of Interest Getting Started Guide

World Premium Points of Interest Getting Started Guide World Premium Points of Interest Getting Started Guide Version: 2.0 NOTICE: Copyright Pitney Bowes 2017. All Rights Reserved. 1 Table of Contents INTRODUCTION... 3 1. Preface... 3 2. Data Characteristics...

More information

Sauer-Danfoss PLUS+1 GUIDE Software Version Release Notes

Sauer-Danfoss PLUS+1 GUIDE Software Version Release Notes Sauer-Danfoss PLUS+1 GUIDE Software Version 6.0.8 Release Notes This file contains important supplementary and late-breaking information that may not appear in the main product documentation. We recommend

More information

VisualPST 2.4. Visual object report editor for PowerSchool. Copyright Park Bench Software, LLC All Rights Reserved

VisualPST 2.4. Visual object report editor for PowerSchool. Copyright Park Bench Software, LLC All Rights Reserved VisualPST 2.4 Visual object report editor for PowerSchool Copyright 2004-2015 Park Bench Software, LLC All Rights Reserved www.parkbenchsoftware.com This software is not free - if you use it, you must

More information

OnBase - EDM Services (Electronic Document Management Services)

OnBase - EDM Services (Electronic Document Management Services) OnBase - EDM Services (Electronic Document Management Services) Overview EDM Services contains the following features: EDM Briefcase Prerequisites The EDM Briefcase allows you to: Document Templates Image

More information

GeoWeb Portal. User Manual

GeoWeb Portal. User Manual GeoWeb Portal User Manual Purpose The GeoWeb Portal (GWP) is a map viewing and publishing site. It is designed to allow people to build their own maps and review the data that is attached to the elements

More information

ANALYSIS SOFTWARE. CAmReport

ANALYSIS SOFTWARE. CAmReport ANALYSIS SOFTWARE CAmReport ENGLISH User Manual CONTENTS 1. INSTALLATION... 3 2. GETTING STARTED... 4 2.1 Starting and Exiting CAmReport... 4 2.2 Setup... 4 2.2.1 Language... 4 2.2.2 Units... 4 2.2.3 CAmReport

More information

Investintech.com Inc. Software Development Kit: PDFtoImage Function Library User s Guide

Investintech.com Inc. Software Development Kit: PDFtoImage Function Library User s Guide Investintech.com Inc. Software Development Kit: PDFtoImage Function Library User s Guide Novemebr 6, 2007 http://www.investintech.com Copyright 2007 Investintech.com, Inc. All rights reserved Adobe is

More information

Label Design Program Label Artist-II Manual Rev. 1.01

Label Design Program Label Artist-II Manual Rev. 1.01 Label Design Program Label Artist-II Manual Rev. 1.01 http://www.bixolon.com Contents 1. Introduction... 2 2. Supported Operating Systems... 2 3. Features... 3 3-1 Menu... 3 3-1-1 New... 3 3-1-2

More information

RenderMonkey SDK Version 1.71

RenderMonkey SDK Version 1.71 RenderMonkey SDK Version 1.71 OVERVIEW... 3 RENDERMONKEY PLUG-IN ARCHITECTURE PHILOSOPHY... 3 IMPORTANT CHANGES WHEN PORTING EXISTING PLUG-INS... 3 GENERAL... 4 GENERATING A RENDERMONKEY PLUG-IN FRAMEWORK...

More information

Vertical Mapper v3.5 Release Notes

Vertical Mapper v3.5 Release Notes Vertical Mapper v3.5 Release Notes These release notes describe new features and enhancements to Vertical Mapper in the v3.5 release and list issues that were fixed for this release. Americas: Phone: 518

More information

FileMaker. Mobile 2.1. User s Guide. For Windows, Mac, Palm OS, and Pocket PC. Companion for Palm OS and Pocket PC

FileMaker. Mobile 2.1. User s Guide. For Windows, Mac, Palm OS, and Pocket PC. Companion for Palm OS and Pocket PC For Windows, Mac, Palm OS, and Pocket PC FileMaker Mobile 2.1 Companion for Palm OS and Pocket PC User s Guide 2000-2002 FileMaker, Inc. All Rights Reserved. FileMaker, Inc. 5201 Patrick Henry Drive Santa

More information

PracticeMaster Report Writer Guide

PracticeMaster Report Writer Guide Copyright 2014-2015 Software Technology, Inc. 1621 Cushman Drive Lincoln, NE 68512 (402) 423-1440 Tabs3.com Tabs3, PracticeMaster, and the "pinwheel" symbol ( ) are registered trademarks of Software Technology,

More information

World Premium Points of Interest Getting Started Guide

World Premium Points of Interest Getting Started Guide World Premium Points of Interest Getting Started Guide Version: 2.3 NOTICE: Copyright Pitney Bowes 2019. All Rights Reserved. 1 Table of Contents INTRODUCTION... 3 1. Preface... 3 2. Data Characteristics...

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

User Manual. The Iowa State Bar Association 625 East Court Avenue, Des Moines, IA

User Manual. The Iowa State Bar Association 625 East Court Avenue, Des Moines, IA User Manual The Iowa State Bar Association 625 East Court Avenue, Des Moines, IA 50309 www.iowadocs.net IowaDocs User Manual 05/09/2017 Table Of Contents: System Requirements:... 4 Technical Support:...

More information

Chapter 3 Microsoft Office Excel

Chapter 3 Microsoft Office Excel Chapter 3 Microsoft Office Excel What is the Active Cell? In the above illustration, notice that B2 is displayed in the Name Box, and the contents of the cell is displayed in the Formula Bar. In this

More information

Microsoft PowerPoint Tutorial

Microsoft PowerPoint Tutorial Microsoft PowerPoint Tutorial GETTING STARTED Microsoft PowerPoint is one of the most popular presentation programs supported by both Mac and PC platforms. Microsoft PowerPoint can be used to create interactive

More information

BIMCO's idea 2 - User Manual

BIMCO's idea 2 - User Manual BIMCO's idea 2 - User Manual Table of Contents Modified May 2012 Background... 2 Start up / Initials... 2 Ribbon and quick icons... 3 The editor itself... 4 Creating a new document... 4 Open/Finding saved

More information

License Server. Version 4.8. License Server User Guide

License Server. Version 4.8. License Server User Guide License Server Version 4.8 Table of Contents 1 - Introduction Overview 4 License Server and Utility 4 Concurrent Licenses 4 Borrowable Licenses 4 Distributable Licenses 5 License Server Administrator 5

More information

Enterprise Studio. User Guide Applies to: Enterprise Studio 3.1 and Team Server 3.1

Enterprise Studio. User Guide Applies to: Enterprise Studio 3.1 and Team Server 3.1 Enterprise Studio User Guide 2018-01-04 Applies to: Enterprise Studio 3.1 and Team Server 3.1 Table of contents 1 About Enterprise Studio 7 1.1 Enterprise Studio features 7 1.2 Tool language 9 1.2.1 Right-to-left

More information

Rediscover Charts IN THIS CHAPTER NOTE. Inserting Excel Charts into PowerPoint. Getting Inside a Chart. Understanding Chart Layouts

Rediscover Charts IN THIS CHAPTER NOTE. Inserting Excel Charts into PowerPoint. Getting Inside a Chart. Understanding Chart Layouts 6 Rediscover Charts Brand new to Office 2007 is the new version of Charts to replace the old Microsoft Graph Chart and the Microsoft Excel Graph both of which were inserted as OLE objects in previous versions

More information

USER GUIDE MADCAP FLARE Accessibility

USER GUIDE MADCAP FLARE Accessibility USER GUIDE MADCAP FLARE 2018 Accessibility Copyright 2018 MadCap Software. All rights reserved. Information in this document is subject to change without notice. The software described in this document

More information

SAMPLE. PowerPoint 2010 Advanced. PowerPoint 2010 Advanced. PowerPoint 2010 Advanced Page 1

SAMPLE. PowerPoint 2010 Advanced. PowerPoint 2010 Advanced. PowerPoint 2010 Advanced Page 1 PowerPoint 2010 Advanced PowerPoint 2010 Advanced Page 1 PowerPoint 2010 Advanced 2010 Cheltenham Courseware Pty. Ltd. www.cheltenhamcourseware.com.au PowerPoint 2010 Advanced Page 2 2010 Cheltenham Courseware

More information

Designer Reference 1

Designer Reference 1 Designer Reference 1 Table of Contents USE OF THE DESIGNER...4 KEYBOARD SHORTCUTS...5 Shortcuts...5 Keyboard Hints...5 MENUS...7 File Menu...7 Edit Menu...8 Favorites Menu...9 Document Menu...10 Item Menu...12

More information

Creating a PowerPoint Presentation

Creating a PowerPoint Presentation powerpoint 1 Creating a PowerPoint Presentation Getting Started 1. Open PowerPoint from the "Start" "Programs" Microsoft Office directory. 2. When starting PowerPoint, it usually starts with a new blank

More information

Manual MSDS+ Program system for the print and administration of Safety Data Sheets. By DR software

Manual MSDS+ Program system for the print and administration of Safety Data Sheets. By DR software Manual MSDS+ Program system for the print and administration of Safety Data Sheets By DR software Contents INSTALLATION AND UPDATING...1 PROGRAM INSTALLATION...1 INSTALLATION OF DATA...2 UPDATING PROGRAM

More information

TM1 Technical Bulletin

TM1 Technical Bulletin TM1 Technical Bulletin Using TM1 9.1 SP3 with Excel 2007 Date: December 11, 2007 Relevant TM1 Versions: TM1 9.1 SP3 Cognos has performed basic acceptance tests of TM1 Perspectives running on Excel 2007

More information

SPRECON-E Display Editor

SPRECON-E Display Editor SPRECON-E Display Editor Version 2.0b USERS MANUAL 94.2.912.60en 09/2004 ISSUE A page 2 / 61 Business Sector Enery Station Automation (ENA) [Power systems automation] Sprecher Automation GmbH Franckstrasse

More information

Colligo Contributor Pro 4.4 SP2. User Guide

Colligo Contributor Pro 4.4 SP2. User Guide 4.4 SP2 User Guide CONTENTS Introduction... 3 Benefits... 3 System Requirements... 3 Software Requirements... 3 Client Software Requirements... 3 Server Software Requirements... 3 Installing Colligo Contributor...

More information

Creating Accessible Documents in Microsoft Word

Creating Accessible Documents in Microsoft Word Creating Accessible Documents in Microsoft Word Microsoft Word is a commonly-used application among individuals with a variety of disabilities, and is reasonably accessible. The text within Word documents

More information

PowerWorship 4.0 Introduction

PowerWorship 4.0 Introduction PowerWorship 4.0 Introduction PowerWorship enables you to create and maintain a library of worship songs and can be used to create song lyrics presentation slides for Microsoft PowerPoint and Apache OpenOffice.

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

Target Definition Builder. Software release 4.20

Target Definition Builder. Software release 4.20 Target Definition Builder Software release 4.20 July 2003 Target Definition Builder Printing History 1 st printing December 21, 2001 2 nd printing May 31, 2002 3 rd printing October 31, 2002 4 th printing

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

Installation Guide for Windows

Installation Guide for Windows Location Intelligence Spectrum Spatial Analyst Version 6.0 Installation Guide for Windows This guide explains how to install the Spectrum Spatial Analyst on a Windows server. The topics covered in this

More information

Reference Manual Volume III Interfaces Guide

Reference Manual Volume III Interfaces Guide Reference Manual Volume III Interfaces Guide Version 6.40 Beta November 30th 2017 Copyright 2017 by Gary Riley CLIPS Interfaces Guide Version 6.40 Beta November 29th 2017 CONTENTS License Information...

More information

ATLAS.ti Windows 7.5 ATLAS.ti Windows v.8.0

ATLAS.ti Windows 7.5 ATLAS.ti Windows v.8.0 ATLAS.ti Windows 7.5 ATLAS.ti Windows v.8.0 Document last updated: December 6, 2016 Supported Data Types Text (txt, rtf, doc, docx) Open Office documents (odt) PDF (text and image) Images Audio Video Geo

More information

Product Release Notes

Product Release Notes Symphony (Business App Toolkit) 1.6.5 9/11/2014 2014 ARGUS Software, Inc Release Notes for Symphony (Business App Toolkit) 1.6.5 9/11/2014 Published by: ARGUS Software, Inc. 3050 Post Oak Boulevard Suite

More information

LABEL MATRIX TEKLYNX V E R S I O N 8 Q U I C K S T A R T G U I D E

LABEL MATRIX TEKLYNX V E R S I O N 8 Q U I C K S T A R T G U I D E TEKLYNX LABEL MATRIX V E R S I O N 8 Q U I C K S T A R T G U I D E Note Quick Start Guide The information in this manual is not binding and may be modified without prior notice. Supply of the software

More information

USER GUIDE MADCAP CAPTURE 7. Key Features

USER GUIDE MADCAP CAPTURE 7. Key Features USER GUIDE MADCAP CAPTURE 7 Key Features Copyright 2018 MadCap Software. All rights reserved. Information in this document is subject to change without notice. The software described in this document is

More information

Dr.Engrave USER'S MANUAL

Dr.Engrave USER'S MANUAL Dr.Engrave USER'S MANUAL This document is the operation manual for Dr. Engrave for Windows, a program for plate engraving. Contents Introduction... 4 Operating environment... 5 Overview of Dr.Engrave...

More information

User s Guide. For Windows, Mac, Palm OS, and Pocket PC. Companion for Palm OS and Pocket PC

User s Guide. For Windows, Mac, Palm OS, and Pocket PC. Companion for Palm OS and Pocket PC For Windows, Mac, Palm OS, and Pocket PC FileMMobile aker8 Companion for Palm OS and Pocket PC User s Guide 2000-2006 FileMaker, Inc. All Rights Reserved. FileMaker, Inc. 5201 Patrick Henry Drive Santa

More information

Open Workbench. User Guide. Service Pack

Open Workbench. User Guide. Service Pack Open Workbench User Guide Service Pack 02.1.01 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation ) is for

More information

inpo2 Release Notes v October 11, 2017

inpo2 Release Notes v October 11, 2017 inpo2 Release Notes v. 6.1.0 October 11, 2017 1.What s New in inpo2 v. 6 2.Minimum System Requirements 3.inpO2 Licensing & Modules Structure 4.Installation 5.License Activation & Upgrade 6.Upgrade Compatibility

More information

Creating an Accessible Word Document. PC Computer. Revised November 27, Adapted from resources created by the Sonoma County Office of Education

Creating an Accessible Word Document. PC Computer. Revised November 27, Adapted from resources created by the Sonoma County Office of Education Creating an Accessible Word Document PC Computer Revised November 27, 2018 Adapted from resources created by the Sonoma County Office of Education Title the Document Add an official title to the document

More information

Working with PowerPoint. Modify PowerPoint. Views

Working with PowerPoint. Modify PowerPoint. Views Working with PowerPoint The new user interface The Backstage view The Office Ribbon with its tabs The Quick Access Toolbar The Status Bar How to Use Smart Tags The New File Format Live Preview Protected

More information

For best results, ensure that the VST is the only browser instance running and fully close the browser each time before accessing the VST again.

For best results, ensure that the VST is the only browser instance running and fully close the browser each time before accessing the VST again. This User Guide summarizes the interface and components of the Valve and Actuator Selection Tool. PDF viewing: If you are viewing this PDF from the browser, easily navigate this document using the Bookmarks

More information

MIMAKI ENGINEERING CO., LTD.

MIMAKI ENGINEERING CO., LTD. For Windows XP/Windows 2000 Cutting Application Software SimpleCut Operation Manual MIMAKI ENGINEERING CO., LTD. D201463 Contents Introduction 1 About this Manual 2 Chapter 1 Installation Procedure 3

More information

Using Online Help. About the built-in help features Using Help Using the How To window Using other assistance features

Using Online Help. About the built-in help features Using Help Using the How To window Using other assistance features Using Online Help About the built-in help features Using Help Using the How To window Using other assistance features About the built-in help features Adobe Reader 6.0 offers many built-in features to

More information

South Dakota Department of Transportation January 10, 2014

South Dakota Department of Transportation January 10, 2014 South Dakota Department of Transportation January 10, 2014 USER GUIDE FOR ELECTRONIC PLANS REVIEW AND PDF DOCUMENT REQUIREMENTS FOR CONSULTANTS Contents Page(s) What Is A Shared Electronic Plan Review

More information

MapBasic Release Notes

MapBasic Release Notes MapBasic 11.5.1 Release Notes This document provides information on new and enhanced features that have been introduced into MapBasic since version 11.5. It also contains sections on resolved customer

More information

With ClaroIdeas you can quickly and easily create idea maps using a combination of words, symbols and pictures.

With ClaroIdeas you can quickly and easily create idea maps using a combination of words, symbols and pictures. Welcome to ClaroIdeas ClaroIdeas is a fresh tool to support the creation and editing of concept maps or idea maps using visual and audio components. It has been specifically developed to support people

More information

for Windows Release Notes: Version September 12, 2013 Document version: MINDJET Page 1

for Windows Release Notes: Version September 12, 2013 Document version: MINDJET Page 1 for Windows Release Notes: Version 14.0.334 September 12, 2013 Document version: 130912 MINDJET Page 1 Table of Contents RESOLVED ISSUES IN VERSION 14.0.334... 3 General Usability... 3 Import / Export

More information

2.1. Project Information and Protection Global Settings Working with Tags... 15

2.1. Project Information and Protection Global Settings Working with Tags... 15 2.1. Project Information and Protection... 1 2.2. Global Settings... 3 2.2.1. Languages...4 2.2.2. Font Templates...5 2.2.3. Picture Database...6 2.2.4. Sound Database...10 2.2.5. Text Database...12 2.3.

More information