DToolsX-DWG. Version: An ActiveX DLL To Retrieve DWG/DXF information. DToolsX-DWG REFERENCE MANUAL

Size: px
Start display at page:

Download "DToolsX-DWG. Version: 2007. An ActiveX DLL To Retrieve DWG/DXF information. DToolsX-DWG REFERENCE MANUAL"

Transcription

1 DToolsX-DWG Version: 2007 An ActiveX DLL To Retrieve DWG/DXF information DToolsX-DWG REFERENCE MANUAL (C)opyright CADology Limited, UK

2 License Agreement CADology LIMITED (UK) designed and provides this computer OLE control - ActiveX (DToolsX) and documentation as is and licenses its use. The user assumes responsibility for the choice of this program to achieve its intended results, and for the installation, use and results achieved. DToolsX is not, nor has ever been, public domain or free computer software. This software may only be distributed with a valid distribution license; this license is obtained on an annual basis from CADology. However, the user may distribute this software with their application as long as the user is a valid Sustaining or Founder member of the Open Design Alliance. Limited Warranty: DToolsX is provided without warranty of any kind. The complete risk as to the results produced by this program is assumed by purchaser/user. If the program becomes defective, the purchaser/user assumes the complete cost of all associated damages. CADology Limited shall have no responsibility or liability to any person or company. The Governing Law The Governing law of this Agreement shall be that of England, UK. Acknowledgements AutoCAD, AutoCAD 2007, AutoCAD 2006, AutoCAD 2005, AutoCAD 2004, AutoCAD 2002, AutoLISP, DWG and DXF are trademarks of Autodesk, Inc. Windows 95, Windows 98, Windows ME, Window NT, Windows 2000 and Windows XP are trademarks of Microsoft, Inc. 2

3 Contents License Agreement...2 Contents...3 Introduction...5 Installing DToolsX...6 Distributing DToolsX with your Application...8 Control Registration...8 DToolsX Hints and Tips...9 (1) Unlock Code...9 (2) String/Char Declaration Size...9 Open and Close a drawing file...9 Enumerations...9 Adding DToolsX to be a Custom Control (VB6)...10 DToolsX with Visual C/C DToolsX Classes...13 dtxdrawing...13 dtxdrawing Class...14 Overview...14 Member Properties...14 dtxerrormessage...14 Member Methods...14 LoadDrawing...14 CloseDrawing...15 AttributeUpdateByHandle...15 CreateDXF...15 DeleteObject...16 DToolsXVersion...16 DToolsXVersionToProperties...16 DWGVersionFilename...16 RecoverDrawing...17 SaveDrawing...17 SetImagePath...18 SetLayerState...18 SetXrefPath...18 TextUpdateByHandle...19 UnlockProduct...19 XMLReport...20 XrefAttach...21 XrefBind...21 Error and Warning Strings

4 Error strings...22 Warning strings...22 XML Definition...23 Wanted : New Methods and Properties...27 Technical Support

5 Introduction Welcome to DToolsX-DWG, DToolsX-DWG is a Windows ActiveX DLL which allows the user to place a reference control into other Window software programs so that AutoCAD DWG/DXF information inside the DWG/DXF can be retrieved. DToolsX is available in two versions:- DToolsX-DWG, retrieval of AutoCAD drawing data in XML format. DToolsX has been designed to work with Windows NT 4.0, Windows 2000 and Windows XP. And there is a version of DToolsX for MicroStation Design files to, this is known as DToolsX-DGN and will work with both V7 and V8 Design files. 5

6 Installing DToolsX Minimum Configuration DToolsX ActiveX DLL requires Windows 2000 or Windows XP with the latest Service Packs, although it should work with older versions of Microsoft Windows NT 4.0, Windows 98 SE2 and ME. Installing DToolsX Software(all versions) DToolsX has been designed to have minimal files and is developed using Microsoft Visual Studio 2005, these are: DToolsXDWG.DLL CADology MSVCR80.DLL ( ) - Microsoft MSVCRT.DLL ( ) - Microsoft MSVCP80.DLL ( ) - Microsoft Some which you may already have on your system. From the distribution media, please copy DToolsXDWG.dll to a directory of your choice. If you not have the other DLL already present in the SYSTEM directory of your Windows operating system, just copy the DLL files to the Windows system directory. Once the DLL files are present on your computer, you will need to Register DToolsX. See the next paragraph. Registering the Custom Control To register the DToolsX control on your system, you need a program that comes with the Windows OS called REGSVR32.exe. To run this program, enter the console (or MS-DOS) prompt, change directory to the DToolsX directory, and key in: C:\DToolsXDev\: REGSVR32 DToolsXDWG.dll Your operating system will respond that the control has been registered. 6

7 If the DToolsXDWG.dll can not be registered, please contact CADology. Updating to a newer version of DToolsX To update to a newer version of DToolsX, you must first UN- REGISTER the control using the REGSVR32 program or by any other route you know. C:\DToolsXDev\: REGSVR32 /U DToolsXDWG.dll A dialog message box will confirm if the control has been successfully unloaded. Important: It is also wise to remove the DToolsX component from your development project and re-import DToolsX otherwise some errors may appear. 7

8 Distributing DToolsX with your Application You may only distribute this software with your application only if you have purchased the annual distribution license. This is included in the first year but after 1 year from purchase you are obliged to purchase the license to distribute. DToolsX requires the following files and they must be included in your install routine when your application is ready, these files can be found on your Development computer. The following system support files are to be placed in the application directory and not in the System/System32 directory: MSVCR80.DLL Microsoft C runtime MSVCP80.DLL Microsoft C runtime MSVCRT.DLL Microsoft C runtime Important: When written your installation program, please read the Microsoft Knowledge Base Article titled Redistribution of the Shared C Runtime Components in Visual C++.NET The following files can be placed in a sub-directory of your application: DToolsXDWG.DLL ActiveX DLL Control Registration Don t forget, DToolsX will need to be registered. This can be done in the installation program of your application, your application itself or manually by the user. DToolsX is a self-registering ActiveX control as it supports self-registration by implementing the DllRegisterServer and DllUnregisterServer functions. 8

9 DToolsX Hints and Tips The following is a list of notes and hints that maybe helpful as a user of DToolsX. (1) Unlock Code IMPORTANT: DToolsX will be restricted unless the product is unlocked. Once you have purchased DToolsX, you will be given a unlock code, this code must be assigned in the programming source code before a drawing is opened. Please do not given this unlock code to persons outside of your company. Please read the unlockproduct method in the dtxdrawing class. (2) String/Char Declaration Size In the DWG/DXF file format, most string definitions can be up to 512 bytes long, so make sure your declaration handle this length. The following steps are required to get DToolsX going. Dim dtoolsx As New dtxdrawing Create new object Dim hdwg As Long Need a handle to drawing dtoolsx.unlockproduct = xxxxxx dtoolsx.loaddrawing hdwg, C:\myDrawing.dwg {Other code goes here} dtoolsx.closedrawing hdwg Open and Close a drawing file Enumerations To assist in the options for some of parameters when calling Methods, the following Enumerations have been created. 9

