TEAM DEVELOPER. Your First.NET/WPF Application. Product Version 6.3

Size: px
Start display at page:

Download "TEAM DEVELOPER. Your First.NET/WPF Application. Product Version 6.3"

Transcription

1 TEAM DEVELOPER Your First.NET/WPF Application Product Version 6.3

2 Team Developer : Your First.NET/WPF Application, Product Version 6.3 The software described in this book is furnished under a license agreement and may be used only in accordance with the terms of the agreement. Last updated: November 12, Legal Notice Copyright Gupta Technologies, Inc. All rights reserved. Gupta, Gupta Technologies, the Gupta logo, Gupta Powered, the Gupta Powered logo, ACCELL, Centura, Centura Ranger, the Centura logo, Centura Web Developer, Component Development Kit, Connectivity Administrator, DataServer, DBIntegrator, Development Kit, ewave, Fast Facts, NXJ, Object Nationalizer, Quest, Quest/Web, QuickObjects, RDM, Report Builder, RPT Report Writer, RPT/Web, SQL/API, SQLBase, SQLBase Exchange, SQLBase Resource Manager, SQLConsole, SQLGateway, SQLHost, SQLNetwork, SQLRouter, SQLTalk, Team Developer, Team Object Manager, TD Mobile, Velocis, VISION, Web Developer and WebNow! are trademarks of Gupta Technologies and may be registered in the United States of America and/or other countries. SQLWindows is a registered trademark and TeamWindows, ReportWindows and EditWindows are trademarks exclusively used and licensed by Gupta Technologies. The product described in this document is distributed under licenses restricting its use, copying, distribution, and decompilation/reverse engineering. No part of this document may be reproduced in any form by any means without prior written authorization of Gupta Technologies Corporation and its licensors, if any. THE DOCUMENTATION IS PROVIDED AS IS AND ALL EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND WARRANTIES, INCLUDING ANY IMPLIED WARRANTY OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT, ARE DISCLAIMED, EXCEPT TO THE EXTENT THAT SUCH DISCLAIMERS ARE HELD TO BE LEGALLY INVALID. GUPTA TECHNOLOGIES, INC. SHALL NOT BE LIABLE FOR INCIDENTAL OR CONSEQUENTIAL DAMAGES IN CONNECTION WITH THE FURNISHING, PERFORMANCE, OR USE OF THIS DOCUMENTATION. THE INFORMATION CONTAINED IN THIS DOCUMENTATION IS SUBJECT TO CHANGE WITHOUT NOTICE. This document may describe features and/or functionality not present in your software or your service agreement. Contact your account representative to learn more about what is available with this Gupta Technologies product. Gupta Technologies, Inc Rocky Ridge Drive, Suite 380 Roseville, CA Gupta Technologies.com 2

3 Table of Contents INTRODUCTION... 4 REQUIREMENTS... 4 WRITING A.NET WPF DESKTOP APPLICATION... 5 RUNNING YOUR APPLICATION IN.NET WPF DESKTOP MODE... 9 DEPLOYING YOUR.NET WPF DESKTOP APPLICATION RUNNING YOUR APPLICATION IN.NET WPF BROWSER MODE PUBLISHING YOUR.NET WPF BROWSER APPLICATION

4 Introduction With Team Developer v6.0 you now have the ability to write applications which utilize the Microsoft.NET Framework and Windows Presentation Foundation (WPF) graphical subsystem. This Framework is supported by multiple languages, including TD v6. Included in.net is a large library of coded solutions and a common language infrastructure which manages the execution of applications written specifically for this Framework. You define that your Team Developer v6 application can be saved and run in one of two.n ET WPF modes: Desktop (EXE) application Web Browser (XBAP) application You are most familiar with running your application as a Desktop application because, prior to Team Developer v6.0, the default option for running an executable (EXE) application was Standard EXE. Later, when you wanted an executable created for your application, you clicked menu Project/Build: <> (which displayed the executable name) and your executable was created. This executable would then run as a Win32 Desktop application. Now with Team Developer v6, when you define the Build Settings for your application, you can specify that the Build Target will be a Win32, i.e., Standard EXE, application. The same output and Windows runtime environment as defined in prior versions of Team Developer. Alternatively, you can define the Build Target to be a.net application, where your application will take advantage of the.net/wpf subsystem features and run in one of two modes: Either in the Windows.NET subsystem as a Desktop application; or as an XBAP (pronounced ex-bap ) Web Browser application, hosted and run inside a web browser. This white paper will describe how to write a small database application using a Form Window with Tab Bar, Child Grid and Rich Text controls, and how to save and run as either a.net Desktop or Web Browser application. For further details about.net and WPF in Team Developer v6.0, be sure to read the Gupta book DotNet.PDF. Requirements The application demonstrated in this document requires that you have: Installed Team Developer 6.0 Access to the SQLBase ISLAND database. This database is installed by default when you install Team Developer v6.0 The demonstration application is called: FirstTDv6WPFApp.app 4

5 Writing a.net WPF Desktop Application This will not be a complex TD v6 application, though it will use several v6 controls: the Tab Bar, a Child Grid, and a Rich Text Control. For demonstration purposes, the application will connect to the demo database, SQLBase ISLAND, and query the COMPANY table. The completed application form window will consist of a Tab Bar with 2 pages. The Tab Bar s page one contains the Child Grid: After clicking on a row (either in a column or on the left side row header), Tab Bar s page two contains a Rich Text Control displaying an address label: The Rich Text Control allows you to change text font, font size, add bold, change format, and so on, and print out the address label directly from the RTC. On the next pages we will add the Form, child controls and code to provide the functionality shown above. 5

