Crystal Report Designer Component

Size: px
Start display at page:

Download "Crystal Report Designer Component"

Transcription

1 Crystal Report Designer Component Overview Contents is created using the Report Source Router a class found in the CRVIEWERLib automation server. The AddReport method of the ReportSourceRouter object is used to add reports to the report collection. supports Seagate Info reports, Web reports, Seagate Crystal Reports and Crystal ActiveX reports. Report Collections can be created from any type of report source object. In order for Seagate Info and Web reports to be displayed in the Viewer, other components are required to be installed. For Seagate Crystal Reports version 7, all report types, except for Seagate Info reports, are supported since the Web component is installed on the machine by Seagate Crystal Reports. WHAT IS THE REPORTSOURCEROUTER...2 HOW TO DECLARE THE REPORTSOURCEROUTER...3 Early Binding... 3 Late Binding... 3 HOW TO CREATE REPORT COLLECTION PACKAGE USING THE DIFFERENT REPORT SOURCES...4 Using ActiveX Designer Reports... 4 Using Crystal Reports (.rpt)... 5 Using Web Reports... 5 KNOWN ISSUES WITH THE REPORT COLLECTION...7 How is the Report name determined for each report in the collection...7 Last report in the Collection is hidden...7 Errors in reports when previewing...7 TUTORIAL...7 CONTACTING CRYSTAL DECISIONS FOR TECHNICAL SUPPORT...9 6/24/2002 3:37 PM Copyright 2001 Crystal Decisions, Inc. All Rights Reserved. Page 1

2 What is the ReportSourceRouter The Web release Viewer control (version 1 that is included in the Report Designer Component) was able to view one report at a time. Users wishing to view another report could either view the other report in another view window or overwrite the existing view with the next report. [Figure A] below shows the viewer control which is displaying a single report. Notice that the group tree view in the left margin provides the ability for the user to drilldown on the report which brings up a subview in a separate tab window. Figure A is a method of adding reports to one single view. This means that users no longer need to open up additional views in order to preview reports, instead they can view all of the reports in one single view window. The group tree view on the left margin displays report icons representing the reports in the view control. You can use the group tree view to navigate the individual reports in the viewer control. Figure B below shows what the Smart Viewer control would look like with multiple reports. This Smart Viewer control in this example contains three reports. Notice the report icons in the group tree view which can expand or collapse for drillable areas on the report. Figure B Unlike a single report which uses page on demand technology when previewed, multiple reports require the whole report to be generated before being viewed. Because reports need to be generated in there entirety before being previewed the veiwer can become very resource intensive, especially for large reports. It is suggested that developers take this into consideration when determining which reports to add to the collection object. How to declare the ReportSourceRouter Early Binding The ReportSourceRouter is a hidden object in the CRVIEWERLib automation server. Checking the option "Show Hidden Members" in the Visual Basic Object browser will have this object appear in the Object browser and intellisense. Dim Rptpk As ReportSourceRouter Set Rptpk = New ReportSourceRouter Late Binding Declare the variable as a object and using the Visual Basic CreateObject function to return a class reference to the ReportSourceRouter class. Dim Rptpk As object Set Rptpk = CreateObject("ReportSourceRouter.ReportSourceRouter") 6/24/2002 3:37 PM Copyright 2001 Crystal Decisions, Inc. All Rights Reserved. Page 2

3 How to create report collection package using the different report sources The ReportSourceRouter class, which is part of the CRVIEWERLib library, is the Report Collection object. This class contains one member, the AddReport method, which adds reports to the collection. Once all the reports have been added to the collection, set the Smart Viewer control's ReportSource property to the Report Collection object. The Report collections can be created from any type of report source objects. The following examples show you how to create reports from an ActiveX Designer report source, a Crystal Report source opened directly from the object model and a web report. Though the samples are specific for each type of report source, the report collection can be a mixture of these different report sources. Using ActiveX Designer Reports The following example shows how to create a report collection package using 3 Crystal Report Designers and then assigns the package to the Viewers ReportSource property. Dim Report1 As CrystalReport1 Dim Report2 As CrystalReport2 Dim Report3 As CrystalReport3 Private Sub Form_Load() Dim Rptpk As ReportSourceRouter 'Report Collection object Set Rptpk = New ReportSourceRouter 'Instantiate the object 'ActiveX Designer reports are instantiated Set Report1 = New CrystalReport1 Set Report2 = New CrystalReport2 Set Report3 = New CrystalReport3 'ActiveX Designer reports are added to the collection Rptpk.AddReport Report1 Rptpk.AddReport Report2 Rptpk.AddReport Report3 'Set the Viewer to the Report Collection and view the report CRViewer1.ReportSource = Rptpk CRViewer1.ViewReport 6/24/2002 3:37 PM Copyright 2001 Crystal Decisions, Inc. All Rights Reserved. Page 3