10 None have been defined in DTools-DWG yet. Adding DToolsX to be a Custom Control (VB6) From a new project in Visual Basic, select the Project menu bar option, then move down the menu bar option s to References. And click. A dialog box will appear listing all reference components, check the box for DToolsX and click the OK button. 10

11 DToolsX with Visual C/C++ As DToolsX is an ActiveX DLL, information about the interface must be obtained by the compiler. This is performed by using the #import option at the top of your source file. I.e. #import <DToolsXDWG.dll> no_namespace The following C code will start the OLE interface, get an instance on the ActiveX DLL DToolsX and the class we are interested in, and then it will call a method in the class. #include "stdafx.h" // Get Visual C to understand the interface and create some PTR's #import <\code\dtoolsx\releasemindependency\dtoolsxdwg.dll> no_namespace int main(int argc, char* argv[]) { OleInitialize (NULL); // Nested as needs to be destroyed before OLE is uninitialised. { // Create the smart pointer to our object. IdtxDrawingPtr DToolsPtr; // Create our object? if (SUCCEEDED ( DToolsPtr.CreateInstance ( "DToolsXDWG.dtxDrawing.1" ) ) ) { try { int hdwg = 0; DToolsPtr->LoadDrawing ( &hdwg, "c:\\db2000.dwg" ); if ( hdwg!= 0 ) { // Opened drawing so we create a DXF file DToolsPtr->CreateDXF( hdwg, "C:\\TMP.DXF", (AutoCADDXFTypes)DXFASCII, 6 ); DToolsPtr->CloseDrawing ( hdwg ); } else { printf( "Drawing could not be opened\n " ); } } 11

12 catch (...) { printf ("DToolsX Error: Failed to call function!\n"); } } else { printf ("DToolsX Error: Failed to create instance!\n"); } } OleUninitialize (); return 0; } A drawing file is opened and then a DXF is created from it. 12

13 DToolsX Classes DToolsX has been divided into a series of classes; these classes can be seen by looking at the Object Browser that comes with your software development environment. These classes are listed below and a full reference follows in this documentation. In the detailed description of the parameters for the methods, a parameter that is passed to the method where the value is just used is coloured Green. And, parameter coloured Red means that this variable will be set by DToolsX for your application to act upon afterwards. dtxdrawing This class define access to the drawing file to retrieve information about the drawing files. This is the main class and is used to load the drawing file into DToolsX. Once loaded, the other classes can be used to retrieve information with respect to certain areas in the drawing file. 13

14 dtxdrawing Class Overview This is the main class and is used to load the drawing files into the DToolsX environment, no other classes will work unless a drawing file has been open into the CdtxDrawing class. Member Properties dtxerrormessage This is a read only character string value that is used to check if the method call was successful. If the method call was successful, then 1000:Ok will be returned other the error string can be seen. Member Methods LoadDrawing [form.]control.loaddrawing <DWG handle> <DWG/DXF filename> <DWG password> DWG handle: A handle will be returned of the opened drawing DWG/DXF filename: A filename and path to a drawing file DWG password: A password for the drawing file This is used to open (load) the DWG or DXF filename into the DToolsX component so that information can then be accessed. If the drawing has been loaded successfully than the DWG handle will be assigned to 1, otherwise a 0 if the load has failed. The dtxerrormessage will report why the loading of the drawing has not been successful. It is very important that each opened drawing is called by CloseDrawing. From AutoCAD 2004 drawing files in DWG format a password can be assigned to the file, the password must be passed as a parameter so that DToolsX can open the drawing. 14

15 CloseDrawing [form.]control.closedrawing This must be called when an opened drawing is no longer needed AttributeUpdateByHandle [form.]control.attributeupdatebyhandle <attribute value> <attribute handle> attribute value: New value for attribute entity. Attribute handle: Handle of attribute entity to update. This method allows an attribute entity value to be updated, once the attribute has been update the DWG file can then be saved using the SaveDrawing method. The attribute entity is found by its unique handle, the handle is extracted in the XML so it can be used here to assist in the update. Please make sure the entity handle is valid and it is an Attribute Entity otherwise this updating of the attribute will fail. CreateDXF [form.]control.createdxf <DXF filename> <DXF precision> <DXF version> DXF filename: Filename of the DXF file to be created. DXF precision: 0 to 16 for decimal places in ASCII DXF file. DXF version: Set to the version required for the DXF file. This method will create a DXF based on the drawing that has been loaded using the LoadDrawing() method. The DXF precision must be between 0 and 16. This indicates the number of decimal places that will be output in the DXF file. The DXF version can be set to one of the following: 2004 AutoCAD AutoCAD AutoCAD 2002, AutoCAD AutoCAD Release AutoCAD Release AutoCAD Release AutoCAD Release 10 15

16 DeleteObject [form.]control.deleteobject <Object Handle> Object Handle: Handle of the object(entity). This method deletes an object from the drawing identified by its handle. In most cases you can use this to delete entities but it can also delete objects elsewhere in the drawing. Be careful when using this command as DWG files can be damaged. DToolsXVersion [form.]control.dtoolsxversion <Release> <Major> <Minor> <Build> Release: Release value. Major: Major value. Minor: Minor value. Build: Build value. Being an ActiveX DLL, the file has a version. This can be seen using Windows Explore to view the file properties. The version is broken into four numeric values; these being: Release, Major, Minor and Build. Please also look at the next method which will set properties in the Object Model instead of passing values. DToolsXVersionToProperties [form.]control.dtoolsxversiontoproperties This will set four properties in the DToolsX-DWG object model to the values of the version. These properties are: dtxrelease, dtxmajor, dtxminor and dtxbuild. DWGVersionFilename [form.]control.dwgversionfilename <DWG version> <DWG filename> DWG version: Returns version of DWG file. DWG filename: Filename and path of DWG file. This method will return back the version of the DWG file passed to the method. This method does NOT need to have the drawing loaded using the LoadDrawing() method as it looks at the DWG file directly by reading the first 6 bytes of the DWG file. The DWG version can be one of the following: 2007 AutoCAD

17 2004 AutoCAD 2004, AutoCAD 2005, AutoCAD AutoCAD 2000, AutoCAD 2000i, AutoCAD AutoCAD Release AutoCAD Release AutoCAD Release 12 RecoverDrawing [form.]control.recoverdrawing <DWG filename> <Password> <Num entities> <Num errors> <Num fixes> DWG filename: Filename of the DWG file to be repaired Password: Password of the DWG file, if required Num entities: Returns the number of entities in the DWG file Num errors: Returns number of errors found in the drawing Num fixes: Returns number of fixes for the errors found in the drawing Sometimes the data inside a DWG file can get damaged or corrupt, this method will open a DWG and try to repair any errors it find during the opening of the file. Once this method is called, you can use DToolsX as if you used the LoadDrawing() method. SaveDrawing [form.]control.savedrawing <DWG filename> <DXF version> DWG filename: Filename of the DWG file to be created DWG version: Set to the version required for the DWG file This allows an AutoCAD DWG to be created based on the drawing currently loaded. Most users would use the 1 option that will save the drawing to the same version. The DWG version can be set to one of the following: -1 The version of the drawing loaded 2004 AutoCAD AutoCAD AutoCAD 2000, AutoCAD 2000i, AutoCAD AutoCAD Release AutoCAD Release 12 17