6 Steps to writing the application: Open TD, click File/New and leave Project/Build Settings set to Win32 Application while we write the application. Add a Form Window, title it First WPF Application In the outline, navigate to the Global Declarations/Window Defaults section (shown below) and change font size to 8 for the Form Window and child items text: Add variables and SAM_Create code to establish a DB connection: Add SAM_Destroy code to disconnect from the DB on application exit, as shown on page 5. 6

7 Add to the Form a Tab Bar and a Child Grid; name them as shown here. Note Tab Bar s Tab Child defined to contain: cgcompany: In the form window, size the Tab Bar large enough to contain the Child Grid, per the screen shot shown on page 4. Position and size the Child Grid as necessary. The Child Grid contains 6 columns, a local function for formatting a company s address information and updating the Rich Text Control, a window variable, and traps 3 Team Developer SAM messages: SAM_Click calls updatertcaddresslabel() when the user clicks on a column. SAM_Create populates the Child Grid with some of the COMPANY table data and has a While loop to disable editing of the grid columns. SAM_RowHeaderClick calls updatertcaddresslabel() when the user clicks on the row header square to the left of each grid row. 7

8 Add to the Tab Bar a second page and a Rich Text Control and associate the RTC with the Tab Bar s page2. Position and size the RTC so it fits within the Tab Bar s page2: Title Tab Bar s page1 and page2 per the screen shot shown in the document on page 4. Sample FirstTDv6WPFApp.app contains the completed code with comments. When you have completed the code, save your application, then, as a test run using TD s menu Debug/Go, compile and run it in Win32 mode. The application will connect to ISLAND, and when the form appears, the Child Grid will be populated with COMPANY data. If you click on the second tab, you will see the Rich Text Control with address information of the first company listed in the Child Grid. If you click on another row in the grid, then click tab page 2, that company s data will appear in the Tab s page 2 Rich Text Control. If your application does that, you are successful. Congratulations! Now let s change the Build Settings so we can execute the application in.net WPF Desktop or Web Browser mode. 8

9 Running Your Application in.net WPF Desktop Mode Our application is written so that it will run in either as a Win32 application, or as a NET/WPF application. Now, to change the application s setting, we need to display the Build Settings dialog box. To access that dialog box, click the TD menu Project/Build Settings The Build Settings dialog is displayed, showing our current Build Target as Win32 Application with Target Type: Standard EXE. Change that setting by clicking the radio button.net Application and set the.net Target Type to.net WPF Desktop (EXE), like this: Type in the Target Name: FirstTDv6WPFAppD.exe A D is added to the name, standing for Desktop, to keep the Win32 and.net versions as separate EXE names. Click OK to complete the change. Now run the application in WPF/Desktop mode from the Team Developer IDE. 9

10 Your application will look similar to this running in WPF/Desktop mode: The application s functionality is the same as in Win32 mode. Click on a company row or row header in the Child Grid, then click the Address Label tab and the Rich Text Control will display that company s mailing information in address label format. Building an executable of your application: Click TD menu Project/Build: FirstTDv6WPFAppD.exe Once the executable is built, look in your application s folder. You will see several new DLLs have been written by Team Developer v6: IBM.Data.Informix.dll Oracle.DataAccess.dll Sybase.Data.AseClient.dll Gupta.SQLBase.Data.dll These are used for database access for your.net Desktop application and all 4 of the DLLs must be available when you run your TD v6 executable in.net WPF Desktop mode. Even though this application only connects to a SQLBase database, all 4 DLLs are still required for your application to start successfully. If any are missing, TD will display a runtime error. So, in addition to the standard set of TD deploy runtime files, these 4 DLLs must also be included as part of deploying a TD v6.0 executable when you build it as a.net WPF Desktop application. Deploying Your.NET WPF Desktop Application To deploy your Desktop application for your users, you will need to create an Installer. For details on how to do this, read the section titled Deploying WPF Desktop Applications in the Gupta book DotNet.PDF. 10

11 Running Your Application in.net WPF Browser Mode To change the application s setting, we need to display the Build Settings dialog box again and change the.net Application setting NET Target Type to.net WPF Browser (XBAP), like this: Type in the Target Name: FirstTDv6WPFAppX.exe An X has been added to the name, standing for XBAP, to keep the Win32 and.net Desktop versions as separate EXE names. Click OK to complete the change. To build it, click TD menu Project/Build: FirstTDv6WPFAppX.exe 11

12 Once the executable is built, look in your application s folder. You will see several more new files have been written by Team Developer v6: The 4 database DLLs as were written in WPF Desktop mode A copy of Team Developer v6 sql.ini Xbap_key.pfx FirstTDv6WPFAppX.xbap FirstTDv6WPFAppX.exe.config FirstTDv6WPFAppX.exe.manifest As with the.net Desktop application, all these files are necessary to run your.net WPF Browser application. So, in addition to the standard set of TD deploy runtime files, these additional files must also be included as part of publishing a TD v6.0 executable when you build it as a.net WPF Browser application. Publishing Your.NET WPF Browser Application FirstTDv6WPFAppX.xbap This is the.net WPF Browser executable used for running your application in a web browser. Double-click on that file name to run in your web browser. For details on publishing your Browser application for your users, read the section titled Publishing XBAP Applications in WPF Browser in the Gupta book DotNet.PDF. Additionally, depending on which web browser you will be using, Gupta book DotNet.PDF has details for those browsers in the sections titled WPF Browser Applications in FireFox and in WPF Browser Applications in Internet Explorer. 12