4 Set Rptpk = Nothing Using Crystal Reports (.rpt) The following example shows how to create a report collection package using 3 Crystal Reports, which are accessed directly through the Object Model and then assign the package to the Viewers ReportSource property. Dim Application As CRAXDRT.application Dim Report As CRAXDRT.Report Private Sub Form_Load() Dim Rptpk As ReportSourceRouter 'Report Collection object Set Rptpk = New ReportSourceRouter 'Instantiate the object Set Application = New CRAXDRT.application 'ActiveX Designer reports are instantiated and 'added to the collection Set Report = application.openreport("c:\report1.rpt") Rptpk.AddReport Report Set Report = application.openreport("c:\report2.rpt") Rptpk.AddReport Report Set Report = application.openreport("c:\report3.rpt") Rptpk.AddReport Report 'Set the Viewer to the Report Collection and view the report CRViewer1.ReportSource = Rptpk CRViewer1.ViewReport Set Rptpk = Nothing Using Web Reports The following example shows how to create a report collection package using 2 web reports and then assign the package to the Viewers ReportSource property. The Web report broker takes care of communicating with the Web Server. When the Web report source components are created, the Web report broker is assigned to them. Once the report broker has been assigned, the URL is then 6/24/2002 3:37 PM Copyright 2001 Crystal Decisions, Inc. All Rights Reserved. Page 4

5 specified for the report source. Whenever a Web report source needs to retrieve report information, the URL is given to the Web report broker and the report request is made. This example uses early binding. To early bind the objects, in your project, a reference will need to be made to the Seagate Crystal Reports Web Report Broker (SWEBRS.DLL automation server). To use late binding for the webbroker reference "WebReportBroker.WebReportBroker" and for the websource reference "WebReportSource.WebReportSource". Note the use in the following code of the Title property on the Web report source components. Report collection packages are displayed in the Viewer accordingly with a report title. In the Web case, a title is assigned to the Web report component since it doesn't otherwise have access to any report title information. Dim webbroker As WebReportBroker Dim websource1 As WebReportSource Dim websource2 As WebReportSource Private Sub Form_Load() Dim Rptpk As ReportSourceRouter 'create broker for report sources Set webbroker = New WebReportBroker 'create a report source per report Set websource1 = New WebReportSource Set websource2 = New WebReportSource 'hook report broker to report sources websource1.reportsource = webbroker websource2.reportsource = webbroker websource1.url = " websource2.url = " 'Set report source titles websource1.title = "Employee Profiles" websource2.title = "World Wide Sales" Rptpk.AddReport websource1 6/24/2002 3:37 PM Copyright 2001 Crystal Decisions, Inc. All Rights Reserved. Page 5

6 Rptpk.AddReport websource2 CRViewer1.ReportSource = Rptpk CRViewer1.ViewReport Set Rptpk = Nothing Known issues with the Report Collection Tutorial How is the Report name determined for each report in the collection The report's Summary title is used for the report name. If the report does not have a report title specified then a report icon appears in the grouptree view but there is no title to identify the report. A report's title can be specified at runtime using the Report.ReportTitle property. Last report in the Collection is hidden. In the current release version of the Report Collection object, the last report added to the collection does not appear in the group tree view of the viewer in the initial preview. Though the report does not appear in the list it still can be navigated to using the page navigation buttons from the Smart Viewer toolbar. Eventually the last report icon does appear. This behavior does not occur on all machines and the issue is currently being tracked. Errors in reports when previewing If a report in the collection errors on preview the user is notified of the error by a message box. The report with the error is not loaded and a Report icon, with no title, is put in its place. All remaining reports are loaded into the viewer. 1. Open the Visual Basic 5.0 or 6.0 application, if it is not already running. 2. Create a new Standard EXE project by either selecting one from the Visual Basic start up dialog or navigating to New Project under the File menu. 3. Add the Report Designer by navigating to the Projects menu, selecting Add ActiveX Designer and Crystal Report 6.0 or 7.0. The Report Gallery window will appear. 4. To select a generic report format, click on the Standard button. The Create Report Expert window will appear with a series of tabs. This window allows you to select from either Project or Custom data sources. Typically, you would use a project based data source 5. You will be connecting to an existing Access ODBC data source so click on the Project button. The Select Data Source window will appear with ODBC 6/24/2002 3:37 PM Copyright 2001 Crystal Decisions, Inc. All Rights Reserved. Page 6

7 radio button on by default. Select "Xtreme sample data" from the list of data sources. 6. For this example, you'll connect to the ODBC data source using ADO. To see which options are available, in the Select Data Source window, click Advanced. The Advanced Options dialog will appear. Click OK to accept the default of connecting using ADO. 7. Now that you've specified the data source and connection method, you'll need to specify the tables to use. Click Next > on the Select Data Source window, the Select Recordset window will appear. You'll be selecting a database table object of customer sales information from the available list of database objects. Select the "Customer" object from the object pull down list and click on the Finish button. You'll return to the Create Report Expert window. Now that you've selected the database and the table for your report, you'll need to specify the fields you want to include in the report. 8. Click on the Fields tab and select the "Customer Name" database field in the Database Fields text box. Click and drag the field into the Report Fields text box. Do the same for the "Last Year's Sales", "City" and "Region" fields. 9. Click on the Sort tab and drag the "Region" and "City" fields into the Sort Fields text box. Select in ascending order if not already visible in the Order drop-down box. 10. Click on the Total tab. Because The "Last Years Sales" field is the only numeric field in the report, the expert automatically selected it for totaling 11. Click on the TopN tab. The Expert automatically selects sum of "Last Year's Sales" and Top 5. In the where N is : text box, change the "5" to a "10". 12. Click on the Graph tab and click on the Pie button in the Graph Gallery. Click on the Data tab. The Report Expert automatically creates a graph based on the sum of "Last Year's Sales". 13. Click on the Style tab and make the report a little prettier by selecting the Executive, Trailing Break style. Click Finish. The Report Expert will then present you with the option of adding a form with the Crystal Report Viewer control and setting this as the startup object. Click OK to accept the defaults. The Expert will finish formatting the report which will be displayed in the design window. 14. From the Visual Basic toolbar select Project References and check the Crystal Report Smart Viewer reference. This reference will allow us to early bind the ReportSourceRouter object. 15. From the Project Explorer window select Form2 and click the Code View icon. 16. Remove all existing code in the code view window and add the following: 6/24/2002 3:37 PM Copyright 2001 Crystal Decisions, Inc. All Rights Reserved. Page 7

