GoldenGate Developer's Manual For Macromedia Authorware

Size: px
Start display at page:

Download "GoldenGate Developer's Manual For Macromedia Authorware"

Transcription

1 GoldenGate Developer's Manual For Macromedia Authorware Integration New Media Inc

2 Contents Contents 2 Overview 4 What the GoldenGate Client Xtra can do 4 What is not supported 5 System requirements 6 Client Xtra 6 Macintosh version 6 Windows version 6 Server 6 Using the GoldenGate Client Xtra 7 Initializing the GoldenGate Client 7 Creating an Instance of GGConnection 7 Creating an Instance of GGDBE 7 Example 7 Creating a recordset 8 Creating instances of GGRecordSet 8 Creating instances of GGSQLQueryRS 8 Managing data 8 Selecting records 8 Selecting all the records of a table 8 Selecting records that match specific criteria 9 Selecting records by executing an SQL Query 9 Browsing through a recordset 9 Checking the position of the current record 10 Checking the size of the recordset 10 Reading data from the current record 10 Reading one or more record at a time 10 Adding records (using GGRecordSet) 11 Adding records (using GGSQLQueryRS) 11 Modifying records (using GGRecordSet) 11 Modifying records (using GGSQLQueryRS) 11 Deleting records (using GGRecordSet) 12 Deleting records (using GGSQLQueryRS) 12 Cleaning-up 12 GoldenGate Developer's Manual 2

3 Checking for errors 12 Appendix: Controlling dialup 14 Index 15 Apple, Mac and Macintosh are trademarks or registered trademarks of Apple Computer, Inc. Macromedia, Authorware, Director and Xtra are trademarks or registered trademarks of Macromedia, Inc. in the United States and/or other countries. Microsoft, Windows and Windows NT are trademarks or registered trademarks of Microsoft Corporation, registered in the U.S. and/or other countries. Other trademarks, trade names and product names contained in this manual may be the trademarks or registered trademarks of their respective owners, and are hereby acknowledged. GoldenGate Developer's Manual 3

4 Overview At the heart of GoldenGate, there is: The GoldenGate Server, who is responsible of managing your databases and answering to commands from GoldenGate Clients. One or more GoldenGate Clients who accept commands from the Authorware pieces they are linked to. They execute the commands by communicating with the GoldenGate Server through the GoldenGate Client Xtra and a TCP/IP network. V12-DBE Online overview What the GoldenGate Client Xtra can do This is a brief overview of what the GoldenGate Client Xtra can do. For a complete list of the GoldenGate Client Xtra methods, see the Golden Gate Client Xtra Reference Manual. Manage the connection to the server: Open or Close the connection to the server with New(GGConnection). Build a record selection: specify criteria with SetCriteria, optionally specify a sorting order with OrderBy then call Select to actually send the query and bring one record at a time to the Client. Multiple criteria can be defined with operators such as = (matches exactly),<> (does not match), > (Greater), >= (Greater or equal), < (Smaller), <= (Smaller or equal), Starts (records that start with the specified string), Contains (records that contain the specified string), Start (records that start with a specified string). SelectAll can eventually be called to retrieve all the records of a table. Manage the selection: SelectCount returns the number of records in the selection. GetPosition returns the position of the cursor in the current record. GoldenGate Developer's Manual 4

5 Go, GoNext, GoPrevious, GoFirst, GoLast allow browsing across the selection. Read and write records: Read the current record's fields data with GetField or GetMedia. Read multiple records at once into a string, a list or a property list with GetSelection. Delete the current record with DeleteRecord. Modify the current record with SetField (see Using the GoldenGate Client Xtra to learn how to combine SetField with AddRecord, EditRecord and UpdateRecord). Execute an SQL query with New(GGSQLQueryRS). What is not supported Although GoldenGate uses advanced tools like ODBC on the server side, you will never need to invoke the ODBC 's methods yourself. Instead, you link the GoldenGate Client Xtra to your Authorware piece and use its methods. However, not all ODBC methods can be used from the GoldenGate Client Xtra, mostly because such features would be irrelevant to use over the Internet, or sometimes insecure. The GoldenGate Client Xtra does not support the following: Create a new database through Scripting Create a new table through Scripting Import/export files Change the password of a database Lock/unlock manually records of a table (this feature depends on the database manager on the server side). GoldenGate Developer's Manual 5

6 System requirements Client Xtra Macintosh version Power Macintosh or PPC 100Mhz or faster with System or later with 32Mb of available RAM. The hard disk space required by the Xtra is negligible. On the Macintosh, GoldenGate (basically, any Xtra) will share the same memory allocation as Macromedia Authorware. For simple database applications, you do not need to change the Authorware piece s memory allocation. For more advanced projects, you might want to consider increasing the memory allocation on the projector. Windows version Any PC with Intel Pentium 100Mhz or later, running Windows 95/98/ME/ NT4.0/2000 (32-bit) or later with 32Mb of available RAM. The hard disk space required by the Xtra is negligible. Server Any PC running Windows NT 4.0 or 2000 with 128Mb RAM. Recommended: 256Mb RAM. GoldenGate Developer's Manual 6