TD MOBILE. Guide to Publishing Applications. Product Version 1.2

TD MOBILE. Guide to Publishing Applications. Product Version 1.2 TD MOBILE Guide to Publishing Applications Product Version 1.2 TD Mobile : Guide to Publishing Applications, Product Version 1.2 The software described in this book is furnished under a license agreement

More information

TD MOBILE. NoSQL Data Operations. Product Version 2.0

TD MOBILE. NoSQL Data Operations. Product Version 2.0 TD MOBILE NoSQL Data Operations Product Version 2.0 TD Mobile : NoSQL Data Operations, Product Version 2.0 The software described in this book is furnished under a license agreement and may be used only

More information

SQLBASE. Starter Guide. Product Version 11.7.4

SQLBASE. Starter Guide. Product Version 11.7.4 SQLBASE Starter Guide Product Version 11.7.4 The software described in this book is furnished under a license agreement and may be used only in accordance with the terms of the agreement. Last updated:

More information

TD MOBILE. Database Connectivity Guide. Product Version 2.0

TD MOBILE. Database Connectivity Guide. Product Version 2.0 TD MOBILE Database Connectivity Guide Product Version 2.0 TD Mobile : Database Connectivity Guide, Product Version 2.0 The software described in this book is furnished under a license agreement and may

More information

SQLBASE. Console Guide. Product Version 11.7.4

SQLBASE. Console Guide. Product Version 11.7.4 SQLBASE Console Guide Product Version 11.7.4 The software described in this book is furnished under a license agreement and may be used only in accordance with the terms of the agreement. Last updated:

More information

NXJ. What s New in NXJ. Product Version 12.2

NXJ. What s New in NXJ. Product Version 12.2 NXJ What s New in NXJ Product Version 12.2 i NXJ : What s New in NXJ, Product Version 12.2 The software described in this book is furnished under a license agreement and may be used only in accordance

More information

SQLBase. Starter Guide 20-2905-1004

SQLBase. Starter Guide 20-2905-1004 SQLBase Starter Guide 20-2905-1004 Trademarks Centura, Centura net.db, Centura Ranger, the Centura logo, Centura Web Developer, Gupta, the Gupta logo, Gupta Powered, the Gupta Powered logo, Fast Facts,

More information

SQLConsole Guide 20-2100-1004. Sqlconsole Guide Page 1

SQLConsole Guide 20-2100-1004. Sqlconsole Guide Page 1 SQLConsole Guide 20-2100-1004 Sqlconsole Guide Page 1 Trademarks Gupta, the Gupta logo, Gupta Powered, the Gupta Powered logo, Centura, Centura Ranger, the Centura logo, Centura Web Developer, Fast Facts,

More information

Symantec Enterprise Vault Technical Note. Administering the Monitoring database. Windows

Symantec Enterprise Vault Technical Note. Administering the Monitoring database. Windows Symantec Enterprise Vault Technical Note Administering the Monitoring database Windows December 2006 Symantec Enterprise Vault Administering the Monitoring database Copyright 2006 Symantec Corporation.

More information

Symantec Indepth for. Technical Note

Symantec Indepth for. Technical Note Symantec Indepth for Microsoft.NET postinstallation and configuration Technical Note Symantec Indepth for Microsoft.NET postinstallation and configuration Copyright 2006 Symantec Corporation. All rights

More information

Symantec Enterprise Vault

Symantec Enterprise Vault Symantec Enterprise Vault Guide for Mac OS X Users 10.0 Symantec Enterprise Vault: Guide for Mac OS X Users The software described in this book is furnished under a license agreement and may be used only

More information

How to Deploy Models using Statistica SVB Nodes

How to Deploy Models using Statistica SVB Nodes How to Deploy Models using Statistica SVB Nodes Abstract Dell Statistica is an analytics software package that offers data preparation, statistics, data mining and predictive analytics, machine learning,

More information

Enterprise Vault.cloud. Microsoft Exchange Managed Folder Archiving Guide

Enterprise Vault.cloud. Microsoft Exchange Managed Folder Archiving Guide Enterprise Vault.cloud Microsoft Exchange Managed Folder Archiving Guide Enterprise Vault.cloud: Microsoft Exchange Managed Folder Archiving Guide The software described in this book is furnished under

More information

Email Track and Trace. Administration Guide

Email Track and Trace. Administration Guide Administration Guide Track and Trace Administration Guide Documentation version: 1.0 Legal Notice Legal Notice Copyright 2013 Symantec Corporation. All rights reserved. Symantec, the Symantec Logo, the

More information

Team Developer 6 New Controls Demonstration. Gupta Technologies

Team Developer 6 New Controls Demonstration. Gupta Technologies Team Developer 6 New Controls Demonstration Gupta Technologies Table of Contents Introduction... 3 Requirements... 3 Creating a Microsoft Outlook Look and Feel Application... 4 Team Developer 6 NEW Controls...

More information

FOR WINDOWS FILE SERVERS

FOR WINDOWS FILE SERVERS Quest ChangeAuditor FOR WINDOWS FILE SERVERS 5.1 User Guide Copyright Quest Software, Inc. 2010. All rights reserved. This guide contains proprietary information protected by copyright. The software described

More information

Norton Small Business. Getting Started Guide

Norton Small Business. Getting Started Guide Norton Small Business Getting Started Guide The software described in this book is furnished under a license agreement and may be used only in accordance with the terms of the agreement. Copyright 2015