18 SetImagePath [form.]control.setxrefpath <image path> <image handle> image path: This is the new path name of the image including filename image handle: The handle of the image to be changed This method will change the image path for an image entity selected by its handle. The handle is extracted in the XML report. The image path name must include the original file name of the image, so you may only change the path and not the image file name. SetLayerState [form.]control.setlayerstate <layer name> <state> <mode> layer name: This layer which the state needs to be changes state: Required state for the layer mode: Required state for the layer This method will turn layers On/Off or Thaw/Freeze. The mode parameter defines in the On/Off or Thaw/Freeze layer option is changed. The options for the mode parameter are: 1 On / Off 2 Thaw / Freeze The following states are allowed: 1 On / Thaw 3 Off / Freeze To turn off a layer, use SetLayerState( mylayer, 2, 1 ) To freeze a layer, use SetLayerState( mylayer, 2, 2 ) SetXrefPath [form.]control.setxrefpath <xref path> <xref name> xref path: This is the new path name of the xref xref name: The name of the xref to be changed This method will change the path name stored in the drawing for a reference file; the reference file is selected by its name. Note: Path name are not always stored in the drawing file. Some CAD users prefer to assign search paths in the CAD system to look for the 18

19 reference file. This allows the changing of the paths without having to edit each drawing. TextUpdateByHandle [form.]control.textupdatebyhandle <text value> <handle of text entity> Text value: This is the new literal required for the text entity handle of text entity: The handle of the text entity to update the literal value This method will update the text literal (value) of Text and Mtext entities in the drawing, the entities are selected by the handle. The handle is included in the XML report to assist in this process. UnlockProduct [form.]control.unlockproduct <unlock code> unlock code: unlock code provided when software is purchased When using DToolsX, the product must first be enabled to work with no restrictions or nag screens. Therefore, this method must be called with the unlock code that has been assigned to your company upon purchased. If the product has not been unlocked, then DToolsX will still work but only allow drawing files of about 250K and smaller to be loaded and worked upon. This will be confirmed by a nag screen that will be displayed. 19

20 XMLReport [form.]control.xmlreport <XML filename> <Attributes> <Attribute definitions> <References> <Layers> <Layouts> <System variables> <Images> <Text> XML filename: Filename of XML file you would like DToolsX to create. Attributes: Set to 1 to export Attribute data to XML. Attribute definitions: Set to 1 to export Attribute definitions data to XML. References: Set to 1 to export Reference data to XML. Layers: Set to 1 to export Layers and their states to XML. Layouts: Set to 1 to export Layout data to XML. System variables: Set to 1 to export a few important system variables to XML. Images: Set to 1 to export Image entity data to XML. Texts: Set to 1 to export text literals in Text and Mtext entities to XML. This method is used to export data inside the drawing to a XML file passed by the calling application. The XML filename will be deleted and a new data from the drawing will be added. The parameters control which data is exported to the XML file, simply pass a 1 to output the data or 0 if it s not needed in the XML file. Attribute Extraction The XML report is very flexible for getting access to attribute values but there are some key points you will need to know about getting the correct attribute data. In the XML for the INSERT element, there is information that tells us the number of attributes and the number of constant attributes. Constant Attribute values are NOT stored following the INSERT entity and hence will not be found in the XML in the <Attribute> element. If there is a constant attribute you will need to then visit the <AttributeDefinition> part of the XML file to get access to the constant value. The normal attributes will follow in the XML. The user may have used the MINSERT command to place a block with attributes in the drawing, for this case there is the <rows> and <columns> element to inform you of the details. Text Extraction For the text option, both Text and MText entities will have the literals extracted, the MText will have the formatting show. The text values can be updated using the UpdateTextByHandle method. Please contact CADology to have any further or new information added to the XML file. It is thought this will grow by requests from customers. 20

21 XrefAttach [form.]control.xrefattach <xref filename> <block name> <x coord> <y coord> <z coord> <x scale factor> <y scale factor> <z scale factor> Xref filename: Filename with path to the external DWG that is to be attached Block name: The name given to the xref when attached in the opened drawing X coord: The X coordinate of the insertion point of the xref Y coord: The Y coordinate of the insertion point of the xref Z coord: The Z coordinate of the insertion point of the xref X scale factor: The X axis scale factor of the xref Y scale factor: The Y axis scale factor of the xref Z scale factor: The Z axis scale factor of the xref This method will attached an external DWG file as an xref into the currently opened drawing. XrefBind [form.]control.xrefbind <xref name> Xref name: Name of the xref to bind This method will bind an xref selected by the name into the current drawing. 21

22 Error and Warning Strings 1000:Ok 9999:Unknown Error - Contact CADology Error strings 1001:Error trying to open XML file for writing 1002:Error opening DWG file 1003:Drawing not opened in DToolsX-DWG 1004:Unknown DWG version type 1005:Handle not found in drawing 1006:Handle is not a Attribute Entity 1007:Reference name not found in drawing 1008:Handle does not point to an Image entity 1009:Layer name not found in drawing 1010:Layer state parameter not understood 1011:Layer mode parameter not understood 1012:Object handle not found in drawing 1013:Unable to delete object 1014:Unable to load Xref for bind process 1015:Unable to bind Xref for bind process 5001: Warning: The drawing file has a password Warning strings 22

23 XML Definition The XML file is divided into sections that can be exported to the XML or not, this enables the user to extract only information that is needed. This will reduce the file size of the XML resultant file. These sections are: Attributes Attribute Definitions References Layers Layouts Variables Images Text The XML format is now using UTF-8, this allows the different UNICODE characters. If there some information that you would like to see in the XML file, then please do contact CADology and request the user information that you would like to see added and why. Below is a sample XML listing from DToolsX but this may not include the latest version of the XML hence in your version there may be more information: <?xml version="1.0" encoding="utf-8"?> - <DToolsX> - <DrawingInformation> <DatabaseFilename>c:\parent.dwg</DatabaseFile name> <ApproxNumObjects>85</ApproxNumObjects> <NumberOfSaves>0</NumberOfSaves> <OriginalFileVersion>AC1015</OriginalFileVersion> <LastSavedVersion>AC1018</LastSavedVersion> <OriginalFileSavedByVersion>AC1015</OriginalFileSave dbyversion> <Hyperlinkbase /> <Title /> <Subject /> <Author /> <Comments /> <Keywords /> 23