7 Using the GoldenGate Client Xtra Initializing the GoldenGate Client When your Authorware piece starts, or when your piece needs to access a GoldenGate database, you will need to initialize the client by: Creating an Instance of GGConnection Create an instance of GGConnection and assign it to a global variable. Example to initiate a connection: gcx := NewObject("GGConnection", " ", 2003, "guest", "anonymous") error checking (GGStatus()) In this example, the parameters , 2003, guest and anonymous are respectively the server's IP number, the server's port number, the user name and the user password. See details in the GoldenGate Client Xtra Reference Manual. It is highly recommended to check whether or not NewObject succeeded by checking the value of objectp(gcx) as shown above. Creating a GGConnection instance does open a connection to the server. Creating an Instance of GGDBE Create an instance of GGDBE and assign it to a global variable. Example to open a remote database: gdb := NewObject( GGDBE", gcx, "catalog") GGError() In this example, the parameters gcx and catalog are respectively the references to the GGConnection instance and the remote database name. See details in the GoldenGate Client Xtra Reference Manual. It is highly recommended to check whether or not NewObject succeeded by checking the value of GGError() as shown above. Example A typical GoldenGate Client initialization script looks like this: gcx := NewObject ("GGConnection"", " ", 2003, "guest", "anonymous) GGError() gdb := NewObject ("GGDBE", gcx, "catalog") GGError() GoldenGate Developer's Manual 7

8 Recordsets are the equivalent of V12 Database Engine selections. Both terms can be used interchangeably with GoldenGate. Creating a recordset A recordset is a collection of records. There are two ways of creating recordsets: - V12 database engine-like: Create an instance of GGRecordSet to open a table. - SQL-like: Create an instance of GGSQLQueryRS to directly execute an SQL query (create a recordset, add, edit or delete a record). Creating instances of GGRecordSet Once the connection is opened and a database is opened, create as many instances of GGRecordSet as needed by your project, and assign them to global variables. grs := NewObject("GGRecordSet", gdb, "Articles") gdb is the global variable that was assigned to the GGDBE instance. Articles is the name of the table to open. Creating instances of GGSQLQueryRS Once the connection is opened and a database is opened, execute as many instances of GGSQLQuery as needed by your project, and assign them to global variables. grs := NewObject("GGSQLQueryRS", gdb, "SELECT name, price FROM catalog WHERE price >=?", [150.00]) gdb is the global variable that was assigned to the GGDBE instance. SELECT is the SQL Query and [150.00] is the query parameter of the SQL Query to execute. Managing data Only the general use of each GoldenGate Client Xtra method is described below. See details in the GoldenGate Client Xtra Reference Manual. Keep in mind that it is very important to check for possible errors after each call to the GoldenGate Client. Selecting records Before reading or modifying any data, you must have a valid recordset and a valid current record. The recordset is created by either SelectAll (all records of a table) or Select (only records that match specific criteria). Selecting all the records of a table SelectAll selects all the records of a table. It can be preceded by a call to OrderBy to specify a particular sorting order. CallObject(gRS, OrderBy, "LastName") CallObject (grs, SelectAll ) GoldenGate Developer's Manual 8

9 Selecting records that match specific criteria Select selects the records that match specific criteria. It must be preceded by calls to SetCriteria and optionally to a call to OrderBy. This example selects the records of the table gprodstable whose price is at most $100: CallObject (grs, SetCriteria, ["price", "<=", 100]) CallObject (grs, Select ) This example selects all the records of the table gprodstable who's price is at most 100$ and sorts the recordset by order of product name: CallObject (grs, SetCriteria,["price", "<=", 100]) CallObject (grs, OrderBy,"prodName") CallObject (grs, select ) This example selects all the records of the table gprodstable whose price is between $50 and $200: CallObject (grs, SetCriteria,[["price", ">=", 50], "AND", ["price", "<=", 200]]) CallObject (grs, Select ) Selecting records by executing an SQL Query Instead of using an instance of GGRecordSet, you can use an instance of GGSQLQuery. You can build a simple recordset in a single call or create a more complex recordset based on the database manager's ability to resolve relations between tables. This example selects all the records of the table named catalog whose price is between $50 and $200 and sorts the recordset by order of product name: GRS := NewObject("GGSQLQueryRS", gdb, "SELECT * FROM catalog WHERE price >=? AND price <=? ORDERBY name",[50,200]) Browsing through a recordset To read, write or delete a record, you must first designate it as the current record. Upon the creation of a recordset (by either SelectAll or Select), the first record of the recordset is set to be the current record. To browse through a recordset, call the GoFirst, GoPrevious, GoLast, GoNext and Go methods. These methods can be used with either an instance of GGRecordSet or an instance of GGSQLQueryRS. -- assume that the recordset contains 100 records CallObject(gRS, Go,47) -- current rec. becomes #47 CallObject(gRS, GoNext ) -- current rec. becomes #48 CallObject(gRS, GoNext ) -- current rec. becomes #49 CallObject(gRS, GoLast ) -- current rec. becomes #100 CallObject(gRS, GoPrevious ) -- current rec. becomes #99 GoldenGate Developer's Manual 9

10 CallObject(gRS, GoFirst ) -- current rec. becomes #1 Checking the position of the current record At any time, you can read the position of the current record within the recordset with GetPosition. This method can be used with either an instance of GGRecordSet or an instance of GGSQLQueryRS. pos := CallObject (grs, GetPosition ) This is a handy method in situations such as: if CallObject (grs, GetPosition ) > 1 then CallObject (grs, GoPrevious ) This script sets the current record's preceding record as the new current record, unless the current record is already the first one in the recordset. Checking the size of the recordset To check how many records the recordset contains, call SelectCount. This method can be used with either GGRecordSet and GGSQLQueryRS instances. count := CallOject(gRS, SelectCount ) If the recordset is empty, SelectCount returns 0. Reading data from the current record To read the value of a specific field from the current record, call GetField. This applies to fields of type String, Integer, Float, Date and Binary (Media). This method can be used with either GGRecordSet and GGSQLQueryRS instances. username := CallObject(gRS, GetField,"FirstName") This example retrieves the content of the field FirstName in the current record. Optionally, for fields of type Integer, Float and Date, you can specify the format of the result. Result := GetField(gRS, "price", "9,999.99") into field "theprice" Assuming the value in field "price" is 1245, this example places the string "1,245.00" in the member named "theprice". Reading one or more record at a time To read one or more records at a time, call GetSelection. This method can be used with either GGRecordSet and GGSQLQueryRS instances. Result := GetSelection(#LITERAL, 1, 8, ["LastName", "FirstName"], ", ", RETURN) into field "myscrollfield" This example retrieves the contents of the fields "LastName" and "FirstName" of records 1 through 8 of the recordset to the member "myscrollfield", as in: Curie, Marie Einstein, Albert GoldenGate Developer's Manual 10

11 Gödel, Kurt Karp, Richard McLuhan, Marshall Neumann, John Von Shannon, Claude Turing, Alan The recordset must have been previously built by Select, SelectAll or new(ggsqlqueryrs). Adding records (using GGRecordSet) Adding a record to a table requires: a call to AddRecord as may calls to SetField as you wish a call to UpdateRecord The record is actually added to the database (i.e., on the server) by UpdateRecord. No network activity is initiated by AddRecord and SetField. If grs contains a recordset before the call to UpdateRecord, this recordset becomes the new added record. Adding records (using GGSQLQueryRS) A record can be added to a table by executing a direct SQL query. grs := NewObject("GGSQLQueryRS", gdb, "INSERT INTO client (LastName, FirstName) VALUES (?,?)", ["Testaburger", "Wendy"]) Modifying records (using GGRecordSet) Modifying the current record requires: a call to EditRecord as may calls to SetField as you wish a call to UpdateRecord The record is actually modified by UpdateRecord. No network activity is initiated by EditRecord, SetField and SetMedia. Modifying records (using GGSQLQueryRS) One or more records can be modified by executing a direct SQL query. Example (modify one record): grs := NewObject("GGSQLQueryRS", gdb, "UPDATE client SET FirstName =? WHERE LastName =?", ["Wendy","Testaburger"]) Example (modify all records): grs := NewObject("GGSQLQueryRS", gdb, "UPDATE product SET price = price *?", [1.12]) GoldenGate Developer's Manual 11

12 Deleting records (using GGRecordSet) Call DeleteRecord to delete the current record. CallObject(gRS, DeleteRecord ) DeleteRecord immediately initiates a network connection to instruct the server to delete the current record. Deleting records (using GGSQLQueryRS) One or more records can be deleted by executing a direct SQL query. Example (delete one record): grs := NewObject("GGSQLQueryRS", gdb, "DELETE FROM client WHERE LastName =? AND FirstName =?", ["Testaburger", "WENDY"]) Example (delete all records): grs := NewObject("GGSQLQueryRS", gdb, "DELETE FROM client") Cleaning-up Cleaning-up before quitting a project is necessary to inform the GoldenGate Server to remove the Client from the list of active connections, and also to free up memory on the server. To free up the GGConnection, GGRecordSet, GGSQLQueryRS and GGDBE instances, call Authorware s DeleteObject() function. This also closes the current connection. DeleteObject(gRS) DeleteObject(gdb) Checking for errors Always make sure to check for errors after calling the GoldenGate Client Xtra methods. Actually, this is a very good programming practice known as defensive programming that must be applied to GoldenGate, other Xtras as well as to your internal scripts. Typically, you would have a generic calculation such as: if GGStatus() then -- GGStatus() is 0 if no error GGError() -- show explicit error message and you would call it after every call to the GoldenGate Client Xtra. CallObject (grs, SetCriteria,["City", "=", "Paris"]) GGError() CallObject(gT, mselect ) Optionally, you take advantage of CheckGGError s return value to decide how to continue the execution of your handler. gdb := NewObject("GGDBE", gcx, "mydatabase") GoldenGate Developer's Manual 12

13 if NOT CheckGGError() then grs := NewObject("GGRecordSet", gdb, "mytable") end if This script attempts to create a table instance only if the database instance was successfully created. GoldenGate Developer's Manual 13

14 Appendix: Controlling dialup GoldenGate Client Xtra assumes that a valid TCP/IP network connection exists on the computer it is running on. That connection is available either permanently through the computer's TCP/IP network adapter, or possibly through a dial-up modem connection. If a dial-up connection is assumed and no connection is actually established, the Golden Gate Client Xtra fails with a Network Connection Error as soon as OpenConnection is called. To avoid this, you may want to control the end-user's computer dialup connectivity with a third party Xtra such as DirectConnection Xtra ( ). Below is a summary of DirectConnection Xtra's methods, which may be useful in a dial-up situation: use dcdial(connectionname) to open a dialup connection using the connectionname configuration of the end-user's computer. You can also use dcdial() in conjunction with dcgetdefaultinternetconnection() to open the default dialup configuration. use dchangup() to close a dialup connection. use dcgetconnectioninfo()and dcgetactiveconnections() to detect if a network connection is open. use dcgetconnectionstatus() to test the current network connection. use dccreateconnection()to launch a profile creation wizard. GoldenGate Developer's Manual 14

15 Index A Adding Records, 11 B Browsing, 9 Browsing Through a Selection, 9 C Checking for Errors, 12 Cleaning-up, 12 Controlling Dialup, 14 D Deleting Records, 12 Dialup Connections, 14 DirectConnection Xtra, 14 E Errors Checking for, 12 G GGConnection, 7 Creating Instance, 7 GGDBE, 7 Clean-Up, 12 Creating Instance, 7 GGRecordset Creating Instance, 8 GGRecordSet, 8 Clean-Up, 12 GGSQLQueryRS, 8 GGSQLQueryRS Clean-Up, 12 Creating Instance, 8 GoldenGate Client Xtra What it can do, 4 M Methods AddRecord, 11 DeleteRecord, 12 EditRecord, 11 GetField, 10 GetPosition, 10 GetSelection, 10 Go, 9 GoFirst, 9 GoLast, 9 GoNext, 9 GoPrevious, 9 New, 7, 8 OpenConnection, 14 OrderBy, 9 Select, 8, 9 SelectAll, 8, 9 SelectCount, 10 SetCriteria, 9 SetField, 11 UpdateRecord, 11 Modifying Records, 11 R Reading Data, 10 S Selecting Records, 8 All, 8 Partial, 9 System Requirements, 6 System Requirements, 6 GoldenGate Developer's Manual 15

GoldenGate Client Xtra Reference Manual. For Macromedia Authorware

GoldenGate Client Xtra Reference Manual. For Macromedia Authorware GoldenGate Client Xtra Reference Manual For Macromedia Authorware Integration New Media Inc 2002 2007-09-11 Contents Contents 3 Methods Reference 5 Global Methods 5 GGStatus 5 GGError 5 GGConnection Methods

More information

GoldenGate Client Xtra Reference Manual

GoldenGate Client Xtra Reference Manual GoldenGate Client Xtra Reference Manual For Macromedia Director Version 1.0.0 Integration New Media Inc 1995 2002 2002-01-08 Contents Contents 2 Methods Reference 4 Global Methods 4 GGStatus 4 GGError

More information

Online Help. Inserting, Deleting and Updating Data. Retrieving Information. Xtra Function Reference. How to Order & Register. Licensing & Availability

Online Help. Inserting, Deleting and Updating Data. Retrieving Information. Xtra Function Reference. How to Order & Register. Licensing & Availability Installation Getting Started Database Structure Inserting, Deleting and Updating Data Retrieving Information Additional Features Xtra Function Reference Error Codes SQL Support Creating Projectors How

More information

Getting Started SPU Online Courses

Getting Started SPU Online Courses Getting Started SPU Online Courses Welcome to SPU Online Courses. This document will guide you through the navigation, features, and functionality of your online course. It is divided into five sections:

More information

Creative assets management. MySQL Install Guide

Creative assets management. MySQL Install Guide Creative assets management MySQL Install Guide Contact Extensis 1800 SW First Avenue, Suite 500 Portland, OR 97201 Toll Free: (800) 796-9798 Phone: (503) 274-2020 Fax: (503) 274-0530 http://www.extensis.com

More information

Frequently Asked Questions

Frequently Asked Questions System Requirements Personal Computer (the CFM Network does not support Macs) with access to the Internet Windows 95, 98, Windows NT 4.0, Windows 2000, or Windows Millennium 90 MHz Pentium processor 32

More information

Altiris 060-NSFA600. Altiris Notification System Foundation 6.0. Download Full Version :

Altiris 060-NSFA600. Altiris Notification System Foundation 6.0. Download Full Version : Altiris 060-NSFA600 Altiris Notification System Foundation 6.0 Download Full Version : https://killexams.com/pass4sure/exam-detail/060-nsfa600 Practice Questions 1. What are Altris Notification System

More information

Book IX. Developing Applications Rapidly

Book IX. Developing Applications Rapidly Book IX Developing Applications Rapidly Contents at a Glance Chapter 1: Building Master and Detail Pages Chapter 2: Creating Search and Results Pages Chapter 3: Building Record Insert Pages Chapter 4:

More information

User Manual. ARK for SharePoint-2007

User Manual. ARK for SharePoint-2007 User Manual ARK for SharePoint-2007 Table of Contents 1 About ARKSP (Admin Report Kit for SharePoint) 1 1.1 About ARKSP 1 1.2 Who can use ARKSP? 1 1.3 System Requirements 2 1.4 How to activate the software?

More information

Getting Started With Outlook 2000 For Windows Author: Osamu Makiguchi

Getting Started With Outlook 2000 For Windows Author: Osamu Makiguchi WIN9X020 January 2002 Getting Started With Outlook 2000 For Windows Author: Osamu Makiguchi Introduction... 1 What is Microsoft Outlook?... 1 Where to Get Outlook... 1 Requirements for Outlook...2 Opening

More information

Novell ZENworks Asset Management 7

Novell ZENworks Asset Management 7 Novell ZENworks Asset Management 7 w w w. n o v e l l. c o m July 2006 INSTALLATION GUIDE Table Of Contents 1. Installation Overview... 1 Upgrade/Update Matrix...1 Installation Choices...2 ZENworks Asset

More information

Domino Enterprise Connections Services User Guide

Domino Enterprise Connections Services User Guide Domino Enterprise Connections Services User Guide COPYRIGHT Under the copyright laws, neither the documentation nor the software may be copied, photocopied, reproduced, translated, or reduced to any electronic

More information

Running FileMaker Pro 5.5 on Windows 2000 Terminal Services

Running FileMaker Pro 5.5 on Windows 2000 Terminal Services Running FileMaker Pro 5.5 on Windows 2000 Terminal Services 2001 FileMaker, Inc. All Rights Reserved. FileMaker, Inc. 5201 Patrick Henry Drive Santa Clara, California 95054 www.filemaker.com FileMaker

More information

Parallels Containers for Windows 6.0

Parallels Containers for Windows 6.0 Parallels Containers for Windows 6.0 Deploying Microsoft Clusters June 10, 2014 Copyright 1999-2014 Parallels IP Holdings GmbH and its affiliates. All rights reserved. Parallels IP Holdings GmbH Vordergasse

More information

Workspace Administrator Help File

Workspace Administrator Help File Workspace Administrator Help File Table of Contents HotDocs Workspace Help File... 1 Getting Started with Workspace... 3 What is HotDocs Workspace?... 3 Getting Started with Workspace... 3 To access Workspace...

More information

Copyright 2016 NetLinkz. All Rights Reserved.

Copyright 2016 NetLinkz. All Rights Reserved. Link Connect Manual Copyright 2016 NetLinkz. All Rights Reserved. No part of this publication may be reproduced, transmitted, transcribed, stored in a retrieval system, or translated into any language

More information

Guide to Database Interaction from InstallShield for MySQL

Guide to Database Interaction from InstallShield for MySQL A SankalpLabs White Paper October 5, 2010 Guide to Database Interaction from InstallShield for MySQL Author- Ashish Agarwal Page 1 of 7 Introduction InstallShield is the packaging software which helps

More information

GFI WebMonitor 2009 ReportPack. Manual. By GFI Software Ltd.

GFI WebMonitor 2009 ReportPack. Manual. By GFI Software Ltd. GFI WebMonitor 2009 ReportPack Manual By GFI Software Ltd. http://www.gfi.com E-mail: info@gfi.com Information in this document is subject to change without notice. Companies, names, and data used in examples

More information

PrintSuperVision.net Features and Installation

PrintSuperVision.net Features and Installation Features and Installation INTRODUCTION FEATURES ACCESS LEVELS REAL-TIME STATUS PrintSuperVision 2.0 (.net) is a powerful, easy-to-use web-based application for monitoring, reporting data, and managing

More information

Oracle IVR Integrator

Oracle IVR Integrator Oracle IVR Integrator Installing Oracle IVR Integrator Release 11i for Windows NT August 2000 Part No. A86042-01 Installation Overview Installation of Oracle IVR Integrator requires you to follow a sequence

More information

1 Attended Installation of Windows 2000 Server

1 Attended Installation of Windows 2000 Server 770c01.qxd 10/5/00 5:45 PM Page 1 1 Attended Installation of Windows 2000 Server TEST YOURSELF OBJECTIVES 1.01 Preparing for Installation 1.02 Four-Step Process from CD-ROM 1.03 Installing Over the Network

More information

Virtual Communications Express Quick Start Guide UC Clients Desktop/Mobile/Tablet

Virtual Communications Express Quick Start Guide UC Clients Desktop/Mobile/Tablet Quick Start Guide UC Clients Desktop/Mobile/Tablet Features Virtual Communications Express UC Interfaces (Desktop/Mobile/Tablet) provide the following communication features for Standard and Premier Users:

More information

SYSTEM REQUIREMENTS...3 HARDWARE INSTALLATION: PCI Internal ADSL Modem...4 DRIVER INSTALLATION FOR BOTH LAN AND WAN MODE Windows 98...

SYSTEM REQUIREMENTS...3 HARDWARE INSTALLATION: PCI Internal ADSL Modem...4 DRIVER INSTALLATION FOR BOTH LAN AND WAN MODE Windows 98... Contents SYSTEM REQUIREMENTS...3 HARDWARE INSTALLATION:...4 - USB External Modem...4 - PCI Internal ADSL Modem...4 DRIVER INSTALLATION FOR BOTH LAN AND WAN MODE...5 - Windows 98...5 - Windows Me...7 -

More information

GraffixPro Studio Getting Started Guide

GraffixPro Studio Getting Started Guide GraffixPro Studio Getting Started Guide The GraffixPro Studio Software is comprised of a set of linked applications: the Administrator, the Library, and the design software. This guide outlines the procedures

More information

Crystal Enterprise. Overview. Contents. Installation FAQ: Crystal Enterprise 9 & 10

Crystal Enterprise. Overview. Contents. Installation FAQ: Crystal Enterprise 9 & 10 : Crystal Enterprise 9 & 10 Overview Contents This document has been compiled in an effort to assist you both in determining installation requirements for your Crystal Enterprise (CE) installation as well

More information

User Manual. Active Directory Change Tracker

User Manual. Active Directory Change Tracker User Manual Active Directory Change Tracker Last Updated: March 2018 Copyright 2018 Vyapin Software Systems Private Ltd. All rights reserved. This document is being furnished by Vyapin Software Systems

More information

AS Client User s Guide

AS Client User s Guide AS Client User s Guide Notice Avaya Communications reserves the right to change specifications without prior notice. Trademarks The product described in this book is a licensed product of Avaya Systems,

More information

You can use Dreamweaver to build master and detail Web pages, which

You can use Dreamweaver to build master and detail Web pages, which Chapter 1: Building Master and Detail Pages In This Chapter Developing master and detail pages at the same time Building your master and detail pages separately Putting together master and detail pages

More information

Neighborhood HiSpeed Quick Start Guide

Neighborhood HiSpeed Quick Start Guide Neighborhood HiSpeed Quick Start Guide Before you begin: Thank you for choosing Neighborhood HiSpeed. We have set up your HiSpeed service on the phone number identified in your Neighborhood Welcome kit.

More information

MYOB ODBC Direct. Installation Guide

MYOB ODBC Direct. Installation Guide MYOB ODBC Direct Installation Guide About MYOB ODBC Direct Copyright and Trademark Information MYOB ODBC Direct is an ODBC driver that makes your MYOB company file information accessible from other applications.

More information

Verizon Family Protection Powered by McAfee. Installation Guide for Home Users (Mac)

Verizon Family Protection Powered by McAfee. Installation Guide for Home Users (Mac) Verizon Family Protection Powered by McAfee Installation Guide for Home Users (Mac) ii Contents Introduction 3 System requirements 5 Installing Family Protection 7 Downloading your software... 7 Download

More information

Reporting for Contact Center Setup and Operations Guide. BCM Contact Center

Reporting for Contact Center Setup and Operations Guide. BCM Contact Center Reporting for Contact Center Setup and Operations Guide BCM Contact Center Document Number: Document Status: Standard Document Version: 05.01 Date: September 2006 Copyright 2005 2006 Nortel Networks, All

More information

Table of Contents. Section 1: DocSTAR WebView v1.0 Requirements & Installation CD... 1 Section 2: DocSTAR WebView v1.

Table of Contents. Section 1: DocSTAR WebView v1.0 Requirements & Installation CD... 1 Section 2: DocSTAR WebView v1. WebView v1.0 Installation Guide Revision 3 7/29/2003 WebView v1.0 Installation GuG ide Revision 3 7/29/2003 u Introduction Table of Contents Section 1: DocSTAR WebView v1.0 Requirements & Installation

More information

Installation Guide. Tivoli Decision Support 2.0

Installation Guide. Tivoli Decision Support 2.0 Installation Guide Tivoli Decision Support 2.0 Tivoli Decision Support 2.0 Installation Guide (August, 1998) Copyright 1998 by Tivoli Systems, an IBM Company, including this documentation and all software.

More information

Laser Beam Printer. Network Guide. IMPORTANT: Read this manual carefully before using your printer. Save this manual for future reference.

Laser Beam Printer. Network Guide. IMPORTANT: Read this manual carefully before using your printer. Save this manual for future reference. Laser Beam Printer Network Guide IMPORTANT: Read this manual carefully before using your printer. Save this manual for future reference. ENG Network Guide How This Manual Is Organized Chapter 1 Before

More information

Installation Manual. Guitar Amp & Fx Modeling Software M U S I C I A N S F I R S T

Installation Manual. Guitar Amp & Fx Modeling Software M U S I C I A N S F I R S T M U S I C I A N S F I R S T Guitar Amp & Fx Modeling Software Stand-Alone guitar amp and fx modeling software for Windows and Mac Based on must-have modern/vintage amps and classic guitar effects Amp-modeling

More information

BitDefender Enterprise Manager. Startup guide

BitDefender Enterprise Manager. Startup guide BitDefender Enterprise Manager Startup guide 1 Table of Contents Product installation... 3 Install BitDefender Enterprise Manager... 3 Install BitDefender Server add-on... 4 Protection configuration...

More information

FRAMEWORK VERSION 3.0 NETWORK INSTALLATION INSTALLING MICROSOFT STEP BY STEP INTERACTIVE TRAINING SOFTWARE

FRAMEWORK VERSION 3.0 NETWORK INSTALLATION INSTALLING MICROSOFT STEP BY STEP INTERACTIVE TRAINING SOFTWARE FRAMEWORK VERSION 3.0 NETWORK INSTALLATION INSTALLING MICROSOFT STEP BY STEP INTERACTIVE TRAINING SOFTWARE The purpose of this document is to: Describe the components of Microsoft Interactive Training

More information

Part # Quick-Start Guide. SpeedStream 4200 Modem PPPoE Modem Router

Part # Quick-Start Guide. SpeedStream 4200 Modem PPPoE Modem Router Part # 007-0-00 Quick-Start Guide SpeedStream 00 Modem PPPoE Modem Router Before you begin, Verify that the following items came with your DSL kit: Step > Install Line Filters 7 SpeedStream Device Documentation

More information

The INSERT INTO Method

The INSERT INTO Method Article: Transferring Data from One Table to Another Date: 20/03/2012 Posted by: HeelpBook Staff Source: Link Permalink: Link SQL SERVER TRANSFERRING DATA FROM ONE TABLE TO ANOTHER Every DBA needs to transfer

More information

Enterprise Client Software for the Windows Platform

Enterprise Client Software for the Windows Platform Paper 154 Enterprise Client Software for the Windows Platform Gail Kramer, SAS Institute Inc., Cary, NC Carol Rigsbee, SAS Institute Inc., Cary, NC John Toebes, SAS Institute Inc., Cary, NC Jeff Polzin,

More information

Understanding Math 2008 and Understanding Numeration 2008 Installation Manual for Macintosh

Understanding Math 2008 and Understanding Numeration 2008 Installation Manual for Macintosh Copyright 2008 Neufeld Learning Systems Inc. All rights reserved. Understanding Math 2008 and Understanding Numeration 2008 Installation Manual for Macintosh This manual, as well as the software described

More information

C5100 Computer Connections & Software Install Guide

C5100 Computer Connections & Software Install Guide C5100 Computer Connections & Software Install Guide Installation Checklist Network Install: Hardware...4 Connect to the Network Port...4 Network Install: Software...5 TCP/IP...5 Local Install: USB, Hardware...7

More information

AIS Server Installation Guide

AIS Server Installation Guide AIS Server Installation Guide Table of Contents Overview of AIS Server... 1 System Requirements... 3 Installation Sequence... 4 Installing SQL Server 2005 Express Edition... 5 Configuring SQL Server 2005

More information

CS 105 Review Questions #3

CS 105 Review Questions #3 1 CS 105 Review Questions #3 These review questions only include topics since our second test. To study for the final, please look at the first two review documents as well. Almost all of these questions

More information

Parallels Virtuozzo Containers 4.6 for Windows

Parallels Virtuozzo Containers 4.6 for Windows Parallels Parallels Virtuozzo Containers 4.6 for Windows Deploying Microsoft Clusters Copyright 1999-2010 Parallels Holdings, Ltd. and its affiliates. All rights reserved. Parallels Holdings, Ltd. c/o

More information

Customer Access. Partner Initiated PICA - The Cisco PICA User Guide

Customer Access. Partner Initiated PICA - The Cisco PICA User Guide PICA - Partner Initiated Customer Access The Cisco PICA User Guide Table of Contents PICA User Guide TABLE OF CONTENTS...2 ABOUT THIS GUIDE...4 BENEFITS OF USING THE PICA TOOL...4 USING THE PICA TOOL...4

More information

NOTE: SynchronEyes software version 4.0 only runs on the Microsoft Windows operating system.

NOTE: SynchronEyes software version 4.0 only runs on the Microsoft Windows operating system. Product Support SynchronEyes Version 4.0 FAQs NOTE: SynchronEyes software version 4.0 only runs on the Microsoft Windows operating system. How can I register my SynchronEyes software? To register online,

More information

Tivoli Management Solution for Microsoft SQL. Rule Designer. Version 1.1

Tivoli Management Solution for Microsoft SQL. Rule Designer. Version 1.1 Tivoli Management Solution for Microsoft SQL Rule Designer Version 1.1 Tivoli Management Solution for Microsoft SQL Rule Designer Version 1.1 Tivoli Management Solution for Microsoft SQL Copyright Notice

More information

Preparing Your Computer for OPL. User Guide Version 3.0. Information and Communications Technologies

Preparing Your Computer for OPL. User Guide Version 3.0. Information and Communications Technologies Version 3.0 Information and Communications Technologies 2008 Department of Education. All Rights Reserved. No part of this document may be photocopied, reproduced, stored in a retrieval system, or transmitted,

More information

Mind Power Math: Middle School Algebra, Part 1

Mind Power Math: Middle School Algebra, Part 1 Mind Power Math: Middle School Algebra, Part 1 Mind Power Math: Middle School contains four CDs: Mind Power Math: Basic Mathematics includes arithmetic topics traditionally taught at the middle school

More information

FileMaker. Mobile 2. User s Guide. For Windows, Mac, and Palm OS. Companion for Palm OS

FileMaker. Mobile 2. User s Guide. For Windows, Mac, and Palm OS. Companion for Palm OS For Windows, Mac, and Palm OS FileMaker Mobile 2 Companion for Palm OS User s Guide 2000-2002 FileMaker, Inc. All Rights Reserved. FileMaker, Inc. 5201 Patrick Henry Drive Santa Clara, California 95054

More information

Getting Started. In this chapter, you will learn: 2.1 Introduction

Getting Started. In this chapter, you will learn: 2.1 Introduction DB2Express.book Page 9 Thursday, August 26, 2004 3:59 PM CHAPTER 2 Getting Started In this chapter, you will learn: How to install DB2 Express server and client How to create the DB2 SAMPLE database How

More information

Dialing Into Dartmouth with Macintosh OS X

Dialing Into Dartmouth with Macintosh OS X Dialing Into Dartmouth with Macintosh OS X Who needs this document? Any member of the Dartmouth community with a Macintosh computer running Macintosh OS X and a 9,600 bps or faster modem who wants to access

More information

Working with Databases

Working with Databases Working with Databases TM Control Panel User Guide Working with Databases 1 CP offers you to use databases for storing, querying and retrieving information. CP for Windows currently supports MS SQL, PostgreSQL

More information

ГТЛ-Р F-0307 USER GUIDE SETTING OPERATION SYSTEMS FOR INTERNET ACCESS THROUGH 123 ACCESS ROUTER

ГТЛ-Р F-0307 USER GUIDE SETTING OPERATION SYSTEMS FOR INTERNET ACCESS THROUGH 123 ACCESS ROUTER ГТЛ-Р005-05-01-F-0307 USER GUIDE SETTING OPERATION SYSTEMS FOR INTERNET ACCESS THROUGH 123 ACCESS ROUTER USER GUIDE for setting various operation systems to work with Internet through 123 access number

More information

Open Transport User s Guide

Open Transport User s Guide apple Open Transport User s Guide K Apple Computer, Inc. 1997 Apple Computer, Inc. All rights reserved. Under the copyright laws, this manual may not be copied, in whole or in part, without the written

More information

Fleet Manager 2002 Professional Network Configuration Guide

Fleet Manager 2002 Professional Network Configuration Guide Handling a complex world. Fleet Manager 2002 Professional Network Configuration Guide Overview The VDO Fleet Manager Professional utilises an advanced three-tier client-server model and is designed to

More information

AccuBridge for IntelliJ IDEA. User s Guide. Version March 2011

AccuBridge for IntelliJ IDEA. User s Guide. Version March 2011 AccuBridge for IntelliJ IDEA User s Guide Version 2011.1 March 2011 Revised 25-March-2011 Copyright AccuRev, Inc. 1995 2011 ALL RIGHTS RESERVED This product incorporates technology that may be covered

More information

Privileged Identity App Launcher and Session Recording

Privileged Identity App Launcher and Session Recording Privileged Identity App Launcher and Session Recording 2018 Bomgar Corporation. All rights reserved worldwide. BOMGAR and the BOMGAR logo are trademarks of Bomgar Corporation; other trademarks shown are

More information

Version 2.8. Installation Guide

Version 2.8. Installation Guide Version 2.8 Installation Guide Copyright 2010 Pearson Education, Inc. or its affiliate(s). All rights reserved. ELLIS is a registered trademark, in the U.S. and/or other countries, of Pearson Education,

More information

Installing Lotus Notes 7 for a New User (Mac)

Installing Lotus Notes 7 for a New User (Mac) Installing Lotus Notes 7 for a New User (Mac) Before You Begin This installation Do You Have a Lotus Notes Account? Minimum System Requirements OS X v10.4.2, 256 MB Memory, 500 MB free disk space, PPC

More information

MapMarker Plus Desktop Installation Guide

MapMarker Plus Desktop Installation Guide MapMarker Plus 11.0 Desktop Installation Guide Information in this document is subject to change without notice and does not represent a commitment on the part of the vendor or its representatives. No

More information

Introduction to Databases and SQL

Introduction to Databases and SQL Introduction to Databases and SQL Files vs Databases In the last chapter you learned how your PHP scripts can use external files to store and retrieve data. Although files do a great job in many circumstances,

More information

CeweCetrics Start up manual

CeweCetrics Start up manual CeweCetrics Start up manual Contents Introduction...3 What is Cetrics?... 3 An outline... 3 Definitions... 4 Typical fields of application... 6 Documentation... 7 Product support... 7 Installation...8

More information

System Management Guide Version 7.52

System Management Guide Version 7.52 Sage 500 Budgeting and Planning 2013 System Management Guide Version 7.52 Copyright Trademarks Program copyright 1995-2013 Sage Software, Inc. This work and the computer programs to which it relates are

More information

Crystal Reports. Overview. Contents. How to report off a Teradata Database

Crystal Reports. Overview. Contents. How to report off a Teradata Database Crystal Reports How to report off a Teradata Database Overview What is Teradata? NCR Teradata is a database and data warehouse software developer. This whitepaper will give you some basic information on

More information

LepideAuditor for SQL Server: Installation Guide. Installation Guide. epideauditor for SQL Server. Lepide Software Private Limited

LepideAuditor for SQL Server: Installation Guide. Installation Guide. epideauditor for SQL Server. Lepide Software Private Limited Installation Guide epideauditor for SQL Server , All Rights Reserved This User Guide and documentation is copyright of Lepide Software Private Limited, with all rights reserved under the copyright laws.

More information

Relativity Designer 2.2

Relativity Designer 2.2 Relativity Designer 2.2 Micro Focus The Lawn 22-30 Old Bath Road Newbury, Berkshire RG14 1QN UK http://www.microfocus.com Copyright Micro Focus 2009-2017. All rights reserved. MICRO FOCUS, the Micro Focus

More information

IBM QMF for Windows for IBM iseries, V7.2 Business Intelligence Starts Here!

IBM QMF for Windows for IBM iseries, V7.2 Business Intelligence Starts Here! Software Announcement February 26, 2002 IBM QMF for Windows for IBM iseries, V7.2 Business Intelligence Starts Here! Overview QMF for Windows for iseries, V7.2, is a multipurpose enterprise query environment

More information

KYOCERA Net Viewer User Guide Supplement

KYOCERA Net Viewer User Guide Supplement KYOCERA Net Viewer User Guide Supplement Legal Notes Unauthorized reproduction of all or part of this guide is prohibited. The information in this guide is subject to change without notice. We cannot be

More information

Oracle Predictive. Installation Overview. Installation Requirements. Installing Oracle Predictive

Oracle Predictive. Installation Overview. Installation Requirements. Installing Oracle Predictive Oracle Predictive Installing Oracle Predictive Release 11i for Windows NT August 2000 Part No. A86044-01 Installation Overview Installation of Oracle Predictive requires you to follow a sequence of tasks

More information

Cornerstone MFT Server Events Tutorial: Log Events

Cornerstone MFT Server Events Tutorial: Log Events 2017 Cornerstone MFT Server Events Tutorial: Log Events This tutorial will introduce you to Events Management in Cornerstone by creating a log of every event on the server. Tutorial 2017 South River Technologies,

More information

User Account Cleanup. Blackboard Web Community Manager

User Account Cleanup. Blackboard Web Community Manager User Account Cleanup Blackboard Web Community Manager Trademark Notice Blackboard, the Blackboard logos, and the unique trade dress of Blackboard are the trademarks, service marks, trade dress and logos

More information

Library Patron. User Guide. Wiley Ebooks

Library Patron. User Guide. Wiley Ebooks Library Patron User Guide Wiley Ebooks Powered by Ebooks Corporation s eb20 Library Service Wiley Ebooks is powered by Ebooks Corporation s eb20 Library Service May 2009 Contents 1 Introduction... 3 About

More information

CAPI. User Manual Telefax Internet Data Transfer

CAPI. User Manual Telefax Internet Data Transfer CAPI User Manual Telefax Internet Data Transfer Copyright Passing on or duplicating the contents of this manual or parts of it is only allowed with our express written permission. Offenders will be subject

More information

Car Park Control System Software User Manual

Car Park Control System Software User Manual Disclaimer Information in this document is subject to change without notice. Companies, names, and data used in examples herein are fictitious unless otherwise noted. No part of this document may be reproduced

More information

Multi-NVR Manager. Quick Start Configuration Usage

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

More information

Virtual Memory Validator. by Software Verification

Virtual Memory Validator. by Software Verification Virtual Memory Validator by Software Verification Copyright Software Verify Limited (c) 2002-2016 Virtual Memory Validator Virtual Memory Visualization for Windows NT, 2000, XP by Software Verification

More information

Upgrading from Call Center Reporting to

Upgrading from Call Center Reporting to Upgrading from Call Center Reporting to Reporting for Call Center Upgrade Document Reporting for Call Center Release 2.2.1xx Document Number: 200-0400-110 Document Status: Standard Document Version: 3.02

More information

Trace Debug Tools Version 1.2 Installation Guide

Trace Debug Tools Version 1.2 Installation Guide Trace Debug Tools Version 1.2 Installation Guide Copyright 2000-2002 ARM Limited. All rights reserved. Proprietary Notice Words and logos marked with or are registered trademarks or trademarks owned by

More information

Field Types and Import/Export Formats

Field Types and Import/Export Formats Chapter 3 Field Types and Import/Export Formats Knowing Your Data Besides just knowing the raw statistics and capacities of your software tools ( speeds and feeds, as the machinists like to say), it s

More information

Sage Residential Management Versions 9.5 through Installation Guide

Sage Residential Management Versions 9.5 through Installation Guide Sage Residential Management Versions 9.5 through 14.1 Installation Guide This is a publication of Sage Software, Inc. Copyright 2014. Sage Software, Inc. All rights reserved. Sage, the Sage logos, and

More information

This ReadMe contains information about installing Acrobat Reader 4.0 for Windows and Troubleshooting Issues.

This ReadMe contains information about installing Acrobat Reader 4.0 for Windows and Troubleshooting Issues. Adobe Acrobat Reader 4.05 for Windows ReadMe November 1, 1999 Adobe Acrobat Reader is the free viewing companion to Adobe Acrobat 4.0. Acrobat Reader lets you view, navigate and print Portable Document

More information

Relativity for Windows Workstations 2.2

Relativity for Windows Workstations 2.2 Relativity for Windows Workstations 2.2 Micro Focus The Lawn 22-30 Old Bath Road Newbury, Berkshire RG14 1QN UK http://www.microfocus.com Copyright Micro Focus 2009-2017. All rights reserved. MICRO FOCUS,

More information

Scheduled Automatic Search using Dell Repository Manager

Scheduled Automatic Search using Dell Repository Manager Scheduled Automatic Search using Dell Repository Manager A Dell Technical White Paper Dell, Inc. Dell Repository Manager Team THIS WHITE PAPER IS FOR INFORMATIONAL PURPOSES ONLY, AND MAY CONTAIN TYPOGRAPHICAL

More information

USING TMXWR & TMXWRX U PDATED

USING TMXWR & TMXWRX U PDATED USING TMXWR & TMXWRX U PDATED 8.30.06 CRITICAL LOGIC TRAINING & COMMUNICATIONS Using TMXwr & TMXwrx 2006 by Critical Logic, Inc. 851 Burlway Road, Suite 506, Burlingame, CA 94010 www.critical-logic.com

More information

Personalized Commerce View

Personalized Commerce View Personalized Commerce View Cisco Order Status Tool User Guide The Cisco Personalized Commerce View User Guide Table of Contents CISCO ORDER STATUS TOOL USER GUIDE...1 TABLE OF CONTENTS...2 ABOUT THIS GUIDE...4

More information

External Data Connector for SharePoint

External Data Connector for SharePoint External Data Connector for SharePoint Last Updated: August 2014 Copyright 2014 Vyapin Software Systems Private Limited. All rights reserved. This document is being furnished by Vyapin Software Systems

More information

NT2 U3. 2-Bay RAID Storage Enclosure. User Manual May 18, 2010 v1.1

NT2 U3. 2-Bay RAID Storage Enclosure. User Manual May 18, 2010 v1.1 2-Bay RAID Storage Enclosure User Manual May 18, 2010 v1.1 EN Introduction 1 Introduction 1.1 System Requirements 1.1.1 PC Requirements Minimum Intel Pentium III CPU 500MHz, 128MB RAM Windows Vista, Windows

More information

FileMaker. Installation and New Features Guide. for FileMaker Pro 10 and FileMaker Pro 10 Advanced

FileMaker. Installation and New Features Guide. for FileMaker Pro 10 and FileMaker Pro 10 Advanced FileMaker Installation and New Features Guide for FileMaker Pro 10 and FileMaker Pro 10 Advanced 2007-2009 FileMaker, Inc. All rights reserved. FileMaker, Inc. 5201 Patrick Henry Drive Santa Clara, California

More information

KNOWLEDGE FORUM 4 MACINTOSH SERVER ADMINISTRATOR S GUIDE

KNOWLEDGE FORUM 4 MACINTOSH SERVER ADMINISTRATOR S GUIDE KNOWLEDGE FORUM 4 MACINTOSH SERVER ADMINISTRATOR S GUIDE Knowledge Forum is a registered trademark of Knowledge Building Concepts. Administrator s Guide Macintosh Server--Version 4.1 or above Macintosh

More information

Central Monitoring by Center V2

Central Monitoring by Center V2 CHAPTER 9 Central Monitoring by Center V2 With Center V2, central monitoring station (CMS) can be deployed immediately because it brings multiple GV systems together into an integrated interface, allowing

More information

Symantec Ghost Solution Suite Web Console - Getting Started Guide

Symantec Ghost Solution Suite Web Console - Getting Started Guide Symantec Ghost Solution Suite Web Console - Getting Started Guide Symantec Ghost Solution Suite Web Console- Getting Started Guide Documentation version: 3.3 RU1 Legal Notice Copyright 2019 Symantec Corporation.

More information

Tivoli Management Solution for Microsoft SQL. Statistics Builder. Version 1.1

Tivoli Management Solution for Microsoft SQL. Statistics Builder. Version 1.1 Tivoli Management Solution for Microsoft SQL Statistics Builder Version 1.1 Tivoli Management Solution for Microsoft SQL Statistics Builder Version 1.1 Tivoli Management Solution for Microsoft SQL Copyright

More information

NDA ISSUE 1 STOCK # MATWorX 32 User s Guide. December, NEC America, Inc.

NDA ISSUE 1 STOCK # MATWorX 32 User s Guide. December, NEC America, Inc. NDA-24215 ISSUE 1 STOCK # 151942 MATWorX 32 User s Guide December, 1997 NEC America, Inc. LIABILITY DISCLAIMER NEC America, Inc. reserves the right to change the specifications, functions, or features,

More information

Installing Switched-On Schoolhouse 2007

Installing Switched-On Schoolhouse 2007 1 Installation & Setup Installing Switched-On Schoolhouse 2007 Switched-On Schoolhouse 2007 (SOS) is easy to install on your computer because most of the installation components install themselves. Before

More information

Titan FTP Server SSH Host Key Authentication with SFTP

Titan FTP Server SSH Host Key Authentication with SFTP 2016 Titan FTP Server SSH Host Key Authentication with SFTP A guide for configuring and maintaining SSH Host Key Authentication for SFTP connections in Titan FTP Server. QuickStart Guide 2016 South River

More information

DSL-200 Quickstart Guide

DSL-200 Quickstart Guide DSL-200 Installation Guide for Telecom New Zealand DSL-200 Quickstart Guide Installation and setup for a single computer DOCUMENT # HERE Introduction This guide is intended as an installation guide for

More information

RAS (Remote Administration System)

RAS (Remote Administration System) RAS (Remote Administration System) Digital Video Recorder Software User Guide Document 900.0314 Rev 2.00 RAS User Guide Revisions Issue Date Revisions 1.00 08/04 New document. 1.01 04/05 Update template,

More information