More information

Quest ChangeAuditor 5.1 FOR ACTIVE DIRECTORY. User Guide

Quest ChangeAuditor 5.1 FOR ACTIVE DIRECTORY. User Guide Quest ChangeAuditor FOR ACTIVE DIRECTORY 5.1 User Guide Copyright Quest Software, Inc. 2010. All rights reserved. This guide contains proprietary information protected by copyright. The software described

More information

Symantec Backup Exec Management Plug-in for VMware User's Guide

Symantec Backup Exec Management Plug-in for VMware User's Guide Symantec Backup Exec Management Plug-in for VMware User's Guide The software described in this book is furnished under a license agreement and may be used only in accordance with the terms of the agreement.

More information

ChangeAuditor 6.0. Web Client User Guide

ChangeAuditor 6.0. Web Client User Guide ChangeAuditor 6.0 Web Client User Guide 2013 Quest Software, Inc. ALL RIGHTS RESERVED This guide contains proprietary information protected by copyright. The software described in this guide is furnished

More information

Aras Innovator.NET Client Security Policy Configuration

Aras Innovator.NET Client Security Policy Configuration Aras Innovator.NET Client Security Policy Configuration Aras Innovator 9.1 Document #: 9.1.009022008 Last Modified: 3/17/2009 Aras Corporation ARAS CORPORATION Copyright 2009 Aras Corporation 300 Brickstone

More information

Symantec Enterprise Vault

Symantec Enterprise Vault Symantec Enterprise Vault Guide for Microsoft Outlook 2010 Users 9.0 Symantec Enterprise Vault: Guide for Microsoft Outlook 2010 Users The software described in this book is furnished under a license agreement

More information

Enabling Windows Management Instrumentation Guide

Enabling Windows Management Instrumentation Guide Enabling Windows Management Instrumentation Guide Enabling Windows Management Instrumentation Guide The software described in this book is furnished under a license agreement and may be used only in accordance

More information

Using Backup Exec System Recovery's Offsite Copy for disaster recovery

Using Backup Exec System Recovery's Offsite Copy for disaster recovery Using Backup Exec System Recovery's Offsite Copy for disaster recovery The software described in this book is furnished under a license agreement and may be used only in accordance with the terms of the

More information

Dell Spotlight on Active Directory 6.8.3. Server Health Wizard Configuration Guide

Dell Spotlight on Active Directory 6.8.3. Server Health Wizard Configuration Guide Dell Spotlight on Active Directory 6.8.3 Server Health Wizard Configuration Guide 2013 Dell Software Inc. ALL RIGHTS RESERVED. This guide contains proprietary information protected by copyright. The software

More information

formerly Help Desk Authority 9.1.3 HDAccess Administrator Guide

formerly Help Desk Authority 9.1.3 HDAccess Administrator Guide formerly Help Desk Authority 9.1.3 HDAccess Administrator Guide 2 Contacting Quest Software Email: Mail: Web site: info@quest.com Quest Software, Inc. World Headquarters 5 Polaris Way Aliso Viejo, CA 92656

More information

4.0. Offline Folder Wizard. User Guide

4.0. Offline Folder Wizard. User Guide 4.0 Offline Folder Wizard User Guide Copyright Quest Software, Inc. 2007. All rights reserved. This guide contains proprietary information, which is protected by copyright. The software described in this

More information

Symantec Mobile Management for Configuration Manager

Symantec Mobile Management for Configuration Manager Symantec Mobile Management for Configuration Manager Replication Services Installation Guide 7.5 Symantec Mobile Management for Configuration Manager: Replication Services Installation Guide The software

More information

Symantec Enterprise Vault

Symantec Enterprise Vault Symantec Enterprise Vault Guide for Microsoft Outlook 2010/2013 Users 10.0 Light Outlook Add-In Symantec Enterprise Vault: Guide for Microsoft Outlook 2010/2013 Users The software described in this book

More information

Symantec Enterprise Vault

Symantec Enterprise Vault Symantec Enterprise Vault Guide for Microsoft Outlook 2003/2007 Users 9.0 Symantec Enterprise Vault: Guide for Microsoft Outlook 2003/2007 Users The software described in this book is furnished under a

More information

Policy Based Encryption Essentials. Administrator Guide

Policy Based Encryption Essentials. Administrator Guide Policy Based Encryption Essentials Administrator Guide Policy Based Encryption Essentials Administrator Guide Documentation version: 1.0 Legal Notice Copyright 2015 Symantec Corporation. All rights reserved.

More information

Symantec Mail Security for Microsoft Exchange Management Pack Integration Guide

Symantec Mail Security for Microsoft Exchange Management Pack Integration Guide Symantec Mail Security for Microsoft Exchange Management Pack Integration Guide Symantec Mail Security for Microsoft Exchange Management Pack Integration Guide The software described in this book is furnished

More information

formerly Help Desk Authority 9.1.3 Upgrade Guide

formerly Help Desk Authority 9.1.3 Upgrade Guide formerly Help Desk Authority 9.1.3 Upgrade Guide 2 Contacting Quest Software Email: Mail: Web site: info@quest.com Quest Software, Inc. World Headquarters 5 Polaris Way Aliso Viejo, CA 92656 USA www.quest.com

More information

Craig Pelkie Bits & Bytes Programming, Inc. craig@web400.com