8 Dim ActiveX_Report As New CrystalReport1 Dim External_Report As CRAXDRT.Report Dim Appl As New CRAXDRT.Application Dim Rptpk As New CRVIEWERLibctl.ReportSourceRouter Private Sub Form_Load() 'Adds a title to the report ActiveX_Report.ReportTitle = "ActiveX Report" 'reference and external rpt through object model Set External_Report = Appl.OpenReport("c:\program files\" + _ "seagate crystal reports\rt01.rpt") 'adds reports to the collection Rptpk.AddReport ActiveX_Report Rptpk.AddReport External_Report 'set the collection to the viewer CRViewer1.ReportSource = Rptpk CRViewer1.ViewReport Private Sub Form_Resize() CRViewer1.Top = 0 CRViewer1.Left = 0 CRViewer1.Height = ScaleHeight CRViewer1.Width = ScaleWidth Click on the Start button on the Visual Basic toolbar or press F5 to run your project. After a few seconds, you will see a form displaying the finished report in the Crystal Report Viewer. The report should look similar to the one shown below. Contacting Crystal Decisions for Technical Support We recommend that you refer to the product documentation and that you visit our Technical Support web site for more resources. 6/24/2002 3:37 PM Copyright 2001 Crystal Decisions, Inc. All Rights Reserved. Page 8

9 Self-serve Support: Support: Telephone Support: 6/24/2002 3:37 PM Copyright 2001 Crystal Decisions, Inc. All Rights Reserved. Page 9

CHAPTER 6: SEARCHING AN ONLINE DATABASE

CHAPTER 6: SEARCHING AN ONLINE DATABASE CHAPTER 6: SEARCHING AN ONLINE DATABASE WHAT S INSIDE Searching an Online Database... 6-1 Selecting a Display Mode... 6-1 Searching a Database... 6-1 Reviewing References... 6-2 Finding Full Text for a

More information

Crystal Reports for Visual Studio.NET

Crystal Reports for Visual Studio.NET Overview Contents This document describes how to use Crystal Reports for Visual Studio.NET with ADO.NET. This document also covers the differences between ADO and ADO.NET INTRODUCTION... 2 DIFFERENCES

More information

Using Crystal Reports with VFP

Using Crystal Reports with VFP Using Crystal Reports with VFP Introduction to Crystal Reports One of the most important aspects of Visual FoxPro applications is reporting. Whether we provide canned reports or allow the user to design

More information

Introduction to Microsoft Access 2003

Introduction to Microsoft Access 2003 Introduction to Microsoft Access 2003 Zhi Liu School of Information Fall/2006 Introduction and Objectives Microsoft Access 2003 is a powerful, yet easy to learn, relational database application for Microsoft

More information

GOOGLE DOCS APPLICATION WORK WITH GOOGLE DOCUMENTS

GOOGLE DOCS APPLICATION WORK WITH GOOGLE DOCUMENTS GOOGLE DOCS APPLICATION WORK WITH GOOGLE DOCUMENTS Last Edited: 2012-07-09 1 Navigate the document interface... 4 Create and Name a new document... 5 Create a new Google document... 5 Name Google documents...

More information

Developing Own Crystal Reports

Developing Own Crystal Reports Developing Own Crystal Reports 1.1.1 The Report Creation Wizard ShipWeight is delivered with a set of sample reports to be used with the Report Viewer. In many cases, the easiest way of creating your own

More information

Aspect WordPress Theme

Aspect WordPress Theme by DesignerThemes.com Hi there. Thanks for purchasing this theme, your support is greatly appreciated! This theme documentation file covers installation and all of the main features and, just like the

More information

Crystal Reports. For Visual Studio.NET. Designing and Viewing a Report in a Windows Application

Crystal Reports. For Visual Studio.NET. Designing and Viewing a Report in a Windows Application Crystal Reports For Visual Studio.NET Designing and Viewing a Report in a Windows Application 2001 Crystal Decisions, Inc. Crystal Decisions, Crystal Reports, and the Crystal Decisions logo are registered

More information

2. Unzip the file using a program that supports long filenames, such as WinZip. Do not use DOS.

2. Unzip the file using a program that supports long filenames, such as WinZip. Do not use DOS. Using the TestTrack ODBC Driver The read-only driver can be used to query project data using ODBC-compatible products such as Crystal Reports or Microsoft Access. You cannot enter data using the ODBC driver;

More information

Section 1: Ribbon Customization

Section 1: Ribbon Customization WHAT S NEW, COMMON FEATURES IN OFFICE 2010 2 Contents Section 1: Ribbon Customization... 4 Customizable Ribbon... 4 Section 2: File is back... 5 Info Tab... 5 Recent Documents Tab... 7 New Documents Tab...

More information

TAMUS Terminal Server Setup BPP SQL/Alva

TAMUS Terminal Server Setup BPP SQL/Alva We have a new method of connecting to the databases that does not involve using the Texas A&M campus VPN. The new way of gaining access is via Remote Desktop software to a terminal server running here

More information

Google Sites: Creating, editing, and sharing a site

Google Sites: Creating, editing, and sharing a site Google Sites: Creating, editing, and sharing a site Google Sites is an application that makes building a website for your organization as easy as editing a document. With Google Sites, teams can quickly

More information

Sophos Reporting Interface Creating Reports using Crystal Reports 2008

Sophos Reporting Interface Creating Reports using Crystal Reports 2008 Sophos Reporting Interface Creating Reports using Crystal Reports 2008 Creating Reports using Crystal Reports 2008 This document describes how to use Crystal Reports to create reports from data provided

More information

How To: Create a Crystal Report from ADO.NET Dataset using Visual Basic.NET

How To: Create a Crystal Report from ADO.NET Dataset using Visual Basic.NET How To: Create a Crystal Report from ADO.NET Dataset using Visual Basic.NET See also: http://support.businessobjects.com/communitycs/technicalpapers/rtm_reporting offadonetdatasets.pdf http://www.businessobjects.com/products/dev_zone/net_walkthroughs.asp

More information

Publishing KML Services Tutorial

Publishing KML Services Tutorial Publishing KML Services Tutorial Copyright 1995-2010 Esri All rights reserved. Table of Contents Tutorial: Publishing a KML service............................ 3 Copyright 1995-2010 ESRI, Inc. All rights

More information

Introduction to Word 2007

Introduction to Word 2007 Introduction to Word 2007 You will notice some obvious changes immediately after starting Word 2007. For starters, the top bar has a completely new look, consisting of new features, buttons and naming

More information

NDSU Technology Learning & Media Center. Introduction to Google Sites

NDSU Technology Learning & Media Center. Introduction to Google Sites NDSU Technology Learning & Media Center QBB 150C 231-5130 www.ndsu.edu/its/tlmc Introduction to Google Sites Get Help at the TLMC 1. Get help with class projects on a walk-in basis; student learning assistants

More information

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

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

More information

USING STUFFIT DELUXE THE STUFFIT START PAGE CREATING ARCHIVES (COMPRESSED FILES)

USING STUFFIT DELUXE THE STUFFIT START PAGE CREATING ARCHIVES (COMPRESSED FILES) USING STUFFIT DELUXE StuffIt Deluxe provides many ways for you to create zipped file or archives. The benefit of using the New Archive Wizard is that it provides a way to access some of the more powerful

More information

Building and Using Web Services With JDeveloper 11g

Building and Using Web Services With JDeveloper 11g Building and Using Web Services With JDeveloper 11g Purpose In this tutorial, you create a series of simple web service scenarios in JDeveloper. This is intended as a light introduction to some of the

More information

for Sage 100 ERP Business Insights Overview Document

for Sage 100 ERP Business Insights Overview Document for Sage 100 ERP Business Insights Document 2012 Sage Software, Inc. All rights reserved. Sage Software, Sage Software logos, and the Sage Software product and service names mentioned herein are registered

More information

Microsoft Access 2010 Part 1: Introduction to Access

Microsoft Access 2010 Part 1: Introduction to Access CALIFORNIA STATE UNIVERSITY, LOS ANGELES INFORMATION TECHNOLOGY SERVICES Microsoft Access 2010 Part 1: Introduction to Access Fall 2014, Version 1.2 Table of Contents Introduction...3 Starting Access...3

More information

Appendix A How to create a data-sharing lab

Appendix A How to create a data-sharing lab Appendix A How to create a data-sharing lab Creating a lab involves completing five major steps: creating lists, then graphs, then the page for lab instructions, then adding forms to the lab instructions,

More information

Getting Started The Windows SharePoint Services Window

Getting Started The Windows SharePoint Services Window QUICK Source Microsoft Windows SharePoint Services 3.0 for Windows Server 2003 Getting Started The Windows SharePoint Services Window Browser Toolbars - allow the user to navigate in the browser. Link

More information

Crystal Reports Payroll Exercise

Crystal Reports Payroll Exercise Crystal Reports Payroll Exercise Objective This document provides step-by-step instructions on how to build a basic report on Crystal Reports XI on the MUNIS System supported by MAISD. The exercise will

More information

Editor Manual for SharePoint Version 1. 21 December 2005

Editor Manual for SharePoint Version 1. 21 December 2005 Editor Manual for SharePoint Version 1 21 December 2005 ii Table of Contents PREFACE... 1 WORKFLOW... 2 USER ROLES... 3 MANAGING DOCUMENT... 4 UPLOADING DOCUMENTS... 4 NEW DOCUMENT... 6 EDIT IN DATASHEET...

More information

1. Create SQL Database in Visual Studio

1. Create SQL Database in Visual Studio 1. Create SQL Database in Visual Studio 1. Select Create New SQL Server Database in Server Explorer. 2. Select your server name, and input the new database name, then press OK. Copyright 2011 Lo Chi Wing

More information

What is OneDrive for Business at University of Greenwich? Accessing OneDrive from Office 365

What is OneDrive for Business at University of Greenwich? Accessing OneDrive from Office 365 This guide explains how to access and use the OneDrive for Business cloud based storage system and Microsoft Office Online suite of products via a web browser. What is OneDrive for Business at University

More information

UOFL SHAREPOINT ADMINISTRATORS GUIDE

UOFL SHAREPOINT ADMINISTRATORS GUIDE UOFL SHAREPOINT ADMINISTRATORS GUIDE WOW What Power! Learn how to administer a SharePoint site. [Type text] SharePoint Administrator Training Table of Contents Basics... 3 Definitions... 3 The Ribbon...

More information

Salesforce Classic Guide for iphone

Salesforce Classic Guide for iphone Salesforce Classic Guide for iphone Version 37.0, Summer 16 @salesforcedocs Last updated: July 12, 2016 Copyright 2000 2016 salesforce.com, inc. All rights reserved. Salesforce is a registered trademark

More information

Ohio University Computer Services Center August, 2002 Crystal Reports Introduction Quick Reference Guide

Ohio University Computer Services Center August, 2002 Crystal Reports Introduction Quick Reference Guide Open Crystal Reports From the Windows Start menu choose Programs and then Crystal Reports. Creating a Blank Report Ohio University Computer Services Center August, 2002 Crystal Reports Introduction Quick

More information

Step 1: How to Create Links / Hyperlinks

Step 1: How to Create Links / Hyperlinks Step 1: How to Create Links / Hyperlinks Links allow you to use text or images to link a site visitor to another page or file either on your site or on another site. To learn how to create links, watch

More information

Crystal Reports Installation Guide

Crystal Reports Installation Guide Crystal Reports Installation Guide Version XI Infor Global Solutions, Inc. Copyright 2006 Infor IP Holdings C.V. and/or its affiliates or licensors. All rights reserved. The Infor word and design marks

More information

Previewing & Publishing

Previewing & Publishing Getting Started 1 Having gone to some trouble to make a site even simple sites take a certain amount of time and effort it s time to publish to the Internet. In this tutorial we will show you how to: Use

More information

History Explorer. View and Export Logged Print Job Information WHITE PAPER

History Explorer. View and Export Logged Print Job Information WHITE PAPER History Explorer View and Export Logged Print Job Information WHITE PAPER Contents Overview 3 Logging Information to the System Database 4 Logging Print Job Information from BarTender Designer 4 Logging

More information

Use the ADO Control in your Visual Basic 6 projects

Use the ADO Control in your Visual Basic 6 projects Use the ADO Control in your Visual Basic 6 projects Aside from my Database book, I haven't done much writing concerning connection to a Database---and virtually nothing on ADO. In this article, I'd like

More information

Learn how to create web enabled (browser) forms in InfoPath 2013 and publish them in SharePoint 2013. InfoPath 2013 Web Enabled (Browser) forms

Learn how to create web enabled (browser) forms in InfoPath 2013 and publish them in SharePoint 2013. InfoPath 2013 Web Enabled (Browser) forms Learn how to create web enabled (browser) forms in InfoPath 2013 and publish them in SharePoint 2013. InfoPath 2013 Web Enabled (Browser) forms InfoPath 2013 Web Enabled (Browser) forms Creating Web Enabled

More information

Umbraco Content Management System (CMS) User Guide

Umbraco Content Management System (CMS) User Guide Umbraco Content Management System (CMS) User Guide Content & media At the bottom-left of the screen you ll see 2 main sections of the CMS Content and Media. Content is the section that displays by default

More information

Form Management Admin Guide

Form Management Admin Guide Form Management Admin Guide Getting around the navigation Model Management (Admin/Technical). Create, edit and manage the basic template of content models. Form Builder - Lets you create properties in

More information

Access 2010: The Navigation Pane

Access 2010: The Navigation Pane Access 2010: The Navigation Pane Table of Contents OVERVIEW... 1 BEFORE YOU BEGIN... 2 ADJUSTING THE NAVIGATION PANE... 3 USING DATABASE OBJECTS... 3 CUSTOMIZE THE NAVIGATION PANE... 3 DISPLAY AND SORT

More information

Subscribe to RSS in Outlook 2007. Find RSS Feeds. Exchange Outlook 2007 How To s / RSS Feeds 1of 7

Subscribe to RSS in Outlook 2007. Find RSS Feeds. Exchange Outlook 2007 How To s / RSS Feeds 1of 7 Exchange Outlook 007 How To s / RSS Feeds of 7 RSS (Really Simple Syndication) is a method of publishing and distributing content on the Web. When you subscribe to an RSS feed also known as a news feed

More information

Introduction to Microsoft Access XP

Introduction to Microsoft Access XP Introduction to Microsoft Access XP Access is the database management system in Microsoft Office. A database is an organized collection of facts about a particular subject. An address book or a library

More information

Creating Digital Signatures

Creating Digital Signatures About Security You can secure a PDF using any of the following security methods: Add passwords and set security options to restrict opening, editing, and printing PDFs. Encrypt a document so that only

More information

Chapter 11 Managing Core Database Downloads

Chapter 11 Managing Core Database Downloads Chapter 11 Managing Core Database Downloads Research Insight versions 7.7 and higher offer automated delivery of the COMPUSTAT core databases over the Internet through the Database Manager application.

More information

Microsoft Excel 2013: Macro to apply Custom Margins, Titles, Gridlines, Autofit Width & Add Macro to Quick Access Toolbar & How to Delete a Macro.

Microsoft Excel 2013: Macro to apply Custom Margins, Titles, Gridlines, Autofit Width & Add Macro to Quick Access Toolbar & How to Delete a Macro. Microsoft Excel 2013: Macro to apply Custom Margins, Titles, Gridlines, Autofit Width & Add Macro to Quick Access Toolbar & How to Delete a Macro. Do you need to always add gridlines, bold the heading

More information

Information Exchange Network (IEN) System Operator Training Day 3

Information Exchange Network (IEN) System Operator Training Day 3 March 3 rd, 2003 Information Exchange Network (IEN) System Operator Training Day 3 Final March 3 rd, 2003 IEN System Operator s Training Part 3 Operator s Training Part 3 Agenda IEN Alarm Viewer TCS and

More information

1. Click the Site Actions dropdown arrow and select Show Page Editing Toolbar. 2. Click Edit Page to begin changing the page layout

1. Click the Site Actions dropdown arrow and select Show Page Editing Toolbar. 2. Click Edit Page to begin changing the page layout SharePoint Tools Create a Custom List Show Page Editing Tool Bar (If your Editing toolbar is not displaying) 1. Click the Site Actions dropdown arrow and select Show Page Editing Toolbar. 2. Click Edit

More information

The Reporting Console

The Reporting Console Chapter 1 The Reporting Console This chapter provides a tour of the WebTrends Reporting Console and describes how you can use it to view WebTrends reports. It also provides information about how to customize

More information

Tutorial JavaScript: Switching panels using a radio button

Tutorial JavaScript: Switching panels using a radio button Tutorial JavaScript: Switching panels using a radio button www.nintex.com [email protected] Contents About this tutorial... 3 Upload the JavaScript File... 4 Using JavaScript to hide or show a control

More information

Knowledgebase Article

Knowledgebase Article Company web site: Support email: Support telephone: +44 20 3287-7651 +1 646 233-1163 2 EMCO Network Inventory 5 provides a built in SQL Query builder that allows you to build more comprehensive

More information

Attach receipt options:

Attach receipt options: Attaching Receipts and Receipt Store There are a few ways to attach receipts to an expense report. You will only need to choose one of the following options when attaching receipts. You can add receipts

More information

REDUCING YOUR MICROSOFT OUTLOOK MAILBOX SIZE

REDUCING YOUR MICROSOFT OUTLOOK MAILBOX SIZE There are several ways to eliminate having too much email on the Exchange mail server. To reduce your mailbox size it is recommended that you practice the following tasks: Delete items from your Mailbox:

More information

Manual English KOI Desktop App 2.0.x

Manual English KOI Desktop App 2.0.x Manual English KOI Desktop App 2.0.x KOI Kommunikation, Organisation, Information Comm-Unity EDV GmbH 2010 Contents Introduction... 3 Information on how to use the documentation... 3 System requirements:...

More information

Handout: Word 2010 Tips and Shortcuts

Handout: Word 2010 Tips and Shortcuts Word 2010: Tips and Shortcuts Table of Contents EXPORT A CUSTOMIZED QUICK ACCESS TOOLBAR... 2 IMPORT A CUSTOMIZED QUICK ACCESS TOOLBAR... 2 USE THE FORMAT PAINTER... 3 REPEAT THE LAST ACTION... 3 SHOW

More information

Excel for Data Cleaning and Management

Excel for Data Cleaning and Management Excel for Data Cleaning and Management Background Information This workshop is designed to teach skills in Excel that will help you manage data from large imports and save them for further use in SPSS

More information

Internet Explorer 7 for Windows XP: Obtaining MIT Certificates

Internet Explorer 7 for Windows XP: Obtaining MIT Certificates Internet Explorer 7 for Windows XP: Obtaining MIT Certificates Overview In order to use secure web services at MIT, you will need to obtain two types of MIT web certificates: MIT Certificate Authority

More information

Google Sites. How to create a site using Google Sites

Google Sites. How to create a site using Google Sites Contents How to create a site using Google Sites... 2 Creating a Google Site... 2 Choose a Template... 2 Name Your Site... 3 Choose A Theme... 3 Add Site Categories and Descriptions... 3 Launch Your Google

More information

To Begin Customize Office

To Begin Customize Office To Begin Customize Office Each of us needs to set up a work environment that is comfortable and meets our individual needs. As you work with Office 2007, you may choose to modify the options that are available.

More information

Automated Dispatch System Query Tool

Automated Dispatch System Query Tool Automated Dispatch System Query Tool User Guide Version 1.0 December 16, 2007 Revision History Date Vers ion 07/26/2007 0.1 Initial draft Description 12/16/2007 1.0 Initial Released Version Table of Contents

More information

Create a Google Site in DonsApp

Create a Google Site in DonsApp Create a Google Site in DonsApp 1 Google Web Site Interactive. Constructivist. Collaborative. Communities. WHAT IS GOOGLE SITE? With one single click, you can create a website without any knowledge of

More information

TriCore Secure Web Email Gateway User Guide 1

TriCore Secure Web Email Gateway User Guide 1 TriCore Secure Web Email Gateway User Guide This document provides information about TriCore Secure Web Email Gateway. This document is for users who are authorized to send and receive encrypted email

More information

Evaluator s Guide. PC-Duo Enterprise HelpDesk v5.0. Copyright 2006 Vector Networks Ltd and MetaQuest Software Inc. All rights reserved.

Evaluator s Guide. PC-Duo Enterprise HelpDesk v5.0. Copyright 2006 Vector Networks Ltd and MetaQuest Software Inc. All rights reserved. Evaluator s Guide PC-Duo Enterprise HelpDesk v5.0 Copyright 2006 Vector Networks Ltd and MetaQuest Software Inc. All rights reserved. All third-party trademarks are the property of their respective owners.

More information

How To Create A Report In Excel

How To Create A Report In Excel Table of Contents Overview... 1 Smartlists with Export Solutions... 2 Smartlist Builder/Excel Reporter... 3 Analysis Cubes... 4 MS Query... 7 SQL Reporting Services... 10 MS Dynamics GP Report Templates...

More information

Getting started with 2c8 plugin for Microsoft Sharepoint Server 2010

Getting started with 2c8 plugin for Microsoft Sharepoint Server 2010 Getting started with 2c8 plugin for Microsoft Sharepoint Server 2010... 1 Introduction... 1 Adding the Content Management Interoperability Services (CMIS) connector... 1 Installing the SharePoint 2010

More information

About SharePoint Server 2007 My Sites

About SharePoint Server 2007 My Sites SharePoint How To s / My Sites of 6 About SharePoint Server 007 My Sites Use your My Site to store files and collaborate with your co-workers online. My Sites have public and private pages. Use your public

More information

Dreamweaver Tutorials Creating a Web Contact Form

Dreamweaver Tutorials Creating a Web Contact Form Dreamweaver Tutorials This tutorial will explain how to create an online contact form. There are two pages involved: the form and the confirmation page. When a user presses the submit button on the form,

More information

2. Building Cross-Tabs in Your Reports Create a Cross-Tab Create a Specified Group Order Filter Cross-Tab by Group Keep Groups Together

2. Building Cross-Tabs in Your Reports Create a Cross-Tab Create a Specified Group Order Filter Cross-Tab by Group Keep Groups Together Crystal Reports Level 2 Computer Training Solutions Course Outline 1. Creating Running Totals Create a Running Total Field Modify a Running Total Field Create a Manual Running Total on Either Detail Data

More information

Microsoft PowerPoint 2008

Microsoft PowerPoint 2008 Microsoft PowerPoint 2008 Starting PowerPoint... 2 Creating Slides in Your Presentation... 3 Beginning with the Title Slide... 3 Inserting a New Slide... 3 Slide Layouts... 3 Adding an Image to a Slide...

More information

KEYBOARD SHORTCUTS. Note: Keyboard shortcuts may be different for the same icon depending upon the SAP screen you are in.

KEYBOARD SHORTCUTS. Note: Keyboard shortcuts may be different for the same icon depending upon the SAP screen you are in. KEYBOARD SHORTCUTS Instead of an SAP icon button, you can use a keyboard shortcut. A keyboard shortcut is a key or combination of keys that you can use to access icon button functions while you are working

More information

ORACLE BUSINESS INTELLIGENCE WORKSHOP

ORACLE BUSINESS INTELLIGENCE WORKSHOP ORACLE BUSINESS INTELLIGENCE WORKSHOP Creating Interactive Dashboards and Using Oracle Business Intelligence Answers Purpose This tutorial shows you how to build, format, and customize Oracle Business

More information

Remote Viewer Recording Backup

Remote Viewer Recording Backup Remote Viewer Recording Backup Introduction: In this tutorial we will explain how to retrieve your recordings using the Web Service online. Using this method you can backup videos onto your computer using

More information

BCSD WebMail Documentation

BCSD WebMail Documentation BCSD WebMail Documentation Outlook Web Access is available to all BCSD account holders! Outlook Web Access provides Webbased access to your e-mail, your calendar, your contacts, and the global address

More information

Generating Open For Business Reports with the BIRT RCP Designer

Generating Open For Business Reports with the BIRT RCP Designer Generating Open For Business Reports with the BIRT RCP Designer by Leon Torres and Si Chen The Business Intelligence Reporting Tools (BIRT) is a suite of tools for generating professional looking reports

More information

MICROSOFT ACCESS 2003 TUTORIAL

MICROSOFT ACCESS 2003 TUTORIAL MICROSOFT ACCESS 2003 TUTORIAL M I C R O S O F T A C C E S S 2 0 0 3 Microsoft Access is powerful software designed for PC. It allows you to create and manage databases. A database is an organized body

More information

Adobe Reader Settings

Adobe Reader Settings Adobe Reader Settings Table of Contents Adobe 9 and X (10) Reader Settings...2 For Adobe Reader X (10)... 5 Adobe Reader XI (11)...7 Internet Explorer 8 and 9... 8 Google Chrome... 9 Mozilla Firefox...

More information

InSite Prepress Portal

InSite Prepress Portal InSite Prepress Portal System Version 7.0 Quick Start Guide English 2015-05-12 Legal information Copyright Trademarks Kodak, 2015. All rights reserved. Some documentation is distributed in Portable Document

More information

There are several ways you can reduce the size of your mailbox, they include:

There are several ways you can reduce the size of your mailbox, they include: Managing Your Outlook Mailbox 1. Introduction Email quotas control the amount of email that can be stored in your Outlook mailbox on the FM Realty Email service. FM Realty users are issued an email quota

More information

Affiliation Security

Affiliation Security Affiliation Security Access to more student information: View student information with majors/minors* View student information under your advisement View students who have signed up for courses* View student

More information

SellerDeck 2013 Reviewer's Guide

SellerDeck 2013 Reviewer's Guide SellerDeck 2013 Reviewer's Guide Help and Support Support resources, email support and live chat: http://www.sellerdeck.co.uk/support/ 2012 SellerDeck Ltd 1 Contents Introduction... 3 Automatic Pagination...

More information

PC Agent Quick Start. Open the Agent. Autonomy Connected Backup. Version 8.8. Revision 0

PC Agent Quick Start. Open the Agent. Autonomy Connected Backup. Version 8.8. Revision 0 T E C H N I C A L N O T E Autonomy Connected Backup Version 8.8 PC Agent Quick Start Revision 0 Use this document as a quick reference for common Connected Backup PC Agent tasks. If the Agent is not on

More information

Table of Contents. Welcome... 2. Login... 3. Password Assistance... 4. Self Registration... 5. Secure Mail... 7. Compose... 8. Drafts...

Table of Contents. Welcome... 2. Login... 3. Password Assistance... 4. Self Registration... 5. Secure Mail... 7. Compose... 8. Drafts... Table of Contents Welcome... 2 Login... 3 Password Assistance... 4 Self Registration... 5 Secure Mail... 7 Compose... 8 Drafts... 10 Outbox... 11 Sent Items... 12 View Package Details... 12 File Manager...

More information

EMC Smarts Network Configuration Manager

EMC Smarts Network Configuration Manager EMC Smarts Network Configuration Manager Version 9.4.1 Advisors User Guide P/N 302-002-279 REV 01 Copyright 2013-2015 EMC Corporation. All rights reserved. Published in the USA. Published October, 2015

More information

INTRODUCTION: SQL SERVER ACCESS / LOGIN ACCOUNT INFO:

INTRODUCTION: SQL SERVER ACCESS / LOGIN ACCOUNT INFO: INTRODUCTION: You can extract data (i.e. the total cost report) directly from the Truck Tracker SQL Server database by using a 3 rd party data tools such as Excel or Crystal Reports. Basically any software

More information

Google Docs A Tutorial

Google Docs A Tutorial Google Docs A Tutorial What is it? Google Docs is a free online program that allows users to create documents, spreadsheets and presentations online and share them with others for collaboration. This allows

More information

Contents Release Notes... ... 3 System Requirements... ... 4 Using Jive for Office... ... 5

Contents Release Notes... ... 3 System Requirements... ... 4 Using Jive for Office... ... 5 Jive for Office TOC 2 Contents Release Notes...3 System Requirements... 4 Using Jive for Office... 5 What is Jive for Office?...5 Working with Shared Office Documents... 5 Get set up...6 Get connected

More information

TaskCentre v4.5 Run Crystal Report Tool White Paper

TaskCentre v4.5 Run Crystal Report Tool White Paper TaskCentre v4.5 Run Crystal Report Tool White Paper Document Number: PD500-03-13-1_0-WP Orbis Software Limited 2010 Table of Contents COPYRIGHT 1 TRADEMARKS 1 INTRODUCTION 2 Overview 2 Features 2 TECHNICAL

More information

Novell ZENworks Asset Management 7.5

Novell ZENworks Asset Management 7.5 Novell ZENworks Asset Management 7.5 w w w. n o v e l l. c o m October 2006 USING THE WEB CONSOLE Table Of Contents Getting Started with ZENworks Asset Management Web Console... 1 How to Get Started...

More information

How-To Guide. Crystal Report Demo. Copyright Topaz Systems Inc. All rights reserved.

How-To Guide. Crystal Report Demo. Copyright Topaz Systems Inc. All rights reserved. How-To Guide Crystal Report Demo Copyright Topaz Systems Inc. All rights reserved. For Topaz Systems, Inc. trademarks and patents, visit www.topazsystems.com/legal. Table of Contents Overview... 3 The

More information

UF Health SharePoint 2010 Document Libraries

UF Health SharePoint 2010 Document Libraries UF Health SharePoint 2010 Document Libraries Email: [email protected] Web Page: http://training.health.ufl.edu Last Updated 2/7/2014 SharePoint 2010 Document Libraries 1.5 Hours 1.0 Shared Network

More information

FRONTPAGE FORMS... ... ...

FRONTPAGE FORMS... ... ... tro FRONTPAGE FORMS........................................ CREATE A FORM.................................................................................. 1. Open your web and create a new page. 2. Click

More information

Quick Start Guide. Installation and Setup

Quick Start Guide. Installation and Setup Quick Start Guide Installation and Setup Introduction Velaro s live help and survey management system provides an exciting new way to engage your customers and website visitors. While adding any new technology

More information

NetCDF Tutorial. Copyright 1995-2010 Esri All rights reserved.

NetCDF Tutorial. Copyright 1995-2010 Esri All rights reserved. Copyright 1995-2010 Esri All rights reserved. Table of Contents About the netcdf Tutorial............................... 3 Exercise 1: Displaying a raster layer from a netcdf file................... 4

More information

Using the SAS Enterprise Guide (Version 4.2)

Using the SAS Enterprise Guide (Version 4.2) 2011-2012 Using the SAS Enterprise Guide (Version 4.2) Table of Contents Overview of the User Interface... 1 Navigating the Initial Contents of the Workspace... 3 Useful Pull-Down Menus... 3 Working with

More information

Producing Listings and Reports Using SAS and Crystal Reports Krishna (Balakrishna) Dandamudi, PharmaNet - SPS, Kennett Square, PA

Producing Listings and Reports Using SAS and Crystal Reports Krishna (Balakrishna) Dandamudi, PharmaNet - SPS, Kennett Square, PA Producing Listings and Reports Using SAS and Crystal Reports Krishna (Balakrishna) Dandamudi, PharmaNet - SPS, Kennett Square, PA ABSTRACT The SAS Institute has a long history of commitment to openness

More information

IBM BPM V8.5 Standard Consistent Document Managment

IBM BPM V8.5 Standard Consistent Document Managment IBM Software An IBM Proof of Technology IBM BPM V8.5 Standard Consistent Document Managment Lab Exercises Version 1.0 Author: Sebastian Carbajales An IBM Proof of Technology Catalog Number Copyright IBM

More information