24 <LastSavedBy /> <Custom /> </DrawingInformation> - <Attributes> - <Block name="*model_space"> - <Insert name="ref"> <LayerName>0</LayerName> </Insert> - <Insert name="ref"> <LayerName>0</LayerName> </Insert> - <Insert name="ref"> <LayerName>0</LayerName> </Insert> </Block> <Block name="*paper_space" /> <Block name="*paper_space0" /> <Block name="ref" /> <Block name="xdata" /> </Attributes> - <AttributeDefinitions> <Block name="*model_space" /> <Block name="*paper_space" /> <Block name="*paper_space0" /> <Block name="ref" /> <Block name="xdata" /> </AttributeDefinitions> - <ExternalReferences> - <Reference name="ref"> <PathName>C:\ref.dwg</PathName> </Reference> - <Reference name="xdata"> <PathName>C:\xdata.dwg</PathName> </Reference> </ExternalReferences> - <Layers> - <LayerName name="0"> <Display>On</Display> </LayerName> - <LayerName name="defpoints"> <Display>Off</Display> </LayerName> - <LayerName name="ref Dawson"> <Display>On</Display> </LayerName> - <LayerName name="level 51"> 24

25 <Display>On</Display> </LayerName> - <LayerName name="level 52"> <Display>On</Display> </LayerName> - <LayerName name="level 53"> <Display>On</Display> </LayerName> - <LayerName name="level 54"> <Display>On</Display> </LayerName> - <LayerName name="level 55"> <Display>On</Display> </LayerName> - <LayerName name="level 57"> <Display>On</Display> </LayerName> </Layers> - <Layouts> - <LayoutName name="layout1"> <TabOrder>1</TabOrder> </LayoutName> - <LayoutName name="layout2"> <TabOrder>2</TabOrder> </LayoutName> - <LayoutName name="model"> <TabOrder>0</TabOrder> </LayoutName> </Layouts> - <Variables> - <TILEMODE> <Value>1</Value> </TILEMODE> - <EXTMIN> <X> </X> <Y> </Y> <Z> </Z> </EXTMIN> - <EXTMAX> <X> </X> <Y> </Y> <Z> </Z> </EXTMAX> - <PEXTMIN> <X> </X> <Y> </Y> <Z> </Z> 25

26 </PEXTMIN> - <PEXTMAX> <X> </X> <Y> </Y> <Z> </Z> </PEXTMAX> </Variables> - <Images> - <Block name="*model_space"> - <Image> <Handle>24</Handle> <ElementId>36</ElementId> <PathName>C:\Ark_174_110.TIF</Pa thname> </Image> - <Image> <Handle>29</Handle> <ElementId>41</ElementId> <PathName>C:\Documents and Settings\Ark_174.TIF</PathName> </Image> </Block> <Block name="*paper_space" /> </Images> </DToolsX> 26

27 Wanted : New Methods and Properties Suggestions: If you require or have an idea for a new method or property, please contact CADology by with details. If your suggestion is included, then the latest version will be shipped free of charge. Please contact CADology with your requirements. 27

28 Technical Support The latest version of DToolsX (Software, revision history and this manual) can be found and downloaded from the CADology web site on Internet; For technical support, please contact CADology either by : Electronic Mail : techsupp@cadology.com Voice : Fax : Post : (International) 44 (0) (International) 44 (0) CADology Limited Meach House, 71 Nonsuch Walk, Cheam, Surrey. SM2 7LF United Kingdom 28

Using SQL Server Management Studio

Using SQL Server Management Studio Using SQL Server Management Studio Microsoft SQL Server Management Studio 2005 is a graphical tool for database designer or programmer. With SQL Server Management Studio 2005 you can: Create databases

More information

CCH Audit Automation. Version 4.4 Service Pack 2.1. Release Notes

CCH Audit Automation. Version 4.4 Service Pack 2.1. Release Notes CCH Audit Automation Version 4.4 Service Pack 2.1 Release Notes Legal Notice Disclaimer CCH Software has made every effort to ensure the accuracy and completeness of these Release Notes. However, CCH

More information

FTP Client Engine Library for Visual dbase. Programmer's Manual

FTP Client Engine Library for Visual dbase. Programmer's Manual FTP Client Engine Library for Visual dbase Programmer's Manual (FCE4DB) Version 3.3 May 6, 2014 This software is provided as-is. There are no warranties, expressed or implied. MarshallSoft Computing, Inc.

More information

Python for Series 60 Platform

Python for Series 60 Platform F O R U M N O K I A Getting Started with Python for Series 60 Platform Version 1.2; September 28, 2005 Python for Series 60 Platform Copyright 2005 Nokia Corporation. All rights reserved. Nokia and Nokia

More information

Autodesk Product Manager Tool

Autodesk Product Manager Tool Autodesk Product Manager Tool A Step Guide for Conducting a Software Audit 2007 Autodesk 1 Autodesk Product Manager Installing and Conducting a Software Audit The Autodesk Product Manager (APM) utility

More information

Shakambaree Technologies Pvt. Ltd.

Shakambaree Technologies Pvt. Ltd. Welcome to Support Express by Shakambaree Technologies Pvt. Ltd. Introduction: This document is our sincere effort to put in some regular issues faced by a Digital Signature and USB Token user doing on

More information

COMOS. Platform COMOS Platform Interfaces. Importing and exporting data 1. XML connectors 2. Standard import "Blank XML" 3

COMOS. Platform COMOS Platform Interfaces. Importing and exporting data 1. XML connectors 2. Standard import Blank XML 3 COMOS Platform Operating Manual Importing and exporting data 1 XML connectors 2 Standard import "Blank XML" 3 Standard import "Blank table" 4 Engineering projects 5 Data exchange with NOXIE 6 COMOS document

More information

Table Of Contents. iii

Table Of Contents. iii PASSOLO Handbook Table Of Contents General... 1 Content Overview... 1 Typographic Conventions... 2 First Steps... 3 First steps... 3 The Welcome dialog... 3 User login... 4 PASSOLO Projects... 5 Overview...

More information

ProSafe Plus Switch Utility

ProSafe Plus Switch Utility ProSafe Plus Switch Utility User Guide 350 East Plumeria Drive San Jose, CA 95134 USA September 2010 202-10524-03 v1.0 ProSafe Plus Switch Utility User Guide 2010 NETGEAR, Inc. All rights reserved. No

More information

Thank you for using AutoDWG Conversion Server Software

Thank you for using AutoDWG Conversion Server Software Thank you for using AutoDWG Conversion Server Software AutoDWG Conversion Server With AutoDWG Conversion Server, companies can convert dwg to pdf, dwg to image automatically at high speed in a centrally-managed

More information

Universal Management Service 2015

Universal Management Service 2015 Universal Management Service 2015 UMS 2015 Help All rights reserved. No parts of this work may be reproduced in any form or by any means - graphic, electronic, or mechanical, including photocopying, recording,

More information

Document Management User Guide

Document Management User Guide IBM TRIRIGA Version 10.3.2 Document Management User Guide Copyright IBM Corp. 2011 i Note Before using this information and the product it supports, read the information in Notices on page 37. This edition

More information

EMC Celerra Network Server

EMC Celerra Network Server EMC Celerra Network Server Release 5.6.47 Using Windows Administrative Tools with Celerra P/N 300-004-139 REV A02 EMC Corporation Corporate Headquarters: Hopkintons, MA 01748-9103 1-508-435-1000 www.emc.com