Craig Pelkie Bits & Bytes Programming, Inc. craig@web400.com Using the Operations Navigator Backup Utility Craig Pelkie Bits & Bytes Programming, Inc. craig@web400.com Edition OPSNAVBACKUP_20020219 Published by Bits & Bytes Programming, Inc. Valley Center, CA 92082

More information

Veritas Cluster Server Database Agent for Microsoft SQL Configuration Guide

Veritas Cluster Server Database Agent for Microsoft SQL Configuration Guide Veritas Cluster Server Database Agent for Microsoft SQL Configuration Guide Windows 2000, Windows Server 2003 5.0 11293743 Veritas Cluster Server Database Agent for Microsoft SQL Configuration Guide Copyright

More information

Symantec Enterprise Vault

Symantec Enterprise Vault Symantec Enterprise Vault Guide for Microsoft Outlook 2010/2013 Users 10.0 Full Outlook Add-In Symantec Enterprise Vault: Guide for Microsoft Outlook 2010/2013 Users The software described in this book

More information

Symantec Enterprise Vault

Symantec Enterprise Vault Symantec Enterprise Vault Guide for Microsoft Outlook 2010/2013 Users 10.0 Full Outlook Add-In Symantec Enterprise Vault: Guide for Microsoft Outlook 2010/2013 Users The software described in this book

More information

Backup Exec 15. Quick Installation Guide

Backup Exec 15. Quick Installation Guide Backup Exec 15 Quick Installation Guide 21344987 Documentation version: 15 PN: 21344987 Legal Notice Copyright 2015 Symantec Corporation. All rights reserved. Symantec, the Symantec Logo, the Checkmark

More information

hp digital home networking wireless USB network adapter hn210w quick start guide

hp digital home networking wireless USB network adapter hn210w quick start guide hp digital home networking wireless USB network adapter hn210w quick start guide Revision #: 15 Page: 1 of 11 Printed: 08/15/01 04:44 PM The Hewlett-Packard Company makes no warranty of any kind with regard

More information

Dell Statistica Document Management System (SDMS) Installation Instructions

Dell Statistica Document Management System (SDMS) Installation Instructions Dell Statistica Document Management System (SDMS) Installation Instructions 2015 Dell Inc. ALL RIGHTS RESERVED. This guide contains proprietary information protected by copyright. The software described

More information

Symantec Enterprise Vault

Symantec Enterprise Vault Symantec Enterprise Vault Guide for Microsoft Outlook 2003/2007 Users 10.0 Full Outlook Add-In Symantec Enterprise Vault: Guide for Microsoft Outlook 2003/2007 Users The software described in this book

More information

Keynote DeviceAnywhere/HP Application Lifecycle Management (HP ALM/QC) Integration Guide. TCE Automation 5.2

Keynote DeviceAnywhere/HP Application Lifecycle Management (HP ALM/QC) Integration Guide. TCE Automation 5.2 Keynote DeviceAnywhere/HP Application Lifecycle Management (HP ALM/QC) Integration Guide TCE Automation 5.2 Copyright Copyright 2012 Keynote DeviceAnywhere. All Rights Reserved. August 2012. Notice 2012

More information

Symantec Enterprise Vault

Symantec Enterprise Vault Symantec Enterprise Vault Guide for Microsoft Outlook 2003/2007 Users 10.0 Light Outlook Add-In Symantec Enterprise Vault: Guide for Microsoft Outlook 2003/2007 Users The software described in this book

More information

CA VPN Client. User Guide for Windows 1.0.2.2

CA VPN Client. User Guide for Windows 1.0.2.2 CA VPN Client User Guide for Windows 1.0.2.2 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation ) is for your

More information

DEPLOYING A VISUAL BASIC.NET APPLICATION

DEPLOYING A VISUAL BASIC.NET APPLICATION C6109_AppendixD_CTP.qxd 18/7/06 02:34 PM Page 1 A P P E N D I X D D DEPLOYING A VISUAL BASIC.NET APPLICATION After completing this appendix, you will be able to: Understand how Visual Studio performs deployment

More information

Symantec Managed PKI. Integration Guide for ActiveSync

Symantec Managed PKI. Integration Guide for ActiveSync Symantec Managed PKI Integration Guide for ActiveSync ii Symantec Managed PKI Integration Guide for ActiveSync The software described in this book is furnished under a license agreement and may be used

More information

For Active Directory Installation Guide

For Active Directory Installation Guide For Active Directory Installation Guide Version 2.5.2 April 2010 Copyright 2010 Legal Notices makes no representations or warranties with respect to the contents or use of this documentation, and specifically

More information

Security Explorer 9.5. User Guide

Security Explorer 9.5. User Guide 2014 Dell Inc. ALL RIGHTS RESERVED. This guide contains proprietary information protected by copyright. The software described in this guide is furnished under a software license or nondisclosure agreement.

More information

AccelPro SSL VPN v3.1.9 AccelPro SSL VPN. End User Installation Guide for Director General Of Hydro Carbon Users

AccelPro SSL VPN v3.1.9 AccelPro SSL VPN. End User Installation Guide for Director General Of Hydro Carbon Users AccelPro SSL VPN v3.1.9 AccelPro SSL VPN End User Installation Guide for Director General Of Hydro Carbon Users AccelPro Technologies makes no warranty of any kind with regard to this manual, including,

More information

Excel Companion. (Profit Embedded PHD) User's Guide

Excel Companion. (Profit Embedded PHD) User's Guide Excel Companion (Profit Embedded PHD) User's Guide Excel Companion (Profit Embedded PHD) User's Guide Copyright, Notices, and Trademarks Copyright, Notices, and Trademarks Honeywell Inc. 1998 2001. All

