Using CPLEX with Microsoft Visual C++
|
|
|
- Joel Harrington
- 9 years ago
- Views:
Transcription
1 Using CPLEX with Microsoft Visual C++ This file describes how to use Microsoft Visual Studio to build and run the C and C++ examples delivered with CPLEX (see dotnet.html for the C# and VB examples). create a C or C++ project and link the target with CPLEX. CPLEX Installation Folder Throughout this document, the CPLEX installation folder is referred to as <CPLEXDIR>, and the Concert Technology installation folder is referred to as <CONCERTDIR>. For example, if CPLEX has been installed in the folder C\ILOG\CPLEX111 (the default location), references to <CPLEXDIR>\include represent C\ILOG\CPLEX111\include. The default for Concert Technology is C\ILOG\Concert26. Libraries The ILOG Concert Technology libraries are delivered in two static formats for Visual Studio 2005 (x86_.net2005_8.0), so that a static executable can be linked with libcmt.lib or msvcrt.lib. These two formats use the standard template library (STL) and are compiled using the namespace std. Similarly, for Visual Studio 2008 (x86_windows_vs2008 or x64_windows_2008), the same two formats are supported, multi threaded, and multithreaded DLL. The ILOG CPLEX library is delivered as a DLL so that it may be used with any of the library formats, but there is an associated library file of each format with which to link. Library Locations Visual Studio 2005 libraries can be found in the following directories multi threaded STL <CPLEXDIR>\lib\x86_.net2005_8.0\stat_mta\ilocplex.lib <CPLEXDIR>\lib\x86_.net2005_8.0\stat_mta\cplex111.lib <CONCERTDIR>\lib\x86_.net2005_8.0\stat_mta\concert.lib <CPLEXDIR>\lib\x64_.net2005_8.0\stat_mta\ilocplex.lib <CPLEXDIR>\lib\x64_.net2005_8.0\stat_mta\cplex111.lib <CONCERTDIR>\lib\x64_.net2005_8.0\stat_mta\concert.lib These libraries must be linked with libcmt.lib multi threaded DLL STL <CPLEXDIR>\lib\x86_.net2005_8.0\stat_mda\ilocplex.lib <CPLEXDIR>\lib\x86_.net2005_8.0\stat_mda\cplex111.lib file///c/users/edalkiran/dropbox/courses/advancedip/papers/cplex/c_cpp.html 1/5
2 <CONCERTDIR>\lib\x86_.net2005_8.0\stat_mda\concert.lib <CPLEXDIR>\lib\x64_.net2005_8.0\stat_mda\ilocplex.lib <CPLEXDIR>\lib\x64_.net2005_8.0\stat_mda\cplex111.lib <CONCERTDIR>\lib\x64_.net2005_8.0\stat_mda\concert.lib These libraries must be linked with msvcrt.lib Visual Studio 2008 libraries can be found in the following directories multi threaded STL multi threaded DLL STL <CPLEXDIR>\lib\x86_windows_vs2008\stat_mta\ilocplex.lib <CPLEXDIR>\lib\x86_windows_vs2008\stat_mta\cplex111.lib <CONCERTDIR>\lib\x86_windows_vs2008\stat_mta\concert.lib <CPLEXDIR>\lib\x64_windows_vs2008\stat_mta\ilocplex.lib <CPLEXDIR>\lib\x64_windows_vs2008\stat_mta\cplex111.lib <CONCERTDIR>\lib\x64_windows_vs2008\stat_mta\concert.lib These libraries must be linked with libcmt.lib <CPLEXDIR>\lib\x86_windows_vs2008\stat_mda\ilocplex.lib <CPLEXDIR>\lib\x86_windows_vs2008\stat_mda\cplex111.lib <CONCERTDIR>\lib\x86_windows_vs2008\stat_mda\concert.lib <CPLEXDIR>\lib\x64_windows_vs2008\stat_mda\ilocplex.lib <CPLEXDIR>\lib\x64_windows_vs2008\stat_mda\cplex111.lib <CONCERTDIR>\lib\x64_windows_vs2008\stat_mda\concert.lib These libraries must be linked with msvcrt.lib Building and Running CPLEX Examples The C and C++ CPLEX examples have all been gathered in one project for each type of static format (sta, mta, and mda). The instructions below use the mta format for the Visual Studio 2005 environment, but the same instructions apply when using the project file for another format or with Visual Studio The related file for the mta format is <CPLEXDIR>\examples\x86_.net2005_8.0\stat_mta\examples.sln. Be aware that the order of the instructions below is important. 1. Start Microsoft Visual Studio From the File menu, choose Open Project/Solution. The Open Project dialog box appears. If the default selection in the Files Of Type drop down list is Project Files, change it to Solution Files. Select the folder <CPLEXDIR>\examples\x86_.net2005_8.0\stat_mta. Select the examples file and click Open. 3. To build only one example (for instance, blend) Select the blend project in the Solution Explorer window. file///c/users/edalkiran/dropbox/courses/advancedip/papers/cplex/c_cpp.html 2/5
3 From the Build menu, choose Build blend. Wait for the completion of the building process. 4. To build all of the examples From the Build menu, choose Build Solution Wait for the completion of the building process. 5. To run an example (for instance, blend) Open a command prompt window by running the Visual Studio 2005 Command Prompt. In the window Visual Studio 2005 Command prompt Type set path=%path%;<cplexdir>\bin\x86_win32 so that cplex111.dll is on the path. Type <CPLEXDIR>\examples\x86_.net2005_8.0\stat_mta\blend. The result is then displayed. Building Your Own Project which Links with CPLEX Note The information below applies to the Visual C multi threaded STL library. If you use another version of the library, set the Runtime Library option to match the library version. If you use Visual Studio 2008, the instructions below should apply, except that x86_.net2005_8.0 should be replaced with x86_windows_vs2008 whenever a path name is specified. Let's assume that you want to build a target named test.exe and have a source file named test.cpp which uses ILOG Concert Technology or test.c which uses the C API of the CPLEX Callable Library; a folder where this file is located and which, for the sake of simplicity, we'll refer to as <MYAPPDIR>. One way to achieve that is to create a project named test.vcproj as described here. Be aware that the order of instructions is important. 1. Start Microsoft Visual Studio The first step is to build the test.sln solution. From the File menu, select New >, and then Project... The New Project dialog box appears. In the Project Types pane, select Visual C++ Projects. In the Templates pane, select the Win32 Project icon. Fill in the project name (test). If necessary, correct the location of the project (to <MYAPPDIR>) Click OK When the Win32 Application Wizard appears... file///c/users/edalkiran/dropbox/courses/advancedip/papers/cplex/c_cpp.html 3/5
4 Click on Application Settings. Select Console Application as Application type. Make sure that Empty project is checked in Additional Options. Click Finish. This creates a solution, test, with a single project, test. You can see the contents of the solution by selecting Solution Explorer in the View menu. 3. Now you must add your source file to the project. From the Project menu, choose Add Existing Item... Move to the folder <MYAPPDIR> and select test.cpp or test.c. Click Open. 4. Next, you have to set some options so that the project knows where to find the ILOG CPLEX/Concert include files and the ILOG CPLEX/Concert libraries. From the Project menu, choose Properties. The test Property Pages dialog box appears. In the Configuration drop down list, select Release. Select C/C++ in the Configuration Properties tree. Select General In the Additional Include Directories field, add the directories <CPLEXDIR>\include. <CONCERTDIR>\include. For Debug Information Format, choose Disabled (/Zd). Choose No for Detect 64 bit Portability Issues. Select Preprocessor Add IL_STD to the Preprocessor Definitions field. This defines the macro IL_STD which is needed to use the STL. Select Code Generation Set Runtime Library to Multi threaded (/MT). Select Linker in the Configuration Properties tree. Select Input and then select Additional Dependencies. Add the files wsock32.lib <CPLEXDIR>\lib\x86_.net2005_8.0\stat_mta\cplex111.lib <CPLEXDIR>\lib\x86_.net2005_8.0\stat_mta\ilocplex.lib <CONCERTDIR>\lib\x86_.net2005_8.0\stat_mta\concert.lib The latter two are only necessary if you are using ILOG Concert Technology. Click OK to close the test Property Pages dialog box. 5. Next, you have to set the default project configuration. From the Build menu, select Configuration Manager... Select Release in the Active Solution Configuration drop down list. file///c/users/edalkiran/dropbox/courses/advancedip/papers/cplex/c_cpp.html 4/5
5 Click Close. 6. Finally, to build the project, from the Build menu, select Build Solution After completion of the compiling and linking process, the target is created. The full path of the test.exe is <MYAPPDIR>\test\Release\test.exe. Remark From the Concert point of view, the only difference between the Win32 Release and Win32 Debug targets is the NDEBUG macro is defined for the Win32 Release target. the NDEBUG macro is not defined for the Win32 Debug target. This is why we have suggested using Release in the test.sln example, even though it is not the default proposed by Visual C++.NET. Refer to the Visual C++ Reference Manual for full information on Release and Debug configurations. The interaction of the NDEBUG macro and the Concert inline member functions is documented in the Concepts section of the ILOG CPLEX C++ API Reference Manual. file///c/users/edalkiran/dropbox/courses/advancedip/papers/cplex/c_cpp.html 5/5
Microsoft Visual Studio 2010 Instructions For C Programs
Microsoft Visual Studio 2010 Instructions For C Programs Creating a NEW C Project After you open Visual Studio 2010, 1. Select File > New > Project from the main menu. This will open the New Project dialog
Developing, Deploying, and Debugging Applications on Windows Embedded Standard 7
Developing, Deploying, and Debugging Applications on Windows Embedded Standard 7 Contents Overview... 1 The application... 2 Motivation... 2 Code and Environment... 2 Preparing the Windows Embedded Standard
Using Microsoft Visual Studio 2010. API Reference
2010 API Reference Published: 2014-02-19 SWD-20140219103929387 Contents 1... 4 Key features of the Visual Studio plug-in... 4 Get started...5 Request a vendor account... 5 Get code signing and debug token
Introduction to the use of the environment of Microsoft Visual Studio 2008
Steps to work with Visual Studio 2008 1) Start Visual Studio 2008. To do this you need to: a) Activate the Start menu by clicking the Start button at the lower-left corner of your screen. b) Set the mouse
INTERNAL USE ONLY (Set it to white if you do not need it)
APPLICATION NOTE How to Build Basler pylon C++ Applications with Free Microsoft Visual Studio Document Number: AW000644 Version: 03 Language: 000 (English) Release Date: 23 July 2015 INTERNAL USE ONLY
Eliminate Memory Errors and Improve Program Stability
Eliminate Memory Errors and Improve Program Stability with Intel Parallel Studio XE Can running one simple tool make a difference? Yes, in many cases. You can find errors that cause complex, intermittent
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
Installation of IR under Windows Server 2008
Installation of IR under Windows Server 2008 Installation of IR under windows 2008 involves the following steps: Installation of IIS Check firewall settings to allow HTTP traffic through firewall Installation
Lab 2 - CMPS 1043, Computer Science I Introduction to File Input/Output (I/O) Projects and Solutions (C++)
Lab 2 - CMPS 1043, Computer Science I Introduction to File Input/Output (I/O) Projects and Solutions (C++) (Revised from http://msdn.microsoft.com/en-us/library/bb384842.aspx) * Keep this information to
DEPLOYING A VISUAL BASIC.NET APPLICATION
C6109_AppendixD_CTP.qxd 18/7/06 02:34 PM Page 1 A P P E N D I X D D DEPLOYING A VISUAL BASIC.NET APPLICATION After completing this appendix, you will be able to: Understand how Visual Studio performs deployment
MatrixSSL Getting Started
MatrixSSL Getting Started TABLE OF CONTENTS 1 OVERVIEW... 3 1.1 Who is this Document For?... 3 2 COMPILING AND TESTING MATRIXSSL... 4 2.1 POSIX Platforms using Makefiles... 4 2.1.1 Preparation... 4 2.1.2
Installing LearningBay Enterprise Part 2
Installing LearningBay Enterprise Part 2 Support Document Copyright 2012 Axiom. All Rights Reserved. Page 1 Please note that this document is one of three that details the process for installing LearningBay
Learn how to create web enabled (browser) forms in InfoPath 2013 and publish them in SharePoint 2013. InfoPath 2013 Web Enabled (Browser) forms
Learn how to create web enabled (browser) forms in InfoPath 2013 and publish them in SharePoint 2013. InfoPath 2013 Web Enabled (Browser) forms InfoPath 2013 Web Enabled (Browser) forms Creating Web Enabled
INTERNAL USE ONLY (Set it to white if you do not need it)
APPLICATION NOTE How to Build Basler pylon C++ Applications with Free Microsoft Visual Studio Document Number: AW000644 Version: 05 Language: 000 (English) Release Date: 8 April 2016 INTERNAL USE ONLY
Compiler Setup and DirectX/OpenGL Setup
Compiler Setup and DirectX/OpenGL Setup A very important part of programming is choosing a decent development environment setup. Microsoft s Visual Studio product range is by far one of the greatest IDEs
Appendix K Introduction to Microsoft Visual C++ 6.0
Appendix K Introduction to Microsoft Visual C++ 6.0 This appendix serves as a quick reference for performing the following operations using the Microsoft Visual C++ integrated development environment (IDE):
How to install and use the File Sharing Outlook Plugin
How to install and use the File Sharing Outlook Plugin Thank you for purchasing Green House Data File Sharing. This guide will show you how to install and configure the Outlook Plugin on your desktop.
Introduction. There are several bits of information that must be moved:
Backup and restore on new hardware XProtect Professional VMS Products 2014: XProtect Enterprise 2014, XProtect Professional 2014, XProtect Express 2014, XProtect Essential 2014 Introduction This document
4cast Client Specification and Installation
4cast Client Specification and Installation Version 2015.00 10 November 2014 Innovative Solutions for Education Management www.drakelane.co.uk System requirements The client requires Administrative rights
Configuring Thunderbird for Flinders Mail at home.
Configuring Thunderbird for Flinders Mail at home. Downloading Thunderbird can be downloaded from the Mozilla web site located at http://www.mozilla.org/download.html This web site also contains links
SharePoint 2007 Get started User Guide. Team Sites
SharePoint 2007 Get started User Guide Team Sites Contents 1. Overview... 2 1.1 What is SharePoint?... 2 1.2 What is a SharePoint Team Site?... 2 1.3 SharePoint user permissions... 2 2. Team Site features...
Creating a Simple Visual C++ Program
CPS 150 Lab 1 Name Logging in: Creating a Simple Visual C++ Program 1. Once you have signed for a CPS computer account, use the login ID and the password password (lower case) to log in to the system.
Instructions for Configuring a SAS Metadata Server for Use with JMP Clinical
Instructions for Configuring a SAS Metadata Server for Use with JMP Clinical These instructions describe the process for configuring a SAS Metadata server to work with JMP Clinical. Before You Configure
MS Visual C++ Introduction. Quick Introduction. A1 Visual C++
MS Visual C++ Introduction 1 Quick Introduction The following pages provide a quick tutorial on using Microsoft Visual C++ 6.0 to produce a small project. There should be no major differences if you are
Word 2010: Mail Merge to Email with Attachments
Word 2010: Mail Merge to Email with Attachments Table of Contents TO SEE THE SECTION FOR MACROS, YOU MUST TURN ON THE DEVELOPER TAB:... 2 SET REFERENCE IN VISUAL BASIC:... 2 CREATE THE MACRO TO USE WITHIN
DigitalPersona Pro Server for Active Directory v4.x Quick Start Installation Guide
DigitalPersona Pro Server for Active Directory v4.x Quick Start Installation Guide 1 of 7 DigitalPersona Pro Server for Active Directory v4.x Quick Start Installation Guide Process Overview Step Description
To install Multifront you need to have familiarity with Internet Information Services (IIS), Microsoft.NET Framework and SQL Server 2008.
Znode Multifront - Installation Guide Version 6.2 1 System Requirements To install Multifront you need to have familiarity with Internet Information Services (IIS), Microsoft.NET Framework and SQL Server
Visual Studio 2008 Express Editions
Visual Studio 2008 Express Editions Visual Studio 2008 Installation Instructions Burning a Visual Studio 2008 Express Editions DVD Download (http://www.microsoft.com/express/download/) the Visual Studio
Generating Visual Studio Project Files
Table of Contents 1. Overview... 1 2. About this tutorial... 1 3. Setting up the pure::variants project... 1 4. Setting up the feature model... 3 5. Setting up the family model... 3 6. Setting up the transformation...
Creating OpenGL applications that use GLUT
Licenciatura em Engenharia Informática e de Computadores Computação Gráfica Creating OpenGL applications that use GLUT Short guide to creating OpenGL applications in Windows and Mac OSX Contents Obtaining
Appendix M: Introduction to Microsoft Visual C++ 2010 Express Edition
Appendix M: Introduction to Microsoft Visual C++ 2010 Express Edition This book may be ordered from Addison-Wesley in a value pack that includes Microsoft Visual C++ 2010 Express Edition. Visual C++ 2010
Comodo MyDLP Software Version 2.0. Endpoint Installation Guide Guide Version 2.0.010215. Comodo Security Solutions 1255 Broad Street Clifton, NJ 07013
Comodo MyDLP Software Version 2.0 Endpoint Installation Guide Guide Version 2.0.010215 Comodo Security Solutions 1255 Broad Street Clifton, NJ 07013 Table of Contents 1.About MyDLP... 3 1.1.MyDLP Features...
Releasing blocked email in Data Security
Releasing blocked email in Data Security IN-TopicInfo:Topic 41101/ Updated: 02-May-2011 Applies To: Websense Data Security v7.1.x Websense Data Security v7.5.x Websense Data Security v7.6.x - v7.8x SMTP
SonicWALL CDP 5.0 Microsoft Exchange InfoStore Backup and Restore
SonicWALL CDP 5.0 Microsoft Exchange InfoStore Backup and Restore Document Scope This solutions document describes how to configure and use the Microsoft Exchange InfoStore Backup and Restore feature in
MS WORD 2007 (PC) Macros and Track Changes Please note the latest Macintosh version of MS Word does not have Macros.
MS WORD 2007 (PC) Macros and Track Changes Please note the latest Macintosh version of MS Word does not have Macros. Record a macro 1. On the Developer tab, in the Code group, click Record Macro. 2. In
Create, Link, or Edit a GPO with Active Directory Users and Computers
How to Edit Local Computer Policy Settings To edit the local computer policy settings, you must be a local computer administrator or a member of the Domain Admins or Enterprise Admins groups. 1. Add the
Deep Freeze and Microsoft System Center Configuration Manager 2012 Integration
1 Deep Freeze and Microsoft System Center Configuration Manager 2012 Integration Technical Paper Last modified: May 2015 Web: www.faronics.com Email: [email protected] Phone: 800-943-6422 or 604-637-3333
Microsoft Access Database
1 of 6 08-Jun-2010 12:38 Microsoft Access Database Introduction A Microsoft Access database is primarily a Windows file. It must have a location, also called a path, which indicates how the file can be
Moving the Web Security Log Database
Moving the Web Security Log Database Topic 50530 Web Security Solutions Version 7.7.x, 7.8.x Updated 22-Oct-2013 Version 7.8 introduces support for the Web Security Log Database on Microsoft SQL Server
Junk E-mail Settings. Options
Outlook 2003 includes a new Junk E-mail Filter. It is active, by default, and the protection level is set to low. The most obvious junk e-mail messages are caught and moved to the Junk E-Mail folder. Use
etoken Enterprise For: SSL SSL with etoken
etoken Enterprise For: SSL SSL with etoken System Requirements Windows 2000 Internet Explorer 5.0 and above Netscape 4.6 and above etoken R2 or Pro key Install etoken RTE Certificates from: (click on the
MPLAB C18 C Compiler
MPLAB C18 C Compiler MPLAB C18 C Compiler The layout of this document: Installing MPLAB C18: A step-by-step guide through the installation process of MPLAB C18 Compiler. Configuring MPLAB IDE: MPLAB IDE
SARANGSoft WinBackup Business v2.5 Client Installation Guide
SARANGSoft WinBackup Business v2.5 Client Installation Guide (November, 2015) WinBackup Business Client is a part of WinBackup Business application. It runs in the background on every client computer that
FTP, IIS, and Firewall Reference and Troubleshooting
FTP, IIS, and Firewall Reference and Troubleshooting Although Cisco VXC Manager automatically installs and configures everything you need for use with respect to FTP, IIS, and the Windows Firewall, the
Reference and Troubleshooting: FTP, IIS, and Firewall Information
APPENDIXC Reference and Troubleshooting: FTP, IIS, and Firewall Information Although Cisco VXC Manager automatically installs and configures everything you need for use with respect to FTP, IIS, and the
Exclaimer Email Alias Manager for Exchange Deployment Guide - Exclaimer Email Alias Manager for Exchange Outlook Add-In
Exclaimer Email Alias Manager for Exchange Deployment Guide - Exclaimer Email Alias Manager for Exchange Outlook Add-In www.exclaimer.com Contents About This Guide...3 System Requirements...4 Software...4
This section provides a 'Quickstart' guide to using TestDriven.NET any version of Microsoft Visual Studio.NET
Quickstart TestDriven.NET - Quickstart TestDriven.NET Quickstart Introduction Installing Running Tests Ad-hoc Tests Test Output Test With... Test Projects Aborting Stopping Introduction This section provides
Image Acquisition Toolbox Adaptor Kit User's Guide
Image Acquisition Toolbox Adaptor Kit User's Guide R2015b How to Contact MathWorks Latest news: www.mathworks.com Sales and services: www.mathworks.com/sales_and_services User community: www.mathworks.com/matlabcentral
APPLICATION NOTE. Getting Started with pylon and OpenCV
APPLICATION NOTE Getting Started with pylon and OpenCV Applicable to all Basler USB3 Vision, GigE Vision, and IEEE 1394 cameras Document Number: AW001368 Version: 01 Language: 000 (English) Release Date:
How to Create a Delegated Administrator User Role / To create a Delegated Administrator user role Page 1
Managing user roles in SCVMM How to Create a Delegated Administrator User Role... 2 To create a Delegated Administrator user role... 2 Managing User Roles... 3 Backing Up and Restoring the VMM Database...
Configuring.NET based Applications in Internet Information Server to use Virtual Clocks from Time Machine
Configuring.NET based Applications in Internet Information Server to use Virtual Clocks from Time Machine System Details: The development & deployment for this documentation was performed on the following:
How to Configure Microsoft System Operation Manager to Monitor Active Directory, Group Policy and Exchange Changes Using NetWrix Active Directory
How to Configure Microsoft System Operation Manager to Monitor Active Directory, Group Policy and Exchange Changes Using NetWrix Active Directory Change Reporter Table of Contents General Information...
Install the Production Treasury Root Certificate (Vista / Win 7)
Install the Production Treasury Root Certificate (Vista / Win 7) The Production Treasury Root Certificate should be maintained on your local workstations to use OTCnet Check Capture and Deposit Reporting.
Moving the TRITON Reporting Databases
Moving the TRITON Reporting Databases Topic 50530 Web, Data, and Email Security Versions 7.7.x, 7.8.x Updated 06-Nov-2013 If you need to move your Microsoft SQL Server database to a new location (directory,
Pocket ESA Network Server Installation
Pocket ESA Network Server Installation This document details the installation and configuration of the networked version of Pocket ESA on a computer with Microsoft Windows XP/2000. Installation After agreeing
Tool Tip. SyAM Management Utilities and Non-Admin Domain Users
SyAM Management Utilities and Non-Admin Domain Users Some features of SyAM Management Utilities, including Client Deployment and Third Party Software Deployment, require authentication credentials with
Getting Started Guide
BlackBerry Web Services For Microsoft.NET developers Version: 10.2 Getting Started Guide Published: 2013-12-02 SWD-20131202165812789 Contents 1 Overview: BlackBerry Enterprise Service 10... 5 2 Overview:
Visual C++ 2010 Tutorial
Visual C++ 2010 Tutorial Fall, 2011 Table of Contents Page No Introduction ------------------------------------------------------------------- 2 Single file program demo --------- -----------------------------------------
Code Estimation Tools Directions for a Services Engagement
Code Estimation Tools Directions for a Services Engagement Summary Black Duck software provides two tools to calculate size, number, and category of files in a code base. This information is necessary
LPR for Windows 95/98/Me/2000/XP TCP/IP Printing User s Guide. Rev. 03 (November, 2001)
LPR for Windows 95/98/Me/2000/XP TCP/IP Printing User s Guide Rev. 03 (November, 2001) Copyright Statement Trademarks Copyright 1997 No part of this publication may be reproduced in any form or by any
Composite.Community.Newsletter - User Guide
Composite.Community.Newsletter - User Guide Composite 2015-11-09 Composite A/S Nygårdsvej 16 DK-2100 Copenhagen Phone +45 3915 7600 www.composite.net Contents 1 INTRODUCTION... 4 1.1 Who Should Read This
Team Foundation Server 2010, Visual Studio Ultimate 2010, Team Build 2010, & Lab Management Beta 2 Installation Guide
Page 1 of 243 Team Foundation Server 2010, Visual Studio Ultimate 2010, Team Build 2010, & Lab Management Beta 2 Installation Guide (This is an alpha version of Benjamin Day Consulting, Inc. s installation
VirtualXP Users Guide
VirtualXP Users Guide Contents Chapter 1: Introduction... 2 Chapter 2: Install and Uninstall VirtualXP... 3 2.1 System Requirement... 3 2.2 Installing VirtualXP... 3 2.3 Uninstalling VirtualXP... 3 Chapter
Getting Started with the Ed-Fi ODS and Ed-Fi ODS API
Getting Started with the Ed-Fi ODS and Ed-Fi ODS API Ed-Fi ODS and Ed-Fi ODS API Version 2.0 - Technical Preview October 2014 2014 Ed-Fi Alliance, LLC. All rights reserved. Ed-Fi is a registered trademark
Chapter 1: Getting Started
Chapter 1: Getting Started Every journey begins with a single step, and in ours it's getting to the point where you can compile, link, run, and debug C++ programs. This depends on what operating system
Using Device Discovery
2 CHAPTER You can use Active Discovery to scan your network for new monitors (Active Monitors and Performance Monitors) and devices on a regular basis. Newly discovered items are added to the Active Discovery
Secrets of Event Viewer for Active Directory Security Auditing Lepide Software
Secrets of Event Viewer for Active Directory Security Auditing Windows Event Viewer doesn t need any introduction to the IT Administrators. However, some of its hidden secrets, especially those related
Notepad++ The COMPSCI 101 Text Editor for Windows. What is a text editor? Install Python 3
Notepad++ The COMPSCI 101 Text Editor for Windows The text editor that we will be using in the Computer Science labs for creating our Python programs is called Notepad++ and http://notepad-plus-plus.org
Sharpdesk V3.5. Push Installation Guide for system administrator Version 3.5.01
Sharpdesk V3.5 Push Installation Guide for system administrator Version 3.5.01 Copyright 2000-2015 by SHARP CORPORATION. All rights reserved. Reproduction, adaptation or translation without prior written
PPC S SMART PRACTICE AIDS
PPC S SMART PRACTICE AIDS END USER INSTALLATION GUIDE - LOCAL MACHINE ONLY GENERAL INSTALLATION INFORMATION Before starting the installation process on a local machine (computer or workstation), ensure
Create a Web Service from a Java Bean Test a Web Service using a generated test client and the Web Services Explorer
Web Services Objectives After completing this lab, you will be able to: Given Create a Web Service from a Java Bean Test a Web Service using a generated test client and the Web Services Explorer The following
Lesson 0 - Introduction to Playstation 3 programming
Lesson 0 - Introduction to Playstation 3 programming Summary A brief overview of the Playstation 3 development environment, and how to set up a PS3 project solution to run on the PS3 Devkits. New Concepts
Eclipse installation, configuration and operation
Eclipse installation, configuration and operation This document aims to walk through the procedures to setup eclipse on different platforms for java programming and to load in the course libraries for
Backing Up and Restoring Microsoft Exchange Server 2010. Cloud Attached Storage. August 2012 Version 3.2
Backing Up and Restoring Microsoft Exchange Server 2010 Cloud Attached Storage August 2012 Version 3.2 1 Introduction This document explains how to backup your Microsoft Exchange Server 2010 database and
Programming with the Dev C++ IDE
Programming with the Dev C++ IDE 1 Introduction to the IDE Dev-C++ is a full-featured Integrated Development Environment (IDE) for the C/C++ programming language. As similar IDEs, it offers to the programmer
NETWRIX CHANGE NOTIFIER
NETWRIX CHANGE NOTIFIER FOR SQL SERVER QUICK-START GUIDE Product Version: 2.6.194 February 2014. Legal Notice The information in this publication is furnished for information use only, and does not constitute
STATISTICA VERSION 10 STATISTICA ENTERPRISE SERVER INSTALLATION INSTRUCTIONS
Notes: STATISTICA VERSION 10 STATISTICA ENTERPRISE SERVER INSTALLATION INSTRUCTIONS 1. The installation of the STATISTICA Enterprise Server entails two parts: a) a server installation, and b) workstation
How To Install Outlook Addin On A 32 Bit Computer
Deployment Guide - Outlook Add-In www.exclaimer.com Contents About This Guide... 3 System Requirements... 4 Software... 4 Installation Files... 5 Deployment Preparation... 6 Installing the Add-In Manually...
CONFIGURING MICROSOFT SQL SERVER REPORTING SERVICES
CONFIGURING MICROSOFT SQL SERVER REPORTING SERVICES TECHNICAL ARTICLE November/2011. Legal Notice The information in this publication is furnished for information use only, and does not constitute a commitment
SecureAware on IIS8 on Windows Server 2008/- 12 R2-64bit
SecureAware on IIS8 on Windows Server 2008/- 12 R2-64bit Note: SecureAware version 3.7 and above contains all files and setup configuration needed to use Microsoft IIS as a front end web server. Installing
Technical Bulletin. SQL Express Backup Utility
Technical Bulletin SQL Express Backup Utility May 2012 Introduction This document describes the installation, configuration and use of the SATEON SQL Express Backup utility, which is used to provide scheduled
SCUt ils SmartAssign Guide Solution for Microsoft System Center 2012 Service Manager
SCUt ils SmartAssign Guide Solution for Microsoft System Center 2012 Service Manager Published: 06 th March 2015 Version: 1.1 Authors: Marat Kuanyshev Feedback: [email protected] Contents 1. Getting
Faculty Details. : Assistant Professor ( OG. ),Assistant Professor (OG) Course Details. : B. Tech. Batch : 2010-2014. : Information Technology
COURSE FILE (COURSE PLAN) Year : 2012-13 Sem: ODD Faculty Details Name of the Faculty : Mullai.P & Yaashuwanth.C Designation : Assistant Professor ( OG. ),Assistant Professor (OG) Department : Information
How To Deploy Office 2016 With Office 2016 Deployment Tool
How to deploy Office 2016 using SCCM 2012 R2 In this article we will see how to deploy Office 2016 using SCCM 2012 R2. Along with Office 2016, Microsoft has released office 2016 deployment tool. The Office
Access It! Universal Web Client Integration
Page 1 of 6 Last Updated: Friday, November 16, 2012 Access It! Universal Web Client Integration Overview This document outlines the steps needed to setup the Access It! Universal Web Client. The following
DP-313 Wireless Print Server
DP-313 Wireless Print Server Quick Installation Guide TCP/IP Printing (LPR for Windows 95/98/Me/2000) Rev. 03 (August, 2001) Copyright Statement Trademarks Copyright 1997 No part of this publication may
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)
SECURE MOBILE ACCESS MODULE USER GUIDE EFT 2013
SECURE MOBILE ACCESS MODULE USER GUIDE EFT 2013 GlobalSCAPE, Inc. (GSB) Address: 4500 Lockhill-Selma Road, Suite 150 San Antonio, TX (USA) 78249 Sales: (210) 308-8267 Sales (Toll Free): (800) 290-5054
Ipswitch Client Installation Guide
IPSWITCH TECHNICAL BRIEF Ipswitch Client Installation Guide In This Document Installing on a Single Computer... 1 Installing to Multiple End User Computers... 5 Silent Install... 5 Active Directory Group
Subscribe to RSS in Outlook 2007. Find RSS Feeds. Exchange Outlook 2007 How To s / RSS Feeds 1of 7
Exchange Outlook 007 How To s / RSS Feeds of 7 RSS (Really Simple Syndication) is a method of publishing and distributing content on the Web. When you subscribe to an RSS feed also known as a news feed
How to install Small Business Server 2003 in an existing Active
Page 1 of 6 How to install Small Business Server 2003 in an existing Active Directory domain INTRODUCTION This article describes how to install a Microsoft Windows Small Business Server (SBS) 2003-based
Organizing and Managing Email
Organizing and Managing Email Outlook provides several tools for managing email, including folders, rules, and categories. You can use these tools to help organize your email. Using folders Folders can
Active Directory Software Deployment
APPLICATION N0TE ST-0128 March 24, 2006 Product: Active Directory / PCM Deployment System version: ShoreTel 6 Active Directory Software Deployment Courtesy of: Dylan Moser with LANtelligence Inc. This
RemoteApp Reference Guide. Outline
Outline System Requirements... 1 About RemoteApp... 1 Use of RemoteApp... 2 Launching a program with RemoteApp... 2 Using Multiple RemoteApp Programs... 3 RemoteApp and CDs, DVDs, USB Drives, Portable
Network Printing In Windows 95/98/ME
Network Printing In Windows 95/98/ME If you are using Windows 2000/ XP: To install a printer on your network using D-Link Print Server or DI-series router with built-in print server you do not need to
Forms Printer User Guide
Forms Printer User Guide Version 10.51 for Dynamics GP 10 Forms Printer Build Version: 10.51.102 System Requirements Microsoft Dynamics GP 10 SP2 or greater Microsoft SQL Server 2005 or Higher Reporting
Step-by-step installation guide for monitoring untrusted servers using Operations Manager ( Part 3 of 3)
Step-by-step installation guide for monitoring untrusted servers using Operations Manager ( Part 3 of 3) Manual installation of agents and importing the SCOM certificate to the servers to be monitored:
Creating a Java application using Perfect Developer and the Java Develo...
1 of 10 15/02/2010 17:41 Creating a Java application using Perfect Developer and the Java Development Kit Introduction Perfect Developer has the facility to execute pre- and post-build steps whenever the