More information

Kaspersky Security Center Web-Console

Kaspersky Security Center Web-Console Kaspersky Security Center Web-Console User Guide CONTENTS ABOUT THIS GUIDE... 5 In this document... 5 Document conventions... 7 KASPERSKY SECURITY CENTER WEB-CONSOLE... 8 SOFTWARE REQUIREMENTS... 10 APPLICATION

More information

DIGIPASS CertiID. Getting Started 3.1.0

DIGIPASS CertiID. Getting Started 3.1.0 DIGIPASS CertiID Getting Started 3.1.0 Disclaimer Disclaimer of Warranties and Limitations of Liabilities The Product is provided on an 'as is' basis, without any other warranties, or conditions, express

More information

Microsoft Dynamics GP. Engineering Data Management Integration Administrator s Guide

Microsoft Dynamics GP. Engineering Data Management Integration Administrator s Guide Microsoft Dynamics GP Engineering Data Management Integration Administrator s Guide Copyright Copyright 2007 Microsoft Corporation. All rights reserved. Complying with all applicable copyright laws is

More information

Envisioneer Technical Note

Envisioneer Technical Note Title Blocks By default there are four pre-defined Worksheet view windows available (Floor Plan, Elevations, Details, and Site Plan). Each one contains a generic border and title block supplied by Cadsoft.

More information

ScriptLogic Enterprise Security Reporter. VERSION 3 Installation Guide

ScriptLogic Enterprise Security Reporter. VERSION 3 Installation Guide ScriptLogic Enterprise Security Reporter VERSION 3 Installation Guide ENTERPRISE SECURITY REPORTER 3 INSTALLATION GUIDE II Copyright 2011 by ScriptLogic Corporation All rights reserved. This publication

More information

Kaspersky Security Center Web-Console

Kaspersky Security Center Web-Console Kaspersky Security Center Web-Console User Guide CONTENTS ABOUT THIS GUIDE... 5 In this document... 5 Document conventions... 7 KASPERSKY SECURITY CENTER WEB-CONSOLE... 8 SOFTWARE REQUIREMENTS... 10 APPLICATION

More information

Microsoft Visual Studio Integration Guide

Microsoft Visual Studio Integration Guide Microsoft Visual Studio Integration Guide MKS provides a number of integrations for Integrated Development Environments (IDEs). IDE integrations allow you to access MKS Integrity s workflow and configuration

More information

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

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

More information

DiskPulse DISK CHANGE MONITOR

DiskPulse DISK CHANGE MONITOR DiskPulse DISK CHANGE MONITOR User Manual Version 7.9 Oct 2015 www.diskpulse.com info@flexense.com 1 1 DiskPulse Overview...3 2 DiskPulse Product Versions...5 3 Using Desktop Product Version...6 3.1 Product

More information

GP REPORTS VIEWER USER GUIDE

GP REPORTS VIEWER USER GUIDE GP Reports Viewer Dynamics GP Reporting Made Easy GP REPORTS VIEWER USER GUIDE For Dynamics GP Version 2015 (Build 5) Dynamics GP Version 2013 (Build 14) Dynamics GP Version 2010 (Build 65) Last updated

More information

Jet Data Manager 2012 User Guide

Jet Data Manager 2012 User Guide Jet Data Manager 2012 User Guide Welcome This documentation provides descriptions of the concepts and features of the Jet Data Manager and how to use with them. With the Jet Data Manager you can transform

More information

Athena Knowledge Base

Athena Knowledge Base Athena Knowledge Base The Athena Visual Studio Knowledge Base contains a number of tips, suggestions and how to s that have been recommended by the users of the software. We will continue to enhance this

More information

Attix5 Pro Server Edition

Attix5 Pro Server Edition Attix5 Pro Server Edition V7.0.2 User Manual for Mac OS X Your guide to protecting data with Attix5 Pro Server Edition. Copyright notice and proprietary information All rights reserved. Attix5, 2013 Trademarks

More information

Information Server Documentation SIMATIC. Information Server V8.0 Update 1 Information Server Documentation. Introduction 1. Web application basics 2

Information Server Documentation SIMATIC. Information Server V8.0 Update 1 Information Server Documentation. Introduction 1. Web application basics 2 Introduction 1 Web application basics 2 SIMATIC Information Server V8.0 Update 1 System Manual Office add-ins basics 3 Time specifications 4 Report templates 5 Working with the Web application 6 Working

More information

CA Clarity Project & Portfolio Manager