More information

NetBackup Backup, Archive, and Restore Getting Started Guide

NetBackup Backup, Archive, and Restore Getting Started Guide NetBackup Backup, Archive, and Restore Getting Started Guide UNIX, Windows, and Linux Release 6.5 Veritas NetBackup Backup, Archive, and Restore Getting Started Guide Copyright 2007 Symantec Corporation.

More information

Symantec Backup Exec System Recovery Granular Restore Option User's Guide

Symantec Backup Exec System Recovery Granular Restore Option User's Guide Symantec Backup Exec System Recovery Granular Restore Option User's Guide Symantec Backup Exec System Recovery Granular Restore Option User's Guide The software described in this book is furnished under

More information

SolarWinds Technical Reference

SolarWinds Technical Reference SolarWinds Technical Reference Riverbed and SolarWinds WAN Optimization Introduction...3 Using the WAN Optimization Reports...3 Downloading and Saving Your Reports...3 Specifying Traffic Optimized Interfaces...3

More information

Symantec Backup Exec System Recovery Exchange Retrieve Option User's Guide

Symantec Backup Exec System Recovery Exchange Retrieve Option User's Guide Symantec Backup Exec System Recovery Exchange Retrieve Option User's Guide Symantec Backup Exec System Recovery Exchange Retrieve Option User's Guide The software described in this book is furnished under

More information

Enterprise Vault Installing and Configuring

Enterprise Vault Installing and Configuring Enterprise Vault Installing and Configuring Enterprise Vault 6.0 Legal Notice Copyright 2005 Symantec Corporation. All rights reserved. Symantec, the Symantec Logo, VERITAS, the VERITAS Logo, and Enterprise

More information

Altiris Patch Management Solution for Windows 7.1 from Symantec Release Notes

Altiris Patch Management Solution for Windows 7.1 from Symantec Release Notes Altiris Patch Management Solution for Windows 7.1 from Symantec Release Notes Altiris Patch Management Solution for Windows 7.1 from Symantec Release Notes The software described in this book is furnished

More information

Symantec Enterprise Vault Technical Note. Troubleshooting the Monitoring database and agents. Windows

Symantec Enterprise Vault Technical Note. Troubleshooting the Monitoring database and agents. Windows Symantec Enterprise Vault Technical Note Troubleshooting the Monitoring database and agents Windows December 2006 Symantec Enterprise Vault Troubleshooting the Monitoring database and agents Copyright

More information

Email Address Registration. Administrator Guide

Email Address Registration. Administrator Guide Email Address Registration Administrator Guide Address Registration Administrator Guide Documentation version: 1.0 Legal Notice Legal Notice Copyright 2013 Symantec Corporation. All rights reserved. Symantec,

More information

Symantec Backup Exec TM 11d for Windows Servers. Quick Installation Guide

Symantec Backup Exec TM 11d for Windows Servers. Quick Installation Guide Symantec Backup Exec TM 11d for Windows Servers Quick Installation Guide September 2006 Symantec Legal Notice Copyright 2006 Symantec Corporation. All rights reserved. Symantec, Backup Exec, and the Symantec

More information

Symantec Mail Security for Microsoft Exchange Management Pack Integration Guide

Symantec Mail Security for Microsoft Exchange Management Pack Integration Guide Symantec Mail Security for Microsoft Exchange Management Pack Integration Guide Symantec Mail Security for Microsoft Exchange Management Pack Integration Guide The software described in this book is furnished

More information

formerly Help Desk Authority 9.1.3 HDAccess User Manual

formerly Help Desk Authority 9.1.3 HDAccess User Manual formerly Help Desk Authority 9.1.3 HDAccess User Manual 2 Contacting Quest Software Email: Mail: Web site: info@quest.com Quest Software, Inc. World Headquarters 5 Polaris Way Aliso Viejo, CA 92656 USA

More information

Introduction to Version Control in

Introduction to Version Control in Introduction to Version Control in In you can use Version Control to work with different versions of database objects and to keep the database updated. You can review, manage, compare, and revert to any

More information

Polar Help Desk 4.1. User s Guide

Polar Help Desk 4.1. User s Guide Polar Help Desk 4.1 User s Guide Copyright (legal information) Copyright Polar 1995-2005. All rights reserved. The information contained in this document is proprietary to Polar and may not be used or

More information

Email AntiVirus. Administrator Guide

Email AntiVirus. Administrator Guide Email AntiVirus Administrator Guide Email AntiVirus Administrator Guide Documentation version: 1.0 Legal Notice Legal Notice Copyright 2013 Symantec Corporation. All rights reserved. Symantec, the Symantec

More information

Invoice Quotation and Purchase Orders Maker

Invoice Quotation and Purchase Orders Maker Invoice Quotation and Purchase Orders Maker Professional Edition Version 2.0.0.0 Help File By: Khaled Aljundi Software developer 1 P a g e Table of Contents 1.0 License Agreement... 3 2.0 About This Software...

More information

formerly Help Desk Authority 9.1.2 Quest Free Network Tools User Manual

formerly Help Desk Authority 9.1.2 Quest Free Network Tools User Manual formerly Help Desk Authority 9.1.2 Quest Free Network Tools User Manual 2 Contacting Quest Software Email: Mail: Web site: info@quest.com Quest Software, Inc. World Headquarters 5 Polaris Way Aliso Viejo,

More information

USER MANUAL APPLICATION MONITOR. Version 1.5 - March 2015