CA Clarity Project & Portfolio Manager CA Clarity Project & Portfolio Manager Using CA Clarity PPM with Open Workbench and Microsoft Project v12.1.0 This documentation and any related computer software help programs (hereinafter referred to

More information

Customer Support Tool. User s Manual XE-A207 XE-A23S. Before reading this file, please read Instruction Manual of XE-A207 and XE-A23S.

Customer Support Tool. User s Manual XE-A207 XE-A23S. Before reading this file, please read Instruction Manual of XE-A207 and XE-A23S. XE-A207 XE-A23S Customer Support Tool User s Manual Thank you for downloading this PDF file. Before reading this file, please read Instruction Manual of XE-A207 and XE-A23S. Save or print this file so

More information

Customer Tips. Xerox Network Scanning HTTP/HTTPS Configuration using Microsoft IIS. for the user. Purpose. Background

Customer Tips. Xerox Network Scanning HTTP/HTTPS Configuration using Microsoft IIS. for the user. Purpose. Background Xerox Multifunction Devices Customer Tips June 5, 2007 This document applies to these Xerox products: X WC Pro 232/238/245/ 255/265/275 for the user Xerox Network Scanning HTTP/HTTPS Configuration using

More information

new Business Online Technical Troubleshooting Guide

new Business Online Technical Troubleshooting Guide new Business Online Technical Troubleshooting Guide TABLE OF CONTENTS How to install Java 1.6 Page 3 How to install Java 1.6 without ActiveX control Page 6 How to uninstall Java Runtime Environment Page

More information

Creating a Participants Mailing and/or Contact List:

Creating a Participants Mailing and/or Contact List: Creating a Participants Mailing and/or Contact List: The Limited Query function allows a staff member to retrieve (query) certain information from the Mediated Services system. This information is from

More information

Crystal Reports Installation Guide

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

More information

SAS Visual Analytics 7.2 for SAS Cloud: Quick-Start Guide

SAS Visual Analytics 7.2 for SAS Cloud: Quick-Start Guide SAS Visual Analytics 7.2 for SAS Cloud: Quick-Start Guide Introduction This quick-start guide covers tasks that account administrators need to perform to set up SAS Visual Statistics and SAS Visual Analytics

More information

Centran Version 4 Getting Started Guide KABA MAS. Table Of Contents

Centran Version 4 Getting Started Guide KABA MAS. Table Of Contents Page 1 Centran Version 4 Getting Started Guide KABA MAS Kaba Mas Welcome Kaba Mas, part of the world-wide Kaba group, is the world's leading manufacturer and supplier of high security, electronic safe

More information

How To Use Syntheticys User Management On A Pc Or Mac Or Macbook Powerbook (For Mac) On A Computer Or Mac (For Pc Or Pc) On Your Computer Or Ipa (For Ipa) On An Pc Or Ipad

How To Use Syntheticys User Management On A Pc Or Mac Or Macbook Powerbook (For Mac) On A Computer Or Mac (For Pc Or Pc) On Your Computer Or Ipa (For Ipa) On An Pc Or Ipad SYNTHESYS MANAGEMENT User Management Synthesys.Net User Management 1 SYNTHESYS.NET USER MANAGEMENT INTRODUCTION...3 STARTING SYNTHESYS USER MANAGEMENT...4 Viewing User Details... 5 Locating individual

More information

Smart Control Center. User Guide. 350 East Plumeria Drive San Jose, CA 95134 USA. November 2010 202-10685-01 v1.0

Smart Control Center. User Guide. 350 East Plumeria Drive San Jose, CA 95134 USA. November 2010 202-10685-01 v1.0 Smart Control Center User Guide 350 East Plumeria Drive San Jose, CA 95134 USA November 2010 202-10685-01 v1.0 2010 NETGEAR, Inc. All rights reserved. No part of this publication may be reproduced, transmitted,

More information

WebSphere Business Monitor V7.0 Business space dashboards

WebSphere Business Monitor V7.0 Business space dashboards Copyright IBM Corporation 2010 All rights reserved IBM WEBSPHERE BUSINESS MONITOR 7.0 LAB EXERCISE WebSphere Business Monitor V7.0 What this exercise is about... 2 Lab requirements... 2 What you should

More information

SharePoint Password Change & Expiration 3.0 User Guide

SharePoint Password Change & Expiration 3.0 User Guide SharePoint Password Change & Expiration 3.0 User Guide Copyright Copyright 2008-2013 BoostSolutions Co., Ltd. All rights reserved. All materials contained in this publication are protected by Copyright

More information

SmartOffice Configuration Guide for Microsoft Windows XP Service Pack 2

SmartOffice Configuration Guide for Microsoft Windows XP Service Pack 2 SmartOffice Configuration Guide for Microsoft Windows XP Service Pack 2 Copyright 1998-2004, E-Z Data, Inc. All Rights Reserved No part of this documentation may be copied, reproduced, or translated in

More information

MULTI-FIND/CHANGE. Automatication VERSION 1.02

MULTI-FIND/CHANGE. Automatication VERSION 1.02 MULTI-FIND/CHANGE Automatication VERSION 1.02 Automatication 2010 Automatication Limited The information in this document is furnished for informational use only, is subject to change without notice, and

More information

How to Copy A SQL Database SQL Server Express (Making a History Company)

How to Copy A SQL Database SQL Server Express (Making a History Company) How to Copy A SQL Database SQL Server Express (Making a History Company) These instructions are written for use with SQL Server Express. Check with your Network Administrator if you are not sure if you

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: NN40040-302 Document Status: Standard Document Version: 04.00 Part Code: N0060637 Date: June 2006 Copyright 2005

More information

Client Administrator Quick Reference Guide

Client Administrator Quick Reference Guide Client Administrator Quick Reference Guide Thank you for using ADP's ipaystatements to view your payroll information. Use this Quick Reference Guide to learn how to view your pay statement, understand

More information

GETTING STARTED WITH DIALux (A Very Rough Guide) Rev. 6

GETTING STARTED WITH DIALux (A Very Rough Guide) Rev. 6 1. Scaling your project drawing for import into DIALux using AutoCAD 2004 OR DraftSight, (procedure is similar in AutoCAD 2014 but you will need to access the commands through the ribbon interface): a)

More information

Installation Guide. . All right reserved. For more information about Specops Deploy and other Specops products, visit www.specopssoft.

Installation Guide. . All right reserved. For more information about Specops Deploy and other Specops products, visit www.specopssoft. . All right reserved. For more information about Specops Deploy and other Specops products, visit www.specopssoft.com Copyright and Trademarks Specops Deploy is a trademark owned by Specops Software. All

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

Manual Password Depot Server 8

Manual Password Depot Server 8 Manual Password Depot Server 8 Table of Contents Introduction 4 Installation and running 6 Installation as Windows service or as Windows application... 6 Control Panel... 6 Control Panel 8 Control Panel...

More information

Backup Assistant. User Guide. NEC NEC Unified Solutions, Inc. March 2008 NDA-30282, Revision 6

Backup Assistant. User Guide. NEC NEC Unified Solutions, Inc. March 2008 NDA-30282, Revision 6 Backup Assistant User Guide NEC NEC Unified Solutions, Inc. March 2008 NDA-30282, Revision 6 Liability Disclaimer NEC Unified Solutions, Inc. reserves the right to change the specifications, functions,

More information

SQL Server An Overview

SQL Server An Overview SQL Server An Overview SQL Server Microsoft SQL Server is designed to work effectively in a number of environments: As a two-tier or multi-tier client/server database system As a desktop database system

More information

SELF SERVICE RESET PASSWORD MANAGEMENT DATABASE REPLICATION GUIDE

SELF SERVICE RESET PASSWORD MANAGEMENT DATABASE REPLICATION GUIDE SELF SERVICE RESET PASSWORD MANAGEMENT DATABASE REPLICATION GUIDE Copyright 1998-2015 Tools4ever B.V. All rights reserved. No part of the contents of this user guide may be reproduced or transmitted in

More information

Attix5 Pro Server Edition

Attix5 Pro Server Edition Attix5 Pro Server Edition V7.0.3 User Manual for Linux and Unix operating systems Your guide to protecting data with Attix5 Pro Server Edition. Copyright notice and proprietary information All rights reserved.

More information

Wavecrest Certificate

Wavecrest Certificate Wavecrest InstallationGuide Wavecrest Certificate www.wavecrest.net Copyright Copyright 1996-2015, Wavecrest Computing, Inc. All rights reserved. Use of this product and this manual is subject to license.

More information

RTI Database Integration Service. Getting Started Guide

RTI Database Integration Service. Getting Started Guide RTI Database Integration Service Getting Started Guide Version 5.2.0 2015 Real-Time Innovations, Inc. All rights reserved. Printed in U.S.A. First printing. June 2015. Trademarks Real-Time Innovations,

More information

AccXES Account Management Tool Administrator s Guide Version 10.0

AccXES Account Management Tool Administrator s Guide Version 10.0 AccXES Account Management Tool Administrator s Guide Version 10.0 701P41531 May 2004 Trademark Acknowledgments XEROX, AccXES, The Document Company, and the identifying product names and numbers herein

More information

ODBC Driver Version 4 Manual

ODBC Driver Version 4 Manual ODBC Driver Version 4 Manual Revision Date 12/05/2007 HanDBase is a Registered Trademark of DDH Software, Inc. All information contained in this manual and all software applications mentioned in this manual

More information

Polar Help Desk 4.1. Administration Guide

Polar Help Desk 4.1. Administration Guide Polar Help Desk 4.1 Administration 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

More information

WebSphere Business Monitor V6.2 Business space dashboards

WebSphere Business Monitor V6.2 Business space dashboards Copyright IBM Corporation 2009 All rights reserved IBM WEBSPHERE BUSINESS MONITOR 6.2 LAB EXERCISE WebSphere Business Monitor V6.2 What this exercise is about... 2 Lab requirements... 2 What you should

More information

EMC Documentum Webtop

EMC Documentum Webtop EMC Documentum Webtop Version 6.5 User Guide P/N 300 007 239 A01 EMC Corporation Corporate Headquarters: Hopkinton, MA 01748 9103 1 508 435 1000 www.emc.com Copyright 1994 2008 EMC Corporation. All rights

More information

Network Driver Update for Large Keys

Network Driver Update for Large Keys Network Driver Update for Large Keys Version 1.0 A Division of Revelation Technologies, Inc. COPYRIGHT NOTICE 1996-2009 Revelation Technologies, Inc. All rights reserved. No part of this publication may

More information

HP A-IMC Firewall Manager

HP A-IMC Firewall Manager HP A-IMC Firewall Manager Configuration Guide Part number: 5998-2267 Document version: 6PW101-20110805 Legal and notice information Copyright 2011 Hewlett-Packard Development Company, L.P. No part of this

More information

NETGEAR genie Apps. User Manual. 350 East Plumeria Drive San Jose, CA 95134 USA. August 2012 202-10933-04 v1.0

NETGEAR genie Apps. User Manual. 350 East Plumeria Drive San Jose, CA 95134 USA. August 2012 202-10933-04 v1.0 User Manual 350 East Plumeria Drive San Jose, CA 95134 USA August 2012 202-10933-04 v1.0 Support Thank you for choosing NETGEAR. To register your product, get the latest product updates, get support online,

More information

XMailer Reference Guide

XMailer Reference Guide XMailer Reference Guide Version 7.00 Wizcon Systems SAS Information in this document is subject to change without notice. SyTech assumes no responsibility for any errors or omissions that may be in this

More information

Practice Fusion API Client Installation Guide for Windows

Practice Fusion API Client Installation Guide for Windows Practice Fusion API Client Installation Guide for Windows Quickly and easily connect your Results Information System with Practice Fusion s Electronic Health Record (EHR) System Table of Contents Introduction

More information

Standard Client Configuration Requirements

Standard Client Configuration Requirements Test Developer s Studio (TDS) Standard Client Configuration Requirements Information Technologies (IT) Content Applications Development Group (CADG) Version 1.0 February 20, 2008 Copyright 2008 by NCS

More information

Omgeo OASYS Workstation Installation Guide. Version 6.4 December 13, 2011