USER MANUAL APPLICATION MONITOR. Version 1.5 - March 2015 USER MANUAL APPLICATION MONITOR Version 1.5 - March 2015 USER MANUAL IP2Archive 1.5 Application Monitor Disclaimer This manual and the information contained herein are the sole property of EVS Broadcast

More information

VERITAS Backup Exec 9.1 for Windows Servers Quick Installation Guide

VERITAS Backup Exec 9.1 for Windows Servers Quick Installation Guide VERITAS Backup Exec 9.1 for Windows Servers Quick Installation Guide N109548 Disclaimer The information contained in this publication is subject to change without notice. VERITAS Software Corporation makes

More information

Defender Delegated Administration. User Guide

Defender Delegated Administration. User Guide Defender Delegated Administration User Guide 2012 Quest Software, Inc. ALL RIGHTS RESERVED. This guide contains proprietary information protected by copyright. The software described in this guide is furnished

More information

STEP BY STEP IIS, DotNET and SQL-Server Installation for an ARAS Innovator9x Test System

STEP BY STEP IIS, DotNET and SQL-Server Installation for an ARAS Innovator9x Test System STEP BY STEP IIS, DotNET and SQL-Server Installation for an ARAS Innovator9x Test System Abstract The intention of this document is to ensure successful installation of 3rd-Party software required for

More information

Getting Started Guide for Symantec On-Demand Protection for Outlook Web Access 3.0

Getting Started Guide for Symantec On-Demand Protection for Outlook Web Access 3.0 Getting Started Guide for Symantec On-Demand Protection for Outlook Web Access 3.0 PN: 12199694 Getting Started Guide for Symantec On-Demand Protection for Outlook Web Access 3.0 The software described

More information

BlackBerry IT Policy Manager Research In Motion

BlackBerry IT Policy Manager Research In Motion Research In Motion 2002 Research In Motion Limited. All Rights Reserved. Contents Overview... 1 Understanding the BlackBerry IT Policy feature... 2 Policy files and the BlackBerry Desktop Manager configuration...

More information

INSTALLATION GUIDE. AXIS Camera Station

INSTALLATION GUIDE. AXIS Camera Station INSTALLATION GUIDE AXIS Camera Station About this Guide This guide is intended for administrators and users of the AXIS Camera Station, and is applicable for software release 3.50 and later. It covers

More information

Cisco UCS Director Payment Gateway Integration Guide, Release 4.1

Cisco UCS Director Payment Gateway Integration Guide, Release 4.1 First Published: April 16, 2014 Americas Headquarters Cisco Systems, Inc. 170 West Tasman Drive San Jose, CA 95134-1706 USA http://www.cisco.com Tel: 408 526-4000 800 553-NETS (6387) Fax: 408 527-0883

More information

Altiris Monitor Pack for Servers 7.1 SP2 from Symantec Release Notes

Altiris Monitor Pack for Servers 7.1 SP2 from Symantec Release Notes Altiris Monitor Pack for Servers 7.1 SP2 from Symantec Release Notes Altiris Monitor Pack for Servers 7.1 SP2 from Symantec Release Notes The software described in this book is furnished under a license

More information

User Document. Adobe Acrobat 7.0 for Microsoft Windows Group Policy Objects and Active Directory

User Document. Adobe Acrobat 7.0 for Microsoft Windows Group Policy Objects and Active Directory Adobe Acrobat 7.0 for Microsoft Windows Group Policy Objects and Active Directory Copyright 2005 Adobe Systems Incorporated. All rights reserved. NOTICE: All information contained herein is the property

More information

NCD ThinPATH Load Balancing Startup Guide

NCD ThinPATH Load Balancing Startup Guide NCD ThinPATH Load Balancing Startup Guide Copyright Copyright 1999 by Network Computing Devices, Inc. (NCD).The information contained in this document is subject to change without notice. Network Computing

More information

Self Help Guides. Create a New User in a Domain

Self Help Guides. Create a New User in a Domain Self Help Guides Create a New User in a Domain Creating Users & Groups This document is to be used as a guide to creating users and/or groups in a Domain Server environment; 1. Windows Server Domain exists,

More information

AvePoint Tags 1.1 for Microsoft Dynamics CRM. Installation and Configuration Guide

AvePoint Tags 1.1 for Microsoft Dynamics CRM. Installation and Configuration Guide AvePoint Tags 1.1 for Microsoft Dynamics CRM Installation and Configuration Guide Revision G Issued August 2014 Table of Contents About AvePoint Tags for Microsoft Dynamics CRM... 3 Required Permissions...

More information

1. Right click using your mouse on the desktop and select New Shortcut.

1. Right click using your mouse on the desktop and select New Shortcut. offers 3 login page styles: Standard Login, List Login or Quick Time Punch. Each login page can be saved as a shortcut to your desktop or as a bookmark for easy fast login access. For quicker access to

More information

Boundary Encryption.cloud Deployment Process Overview

Boundary Encryption.cloud Deployment Process Overview Boundary Encryption.cloud Deployment Process Overview Boundary Encryption.cloud Deployment Process Overview Documentation version: 1.0 Legal Notice Legal Notice Copyright 2011 Symantec Corporation. All

More information

Learn About Analysis, Interactive Reports, and Dashboards

Learn About Analysis, Interactive Reports, and Dashboards Learn About Analysis, Interactive Reports, and Dashboards This document supports Pentaho Business Analytics Suite 5.0 GA and Pentaho Data Integration 5.0 GA, documentation revision February 3, 2014, copyright

More information

ActiveRoles 6.8. Web Interface User Guide

ActiveRoles 6.8. Web Interface User Guide ActiveRoles 6.8 Web Interface User Guide 2012 Quest Software, Inc. ALL RIGHTS RESERVED. This guide contains proprietary information protected by copyright. The software described in this guide is furnished

More information

Web Security Firewall Setup. Administrator Guide

Web Security Firewall Setup. Administrator Guide Web Security Firewall Setup Administrator Guide Web Security Firewall Setup Guide Documentation version: 1.0 Legal Notice Legal Notice Copyright 2013 Symantec Corporation. All rights reserved. Symantec,

More information

Dell One Identity Cloud Access Manager 8.0 - How to Configure vworkspace Integration

Dell One Identity Cloud Access Manager 8.0 - How to Configure vworkspace Integration Dell One Identity Cloud Access Manager 8.0 - How to Configure vworkspace Integration February 2015 This guide describes how to configure Dell One Identity Cloud Access Manager to communicate with a Dell

More information

Scribe Online Integration Services (IS) Tutorial

Scribe Online Integration Services (IS) Tutorial Scribe Online Integration Services (IS) Tutorial 7/6/2015 Important Notice No part of this publication may be reproduced, stored in a retrieval system, or transmitted in any form or by any means, photocopying,

More information

Introducing Gupta Team Developer 20-6200-0004

Introducing Gupta Team Developer 20-6200-0004 Introducing Gupta Team Developer 20-6200-0004 Trademarks Centura, the Centura logo, Centura net.db, Centura Web Developer, Gupta, the Gupta logo, Gupta Powered, the Gupta Powered logo, Fast Facts, Object

More information

8.7. Resource Kit User Guide

8.7. Resource Kit User Guide 8.7 Resource Kit User Guide 2011 Quest Software, Inc. ALL RIGHTS RESERVED. This document contains proprietary information protected by copyright. The software described in this document is furnished under

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

Symantec LiveUpdate Administrator. Getting Started Guide

Symantec LiveUpdate Administrator. Getting Started Guide Symantec LiveUpdate Administrator Getting Started Guide Symantec LiveUpdate Administrator Getting Started Guide The software described in this book is furnished under a license agreement and may be used

More information

ACS EPF Download Manager Technical Guide. Table of Contents

ACS EPF Download Manager Technical Guide. Table of Contents Table of Contents Introduction... 3 Administration... 3 Disclaimer... 3 System Requirements... 3 Software Download... 3 Software Installation... 4 Preparing for the Installation... 4 Unzip the Software

More information

Virtual Contact Center

Virtual Contact Center Virtual Contact Center Zendesk CTI Integration Configuration Guide Version 8.0 Revision 1.0 Copyright 2013, 8x8, Inc. All rights reserved. This document is provided for information purposes only and the

More information

Symantec AntiVirus Corporate Edition Patch Update

Symantec AntiVirus Corporate Edition Patch Update Symantec AntiVirus Corporate Edition Patch Update Symantec AntiVirus Corporate Edition Update Documentation version 10.0.1.1007 Copyright 2005 Symantec Corporation. All rights reserved. Symantec, the Symantec

More information

CommVault Simpana Archive 8.0 Integration Guide

CommVault Simpana Archive 8.0 Integration Guide CommVault Simpana Archive 8.0 Integration Guide Data Domain, Inc. 2421 Mission College Boulevard, Santa Clara, CA 95054 866-WE-DDUPE; 408-980-4800 Version 1.0, Revision B September 2, 2009 Copyright 2009

More information

ACT! by Sage. Premium for Workgroups 2007 (9.0) Administrator s Guide to the ACT! Reader Utility

ACT! by Sage. Premium for Workgroups 2007 (9.0) Administrator s Guide to the ACT! Reader Utility ACT! by Sage Premium for Workgroups 2007 (9.0) Administrator s Guide to the ACT! Reader Utility ACT! by Sage Premium for Workgroups 2007 (9.0) Administrator s Guide to the ACT! Reader Utility Copyright

More information

Clearview Customer Web Access

Clearview Customer Web Access Clearview Customer Web Access This document outlines the Clearview Process flows for Logging in to Customer Web Access Service Listing o Service Order Desktop o Service Tasks o Viewing Service Schedules

More information

Policy Based Encryption Z. Administrator Guide

Policy Based Encryption Z. Administrator Guide Policy Based Encryption Z Administrator Guide Policy Based Encryption Z Administrator Guide Documentation version: 1.2 Legal Notice Legal Notice Copyright 2012 Symantec Corporation. All rights reserved.

More information

Legal Information Trademarks Licensing Disclaimer

Legal Information Trademarks Licensing Disclaimer Scribe Insight Tutorials www.scribesoft.com 10/1/2014 Legal Information 1996-2014 Scribe Software Corporation. All rights reserved. Complying with all applicable copyright laws is the responsibility of

More information

Policy Based Encryption E. Administrator Guide

Policy Based Encryption E. Administrator Guide Policy Based Encryption E Administrator Guide Policy Based Encryption E Administrator Guide Documentation version: 1.2 Legal Notice Legal Notice Copyright 2012 Symantec Corporation. All rights reserved.

More information

Policy Based Encryption E. Administrator Guide

Policy Based Encryption E. Administrator Guide Policy Based Encryption E Administrator Guide Policy Based Encryption E Administrator Guide Documentation version: 1.2 Legal Notice Legal Notice Copyright 2012 Symantec Corporation. All rights reserved.

More information