Omgeo OASYS Workstation Installation Guide. Version 6.4 December 13, 2011 Omgeo OASYS Workstation Installation Guide Version 6.4 December 13, 2011 Copyright 2011 Omgeo LLC. All rights reserved. This publication (including, without limitation, any text, image, logo, compilation,

More information

Bitrix Site Manager ASP.NET. Installation Guide

Bitrix Site Manager ASP.NET. Installation Guide Bitrix Site Manager ASP.NET Installation Guide Contents Introduction... 4 Chapter 1. Checking for IIS Installation... 5 Chapter 2. Using An Archive File to Install Bitrix Site Manager ASP.NET... 7 Preliminary

More information

Virtual CD v10. Network Management Server Manual. H+H Software GmbH

Virtual CD v10. Network Management Server Manual. H+H Software GmbH Virtual CD v10 Network Management Server Manual H+H Software GmbH Table of Contents Table of Contents Introduction 1 Legal Notices... 2 What Virtual CD NMS can do for you... 3 New Features in Virtual

More information

Easy Setup Guide for the Sony Network Camera

Easy Setup Guide for the Sony Network Camera -878-191-11 (1) Easy Setup Guide for the Sony Network Camera For setup, a computer running the Microsoft Windows Operating System is required. For monitoring camera images, Microsoft Internet Explorer

More information

Android App User Guide

Android App User Guide www.novell.com/documentation Android App User Guide ZENworks Mobile Management 2.7.x August 2013 Legal Notices Novell, Inc., makes no representations or warranties with respect to the contents or use of

More information

Education Software Installer 2011

Education Software Installer 2011 Education Software Installer 2011 Windows operating systems System administrator s guide Trademark notice SMART Notebook, SMART Document Camera, SMART Response, SMART Sync, SMART Classroom Suite, Senteo,

More information

Contents. Introduction. Chapter 1 Some Hot Tips to Get You Started. Chapter 2 Tips on Working with Strings and Arrays..

Contents. Introduction. Chapter 1 Some Hot Tips to Get You Started. Chapter 2 Tips on Working with Strings and Arrays.. Contents Introduction How to Use This Book How to Use the Tips in This Book Code Naming Conventions Getting the Example Source Code Getting Updates to the Example Code Contacting the Author Chapter 1 Some

More information

Chapter 11 Compound Documents in Windows 3.1

Chapter 11 Compound Documents in Windows 3.1 Chapter 11 Compound Documents in Windows 3.1 This chapter presents an overview of how Object Linking and Embedding (OLE) works when a Windows application is designed to take advantage of the OLE features

More information

Teradata SQL Assistant Version 13.0 (.Net) Enhancements and Differences. Mike Dempsey

Teradata SQL Assistant Version 13.0 (.Net) Enhancements and Differences. Mike Dempsey Teradata SQL Assistant Version 13.0 (.Net) Enhancements and Differences by Mike Dempsey Overview SQL Assistant 13.0 is an entirely new application that has been re-designed from the ground up. It has been

More information

ADMINISTRATOR'S GUIDE. Version 12.20

ADMINISTRATOR'S GUIDE. Version 12.20 ADMINISTRATOR'S GUIDE Version 12.20 Copyright 1981-2015 Netop Business Solutions A/S. All Rights Reserved. Portions used under license from third parties. Please send any comments to: Netop Business Solutions

More information

Installing Windows Rights Management Services with Service Pack 2 Step-by- Step Guide

Installing Windows Rights Management Services with Service Pack 2 Step-by- Step Guide Installing Windows Rights Management Services with Service Pack 2 Step-by- Step Guide Microsoft Corporation Published: October 2006 Author: Brian Lich Editor: Carolyn Eller Abstract This step-by-step guide

More information

GoldKey Software. User s Manual. Revision 7.12. WideBand Corporation www.goldkey.com. Copyright 2007-2014 WideBand Corporation. All Rights Reserved.

GoldKey Software. User s Manual. Revision 7.12. WideBand Corporation www.goldkey.com. Copyright 2007-2014 WideBand Corporation. All Rights Reserved. GoldKey Software User s Manual Revision 7.12 WideBand Corporation www.goldkey.com 1 Table of Contents GoldKey Installation and Quick Start... 5 Initial Personalization... 5 Creating a Primary Secure Drive...

More information

Citrix Access Gateway Plug-in for Windows User Guide

Citrix Access Gateway Plug-in for Windows User Guide Citrix Access Gateway Plug-in for Windows User Guide Access Gateway 9.2, Enterprise Edition Copyright and Trademark Notice Use of the product documented in this guide is subject to your prior acceptance

More information

Integrated Virtual Debugger for Visual Studio Developer s Guide VMware Workstation 8.0

Integrated Virtual Debugger for Visual Studio Developer s Guide VMware Workstation 8.0 Integrated Virtual Debugger for Visual Studio Developer s Guide VMware Workstation 8.0 This document supports the version of each product listed and supports all subsequent versions until the document

More information

Credit Card Encryption 9.0

Credit Card Encryption 9.0 N O D U S T E C H N O L O G I E S, I N C. Credit Card Encryption 9.0 User s Guide Nodus Technologies, Inc. 250 West First Street Suite 302 Claremont, CA 91711 Phone 909.482.4701 Fax 909.482.4705 i Copyright

More information

Supplement I.B: Installing and Configuring JDK 1.6

Supplement I.B: Installing and Configuring JDK 1.6 Supplement I.B: Installing and Configuring JDK 1.6 For Introduction to Java Programming Y. Daniel Liang This supplement covers the following topics: Downloading JDK 1.6 ( 1.2) Installing JDK 1.6 ( 1.3)

More information

ENHANCE. The Style Sheet Tool for Microsoft Dynamics NAV. Microsoft Dynamics NAV 5.0. User s Guide

ENHANCE. The Style Sheet Tool for Microsoft Dynamics NAV. Microsoft Dynamics NAV 5.0. User s Guide ENHANCE Microsoft Dynamics NAV 5.0 The Style Sheet Tool for Microsoft Dynamics NAV User s Guide The Style Sheet feature in Microsoft Dynamics TM NAV 5.0 has been enhanced with a new tool that allows you

More information

Sophos SafeGuard Native Device Encryption for Mac Administrator help. Product version: 7

Sophos SafeGuard Native Device Encryption for Mac Administrator help. Product version: 7 Sophos SafeGuard Native Device Encryption for Mac Administrator help Product version: 7 Document date: December 2014 Contents 1 About SafeGuard Native Device Encryption for Mac...3 1.1 About this document...3

More information

Microsoft IIS 4 Guide to Installing Root Certificates, Generating CSR and Installing SSL Certificate

Microsoft IIS 4 Guide to Installing Root Certificates, Generating CSR and Installing SSL Certificate Microsoft IIS 4 Guide to Installing Root Certificates, Generating CSR and Installing SSL Certificate Copyright. All rights reserved. Trustis Limited Building 273 New Greenham Park Greenham Common Thatcham

More information

Lesson 07: MS ACCESS - Handout. Introduction to database (30 mins)

Lesson 07: MS ACCESS - Handout. Introduction to database (30 mins) Lesson 07: MS ACCESS - Handout Handout Introduction to database (30 mins) Microsoft Access is a database application. A database is a collection of related information put together in database objects.

More information

SonicWALL CDP 5.0 Microsoft Exchange User Mailbox Backup and Restore

SonicWALL CDP 5.0 Microsoft Exchange User Mailbox Backup and Restore SonicWALL CDP 5.0 Microsoft Exchange User Mailbox Backup and Restore Document Scope This solutions document describes how to configure and use the Microsoft Exchange User Mailbox Backup and Restore feature

More information

Team Foundation Server 2012 Installation Guide

Team Foundation Server 2012 Installation Guide Team Foundation Server 2012 Installation Guide Page 1 of 143 Team Foundation Server 2012 Installation Guide Benjamin Day benday@benday.com v1.0.0 November 15, 2012 Team Foundation Server 2012 Installation

More information

Automation License Manager

Automation License Manager s Contents Product Overview 1 Installation 2 Working with the Automation License Manager 3 Glossary Manual Index 12/2008 A5E02389428-01 Legal information Warning notice system This manual contains notices

More information

Migrating MSDE to Microsoft SQL 2008 R2 Express

Migrating MSDE to Microsoft SQL 2008 R2 Express How To Updated: 11/11/2011 2011 Shelby Systems, Inc. All Rights Reserved Other brand and product names are trademarks or registered trademarks of the respective holders. If you are still on MSDE 2000,

More information

Installing Policy Patrol on a separate machine

Installing Policy Patrol on a separate machine Policy Patrol 3.0 technical documentation July 23, 2004 Installing Policy Patrol on a separate machine If you have Microsoft Exchange Server 2000 or 2003 it is recommended to install Policy Patrol on the

More information

ODBC Client Driver Help. 2015 Kepware, Inc.

ODBC Client Driver Help. 2015 Kepware, Inc. 2015 Kepware, Inc. 2 Table of Contents Table of Contents 2 4 Overview 4 External Dependencies 4 Driver Setup 5 Data Source Settings 5 Data Source Setup 6 Data Source Access Methods 13 Fixed Table 14 Table

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

Getting Started Guide

Getting Started Guide Getting Started Guide Your Guide to Getting Started with IVI Drivers Revision 1.0 Contents Chapter 1 Introduction............................................. 9 Purpose.................................................

More information

Setting Up Email. on Your Sprint Power Vision SM Mogul by HTC

Setting Up Email. on Your Sprint Power Vision SM Mogul by HTC Setting Up Email on Your Sprint Power Vision SM Mogul by HTC Intellectual Property Notices 2007 Sprint Nextel. All rights reserved. No reproduction in whole or in part without prior written approval. SPRINT

More information

Pre-Requisites: PC and Browser Configuration Guide v1.3

Pre-Requisites: PC and Browser Configuration Guide v1.3 CLIENT FOR CONTRACTORS (C4C) SERVICE REFERENCE GUIDE Pre-Requisites: PC and Browser Configuration Guide v1.3 Introduction Client For Contractors (C4C) is a new service developed by Shell to make contractors

More information

Getting Started using the SQuirreL SQL Client

Getting Started using the SQuirreL SQL Client Getting Started using the SQuirreL SQL Client The SQuirreL SQL Client is a graphical program written in the Java programming language that will allow you to view the structure of a JDBC-compliant database,

More information

Rational Rational ClearQuest

Rational Rational ClearQuest Rational Rational ClearQuest Version 7.0 Windows Using Project Tracker GI11-6377-00 Rational Rational ClearQuest Version 7.0 Windows Using Project Tracker GI11-6377-00 Before using this information, be

More information

Pendragon Forms Industrial

Pendragon Forms Industrial Pendragon Forms Industrial Version 7 Installation & Reference Guide for Android Devices Contents What Is Pendragon Forms Industrial?... 2 Installing Pendragon Forms Industrial... 2 Installing Pendragon

More information

Using CertAgent to Obtain Domain Controller and Smart Card Logon Certificates for Active Directory Authentication

Using CertAgent to Obtain Domain Controller and Smart Card Logon Certificates for Active Directory Authentication Using CertAgent to Obtain Domain Controller and Smart Card Logon Certificates for Active Directory Authentication Contents Domain Controller Certificates... 1 Enrollment for a Domain Controller Certificate...

More information