Getting Started with Windows Mobile Development Windows Mobile SDK C#
|
|
|
- Jocelin Harrison
- 10 years ago
- Views:
Transcription
1 Getting Started with Windows Mobile Development Windows Mobile SDK C# Contents Overview... 2 Target Audience... 2 Feedback... 2 System Prerequisites... 3 Installations... 5 Creating Your First Zebra Mobile Application... 6 Deploying Your Mobile Application See Also... 32
2 Overview This document demonstrates the process of designing a Windows Mobile application using the ZebraLink Multiplatform SDK. The videos' contents demonstrate creating the user interface, adding code in C# to the project, running the project in a Windows Mobile Device Simulator, packaging the project and finally deploying to a real Windows Mobile device. The sample code used in this guide is from the sample code article (SA95) which is available for download to all registered members of the Zebra ISV Program here on the Zebra Support Portal. For information on joining the ISV Program contact a Program manager in your area. Details here. This file is available in a Chinese-language version here. 中 文 版 本 可 在 这 里 找 到 This file is available in a Spanish-language version here. Este archivo esta disponible en Español - oprima aquí. This file is available in a Portuguese-language version here. Este ficheiro está disponível na versão Portuguesa, clique aqui. Target Audience The information delivered in this document assumes the reader has reasonable technical competence covering Microsoft Windows and Mobile device environments, core programming concepts and rationales. Feedback We value all feedback. Please rate the article and then add your comments/suggestions in the text field that appears.
3 System Prerequisites The following system prerequisites must be satisfied in order to complete this tutorial. Java Runtime Environment For more information including system prerequisites and download links for Java, click here. Microsoft Visual Studio 2008 Professional Edition Microsoft Visual Studio is the integrated development environment (I.D.E.) used to develop applications for Windows Mobile. Note: Visual Studio 2008 Express Edition is not compatible with the Microsoft Mobile Development Tool Kit which is a requirement for developing applications for Windows Mobile platform. Microsoft.NET Compact Framework 3.5 The Microsoft.NET Compact Framework 3.5 includes everything you need to test.net Compact Framework (Versions 1, 2 and 3.5) applications. For more information including system prerequisites and download links for.net Compact Framework, click here. Microsoft Windows Mobile 6 Professional SDK The toolkit is distributed free of charge by Microsoft. It adds sample code, header and library files, emulator images and tools to Visual Studio that let you build applications for Windows Mobile 6. For more information including system prerequisites and download links, click here. Microsoft Windows Mobile Development Tool Kit The toolkit is distributed free of charge by Microsoft. It includes documentation, sample code, code library files and emulator images and tools required to develop applications for Windows Mobile. For more information including system prerequisites and download links, click here. Microsoft Windows Mobile Active Sync or Windows Vista Mobile Device Center Activesync / Windows Mobile Device Center are required to deploy applications to a Windows Mobile device. For more information including system prerequisites and download links for ActiveSync, click here. Windows Mobile Device Center replaces ActiveSync when developing and deploying when using Windows Vista. For more information including system prerequisites and download links for Windows Mobile Device Center, click here. Zebra Multiplatform SDK The Zebra Multiplatform SDK contains all the required components to develop applications for Zebra label printers. The SDK includes a Microsoft.Net library (.dll) which provides the means to scan for, connect to and print on Zebra label printers. For more information, including system prerequisites and download links for Zebra Multiplatform SDK, click here.
4 Zebra Network-Enabled Label Printer In order to fully test the application created during the course of this tutorial, a network-enabled Zebra printer capable of understanding ZPL or CPCL. Bluetooth connectivity is available through the Zebra Multiplatform SDK and covered in other available tutorials. For more information on Zebra label printers, click here. Windows Mobile Device Whilst the Windows Mobile Emulator included in the Windows Mobile Development Toolkit satisfies most of the anticipated requirements for developing against Windows Mobile, it is recommended that all development is fully tested against a physical device. Note: For the list of printers and mobile devices that are supported by the Zebra Multiplatform SDK, click here.
5 Installations All the items listed in the System Prerequisites must be installed. The default installation options for all these prerequisites are satisfactory.
6 Creating Your First Zebra Mobile Application You will be guided on how to create a mobile application that allows the handheld device to establish a TCP connection with a Zebra mobile printer. 1. Launch Microsoft Visual Studio Go to Start -> Programs -> Microsoft Visual Studio > Microsoft Visual Studio Create a Smart Device Project. a. Click on File -> New -> Project. b. A New Project dialog appears. In the Project Types pane, expand Visual C# and select Smart Device, then select the Smart Device Project template.
7 c. Enter IP Connection in the Name field. Choose your project location and make sure the Create directory for solution checkbox is checked. Click OK. d. On the Add New Smart Device Project dialog, select Windows Mobile 6 Professional SDK, then select.net Compact Framework Version 3.5. If these options are not available, refer to system prerequisites on instructions on how to install these options. Select Device Application template, and then click OK.
8 e. You now have a project opened in the IDE. The Form Design is opened by default.
9 3. Design the Form Layout. a. Rename the form name in the solution explorer. Right-click Form1.cs and select Rename. Enter IPConnectionForm.cs and hit Enter. Click Yes when prompted to rename all references of Form1.
10 b. Right-click anywhere on the form and select Properties. This brings up the Properties table on the bottom right panel. Enter IP Connection Demo in the Text field. This changes the text on the title bar. c. On the Properties table, set MinimizeBox to False. This changes the x in the upper right corner of the form to ok which when clicked, closes the application instead of minimizing it. d. We will use a Label to create a status bar for the TCP connection. Expand the Toolbox to the left, click and drag a Label onto the form. Position the label at the top and stretch it to fit the width of the form.
11 e. In the Properties window, set Text to blank, and TextAlign to TopCenter. f. Insert a Label to the bottom left of the status bar, and set its Text to IP Address:. g. Insert another Label to the bottom of the IP Address: label, and set its Text to Port:. The form layout should now look like this.
12 h. Drag a TextBox from the Toolbox and position it to the right of the IP Address: label. i. Add another TextBox to the right of the Port: label, and set its Text to The form layout should now look like this.
13 j. Double click the bottom left of the screen where the light blue bar is to create a menu button. Type Connect and hit Enter. The layout should look like this.
14 4. Putting Them Altogether. a. Rename the status bar label added in step 3d. Click on the label. On the properties page at the bottom right, enter statusbar in the Name field.
15 b. Select the text box to the right of the IP Address: label. Change its Name to IPTextBox.
16 c. Change the Name of the textbox that is next to the Port: label to porttextbox.
17 d. Change the Name of the Connect button to connectbutton.
18 e. With the Connect button still selected, click on the Lightning icon on the Properties panel to display the Events for the button. Click the Click event and type onconnectbuttonclick and hit enter. The source code for the form will be displayed.
19
20 f. At this point, you might want to enable the line number before you insert our sample source code later. To do so, click on Tools -> Options.
21 g. An Options dialog is displayed. Expand Text Editor on the left panel, click on C#, and on the right, check the Line numbers option.
22 h. Replace the entire source code in IPConnectionForm.cs with the contents of the IPConnectionForm.cs file from the Connecting Over IP Windows Mobile SDK C# sample code. The sample code used in this guide is from the sample code article (SA95) which is available for download to all registered members of the Zebra ISV Program here on the Zebra Support Portal. For information on joining the ISV Program contact a Program manager in your area. Details here. i. Click on the Start Debugging button to build and run the project.
23 j. You will see a list of errors caused by missing dependencies.
24 k. To add the dependencies, on the Solution Explorer on the right, expand the IP Connection project, rightclick References, and Add Reference to bring up the Add Reference dialog.
25 l. Select the Browse tab. Assuming you have the ZebraLink MultiPlatform SDK installed at the default location, browse to C:\Program Files\Zebra Technologies\zebralink_sdk\windows_mobile\v \lib.
26 m. Select all three dll files ZebraBluetoothAdapter.dll, ZebraPlatformUtil.dll and ZSDK_API.dll and click ok. n. Add another reference. This time, browse to C:\Program Files\Zebra Technologies\zebralink_sdk\windows_mobile\v \third_party, select InTheHand.Net.Personal.dll and click ok. o. On the Solution Explorer, you should now see four new dll files added under References.
27 p. Click on the Start Debugging button to build and run the project. There should be no errors reported. A Deploy IP Connection dialog should appear.
28 q. Select Windows Mobile 6 Professional Emulator, and click Deploy. This launches the application in the emulator. It will take a while for the emulated device to fully start up and load the application.
29 r. Congratulations. You now have your first Zebra mobile application running on an emulator! To exit the application, simply go to File -> Exit. When prompted to save emulator state, click No.
30 Deploying Your Mobile Application After your Smart Device project is built and completed, it may be packaged into a CAB file for deployment on a Smart Device. 1. While your current Smart Device project is open, add a new Smart Device CAB Project to it. Select File -> New Project -> Other Project Types -> Setup and Deployment -> Smart Device CAB Project. 2. Provide a name for your CAB file. 3. Next to Solution, select Add to Solution. This will create a CAB project in your current workspace.
31 4. Once the CAB project has been created, right click the CAB project and select Add -> Project Output. The following dialog will appear: 5. Select Content Files. This will add all your project dependencies under Content Files. 6. Select Primary output. This will add your target application to the CAB file. 7. Right click your CAB project then select Build or Rebuild. This will build your CAB file. 8. Copy this file to your device and run it to install your application and related dependencies.
32 See Also For the list of printers and mobile devices that are supported by the ZebraLink Multiplatform SDK, click here. For further ZebraLink SDK enabled Windows Mobile Device sample code and applications, refer to the Zebra Support portal. For information on ZebraLink Multiplatform SDK for Windows Mobile Devices, click here. For further information on ZPL, see the ZPL Programming Guide on the Zebra website. For further information on CPCL, see the CPCL Programming Guide on the Zebra website. For any further information, sample code, white papers, solutions or to request further content, visit the Zebra Support portal. Document Control Version Date Description Nov-10 Initial Release Feb-11 See Also section updates Jun-11 Updated disclaimer comments Jul-12 Updated Chinese link into document Sep-12 Updated Spanish and Portuguese link into document All links and information correct at time of writing Created for the Zebra Global ISV Program by Zebra Development Services *Specifications subject to change without notice ZIH Corp. EPL, APL, ZBI 2.0, ZBI-Developer, Element Energy Equalizer, E 3, ZebraLink, EPL2, ZebraNet, and all product names and numbers are Zebra trademarks, and Zebra, the Zebra head graphic stripe, ZPL, ZebraNet, and ZPL II are registered trademarks of ZIH Corp. All rights reserved. Unicode is a trademark of Unicode, Inc. CG Triumvirate is a trademark of Agfa Division, Miles In c. IBM is a registered trademark of International Business Machines Corporation. UFST is a trademark of Monotype Imaging Inc. a nd may be registered in certain jurisdictions. All other trademarks are the property of their respective owners. Corporate Headquarters Asia-Pacific Headquarters EMEA Headquarters Latin America Headquarters (0) [email protected] [email protected] [email protected] [email protected] Other Locations USA: California, Georgia, Rhode Island, Texas, Wisconsin Europe: France, Germany, Italy, Netherlands, Poland, Spain, Sweden Asia Pacific: Australia, China, Japan, South Korea Latin America: Argentina, Brazil, Florida (USA), Mexico Africa/Middle East: India, Russia, South Africa, United Arab Emirates GSA#: GS-35F-0268N 13919L-001 Rev. 9 (11/08)
A Zebra Technologies White Paper. Why is my printer printing code?
A White Paper Why is my printer printing code? Overview This white paper addresses some common reasons why a Zebra printer would print code (i.e. printer commands) as text rather than a properly formatted
Link-OS Printer Operating System Syslog AppNote 2456935.546169 October 5, 2014
Link-OS Printer Operating System Syslog AppNote 2456935.546169 October 5, 2014 INTRODUCTION Syslog is an industry standard device management system for message logging. For a general understanding of syslog,
Zebra Link-OS Environment Version 2.0
Zebra Link-OS Environment Version 2.0 To meet changing expectations and growing demands for devices that are mobile, intelligent and connected to the Cloud, Zebra Technologies has created a new software
A Zebra Technologies White Paper. Bar Code Printing from Oracle WMS and MSCA
A Zebra Technologies White Paper Bar Code Printing from Oracle WMS and MSCA 2 A Zebra Technologies White Paper Executive Summary Bar code output from the Oracle E-Business Suite environment is traditionally
Network Monitor - ZXP
san A Zebra Technologies White Paper Network Monitor - ZXP Overview ZXP Network Monitor is an application that monitors the status of ZXP printers on a network via SNMP, and displays the results in a table
A Zebra Technologies White Paper. Creating and processing encrypted files
A White Paper Creating and processing encrypted files This document contains some basic instructions outlining the steps required to create and execute an encrypted file on a QLn320 printer. It also briefly
Using SAP Smart Forms for Bar Code Label Printing from mysap Business Suite A ZEBRA BLACK&WHITE
Using SAP Smart Forms for Bar Code Label Printing from mysap Business Suite A ZEBRA BLACK&WHITE PAPER Copyrights 2007 ZIH Corp. All product names and numbers are Zebra trademarks, and Zebra and the Zebra
Magnetic Stripe Reader on ZQ500 Series Printers AppNote 2456936.909896 October 6, 2014
Magnetic Stripe Reader on ZQ500 Series Printers AppNote 2456936.909896 October 6, 2014 INTRODUCTION This document details the Magnetic Card Reader (MCR) accessory on the ZQ500 series, which can read magnetic
Bar Code Printing Options for Zebra Printers with Oracle WMS and MSCA A ZEBRA BLACK&WHITE
Bar Code Printing Options for Zebra Printers with Oracle WMS and MSCA A ZEBRA BLACK&WHITE PAPER Copyrights 2007 ZIH Corp. ZebraDesigner and all product names and numbers are Zebra trademarks and Zebra,
Zebra Lab Labeling Solutions for Healthcare
Zebra Lab Labeling Solutions for Healthcare Zebra s thermal printing solutions produce reliable bar coded labels to help labs safeguard patient safety through accurate, private, and efficient specimen
Reducing Cycle Times and Work in Process Management Costs: Aerospace and Defense Industry
Reducing Cycle Times and Work in Process Management Costs: Aerospace and Defense Industry CYCLE TIMES AND COST CHALLENGES In Aerospace and Defense environments, the longer work stays in process, the longer
RACK AND CONTAINER TRACKING SOLUTION
RACK AND CONTAINER TRACKING SOLUTION Rack and Container Tracking Solution Overview Zebra Technologies is the market leader in providing solutions for tracking and managing assets, people and events through
ZebraLink BlackBerry smartphone & Windows Mobile Utility. Tutorial & Users Guide
ZebraLink BlackBerry smartphone & Windows Mobile Utility Tutorial & Users Guide 2010 ZIH Corp. The copyrights in this manual and the software and/or firmware in the label printer described therein are
Barcode Labeling in the Lab Closing the Loop of Patient Safety
Barcode Labeling in the Lab Closing the Loop of Patient Safety INTRODUCTION Detecting and preventing errors that threaten patient safety is a closed-loop process that begins at the point of care, extends
Step 4. Advanced inventory and storage capabilities
6 STEPS TO FLAWLESS FULFILMENT Best practices for integrating mobile, wireless and data capture technologies into warehouse management Step 4. Advanced inventory and storage capabilities Click here to
Issues and Opportunities for Introducing Bar Code Systems in Hospitals A ZEBRA BLACK&WHITE
Issues and Opportunities for Introducing Bar Code Systems in Hospitals A ZEBRA BLACK&WHITE PAPER Copyrights 2006 ZIH Corp. Zebra is a registered trademark of ZIH Corp. All rights reserved. All other trademarks
Barcode-Based Patient Safety Initiatives in Hospital Pharmacies
Barcode-Based Patient Safety Initiatives in Hospital Pharmacies INTRODUCTION Maximizing patient safety and improving the quality of care is the ultimate goal for healthcare providers and extends to the
RTLS 101 What It Is and Why You Need It
RTLS 101 What It Is and Why You Need It RTLS 101 WHAT IT IS AND WHY YOU NEED IT In business, knowledge is power, and with it comes efficiency, productivity, safety, and profits. Real Time Locating Systems
Zebra Link-OS Environment Version 2.0
Zebra Link-OS Environment Version 2.0 To meet changing expectations and growing demands for devices that are mobile, intelligent and connected to the Cloud, Zebra Technologies has created a new software
DX8100 Series Symantec AntiVirus Corporate Edition Installation Instructions. Version 10.1.6
DX8100 Series Symantec AntiVirus Corporate Edition Installation Instructions Version 10.1.6 DX8100 DX8100 Digital Video Recorder C2643M (4/08) Contents Description...........................................................................................................
Agilent N5970A Interactive Functional Test Software: Installation and Getting Started
Agilent N5970A Interactive Functional Test Software: Installation and Getting Started Application Note The N5970A Interactive Functional Test Software along with the 8960 Series 10 (E5515C) wireless communications
Getting Started with the LabVIEW Mobile Module
Getting Started with the LabVIEW Mobile Module Contents The LabVIEW Mobile Module extends the LabVIEW graphical development environment to Mobile devices so you can create applications that run on Windows
CENTRALIZED DEVICE MANAGEMENT HELPS DRIVE BUSINESS EFFICIENCIES Improve device security, availability and cost-effectiveness
CENTRALIZED DEVICE MANAGEMENT HELPS DRIVE BUSINESS EFFICIENCIES Improve device security, availability and cost-effectiveness CENTRALIZED DEVICE MANAGEMENT HELPS DRIVE BUSINESS EFFICIENCIES IMPROVE DEVICE
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
Introduction to Android Development
2013 Introduction to Android Development Keshav Bahadoor An basic guide to setting up and building native Android applications Science Technology Workshop & Exposition University of Nigeria, Nsukka Keshav
ZEBRA PRINTER PORTFOLIO: PRODUCTS AND SOLUTIONS
ZEBRA PRINTER PORTFOLIO: PRODUCTS AND SOLUTIONS SEE MORE. DO MORE. The global business environment is more complex and competitive than ever before. Organizational leaders are struggling to do more with
Microsoft Access Rollup Procedure for Microsoft Office 2007. 2. Click on Blank Database and name it something appropriate.
Microsoft Access Rollup Procedure for Microsoft Office 2007 Note: You will need tax form information in an existing Excel spreadsheet prior to beginning this tutorial. 1. Start Microsoft access 2007. 2.
Combination Chart Extensible Visualizations. Product: IBM Cognos Business Intelligence Area of Interest: Reporting
Combination Chart Extensible Visualizations Product: IBM Cognos Business Intelligence Area of Interest: Reporting Combination Chart Extensible Visualizations 2 Copyright and Trademarks Licensed Materials
NovaBACKUP xsp Version 15.0 Upgrade Guide
NovaBACKUP xsp Version 15.0 Upgrade Guide NovaStor / November 2013 2013 NovaStor, all rights reserved. All trademarks are the property of their respective owners. Features and specifications are subject
Scribe Online Integration Services (IS) Tutorial
Scribe Online Integration Services (IS) Tutorial 7/6/2015 Important Notice No part of this publication may be reproduced, stored in a retrieval system, or transmitted in any form or by any means, photocopying,
Integrating CaliberRM with Software Configuration Management Tools
Integrating CaliberRM with Software Configuration Management Tools A Borland White Paper By Jenny Rogers, CaliberRM Technical Writer January 2002 Contents Introduction... 3 Enabling SCM for a Project...
WD Sentinel DX4000. Small Office Storage Server. Administrator s Quick Install Guide
WD Sentinel DX4000 Small Office Storage Server Administrator s Quick Install Guide Kit Contents WD Sentinel DX4000 Ethernet cable AC adapter About Your WD Product Kit Contents WD Sentinel DX4000 Small
Working with SQL Server Integration Services
SQL Server Integration Services (SSIS) is a set of tools that let you transfer data to and from SQL Server 2005. In this lab, you ll work with the SQL Server Business Intelligence Development Studio to
ZebraDesigner Fonts and Graphics Downloader. User Guide 13859L-002
ZebraDesigner Fonts and Graphics Downloader User Guide 13859L-002 2 2009 ZIH Corp. The copyrights in this manual and the software and/or firmware in the printer described therein are owned by ZIH Corp.
Tutorial: Android Object API Application Development. SAP Mobile Platform 2.3 SP02
Tutorial: Android Object API Application Development SAP Mobile Platform 2.3 SP02 DOCUMENT ID: DC01939-01-0232-01 LAST REVISED: May 2013 Copyright 2013 by Sybase, Inc. All rights reserved. This publication
BioWin Network Installation
BioWin Network Installation Introduction This document outlines the procedures for installing the network version of BioWin. There are three parts to the network version installation: 1. The installation
Extensible Visualizations. Product: IBM Cognos Business Intelligence Area of Interest: Reporting
Extensible Visualizations Product: IBM Cognos Business Intelligence Area of Interest: Reporting Extensible Visualizations 2 Copyright and Trademarks Licensed Materials - Property of IBM. Copyright IBM
Microsoft Office Access 2007 Basics
Access(ing) A Database Project PRESENTED BY THE TECHNOLOGY TRAINERS OF THE MONROE COUNTY LIBRARY SYSTEM EMAIL: [email protected] MONROE COUNTY LIBRARY SYSTEM 734-241-5770 1 840 SOUTH ROESSLER
Troubleshooting Guide
Enable WMI after applying SP2 for XP Company web site: Support email: support@ Support telephone: +44 20 3287-7651 +1 646 233-1163 2 This tutorial will guide you on enabling WMI after applying Service
How To Configure CU*BASE Encryption
How To Configure CU*BASE Encryption Configuring encryption on an existing CU*BASE installation INTRODUCTION This booklet was created to assist CU*Answers clients with the configuration of encrypted CU*BASE
How to setup a network printer using HP Universal Printer Driver
How to setup a network printer using HP Universal Printer Driver This patch is only usable on HP T5730 Thin Client and up. The Printer also has to be networked and be PCL6 driver compatible in order to
Getting Started with the LabVIEW Mobile Module Version 2009
Getting Started with the LabVIEW Mobile Module Version 2009 Contents The LabVIEW Mobile Module extends the LabVIEW graphical development environment to Mobile devices so you can create applications that
Ansur Test Executive. Users Manual
Ansur Test Executive Users Manual April 2008 2008 Fluke Corporation, All rights reserved. All product names are trademarks of their respective companies Table of Contents 1 Introducing Ansur... 4 1.1 About
Installation Guide and Machine Setup
Installation Guide and Machine Setup Page 1 Browser Configurations Installation Guide and Machine Setup The first requirement for using CURA is to ensure that your browser is set up accurately. 1. Once
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:
Topaz Installation Sheet
Topaz Installation Sheet P/N 460924001E ISS 08FEB12 Content Introduction... 3 Recommended minimum requirements... 3 Setup for Internet Explorer:... 4 Topaz installation... 10 Technical support... 14 Copyright
WD Sentinel DX4000. Small Office Storage Server Administrator s Quick Install Guide
0 WD Sentinel DX4000 Small Office Storage Server Administrator s Quick Install Guide 1 Introduction This quick install guide steps the Administrator through the procedures for setting up the WD Sentinel
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
Getting Started Guide
Getting Started Guide Maximizer is a contact manager designed to help individuals, home offices, and small businesses succeed by helping them maximize their time, create satisfied customers, and increase
Maximizing the Use of Slide Masters to Make Global Changes in PowerPoint
Maximizing the Use of Slide Masters to Make Global Changes in PowerPoint This document provides instructions for using slide masters in Microsoft PowerPoint. Slide masters allow you to make a change just
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
Creating Mailing Lables in IBM Cognos 8 Report Studio
Tip or Technique Creating Mailing Lables in IBM Cognos 8 Report Studio Product(s): IBM Cognos 8.4 Area of Interest: Reporting Creating Mailing Lables in IBM Cognos 8 Report Studio 2 Copyright and Trademarks
Install Pocket Inventory in a Windows Server 2003 R2 Standard Environment
One Blue Hill Plaza, 16th Floor, PO Box 1546 Pearl River, NY 10965 1-800-PC-AMERICA, 1-800-722-6374 (Voice) 845-920-0800 (Fax) 845-920-0880 Install Pocket Inventory in a Windows Server 2003 R2 Standard
ZebraNet Bridge Enterprise. User Guide 13743L-004
ZebraNet Bridge Enterprise User Guide 13743L-004 2009 ZIH Corp. The copyrights in this manual and the software and/or firmware in the label printer described therein are owned by ZIH Corp. Unauthorized
Tutorial: Android Object API Application Development. SAP Mobile Platform 2.3
Tutorial: Android Object API Application Development SAP Mobile Platform 2.3 DOCUMENT ID: DC01939-01-0230-01 LAST REVISED: March 2013 Copyright 2013 by Sybase, Inc. All rights reserved. This publication
For Introduction to Java Programming, 5E By Y. Daniel Liang
Supplement H: NetBeans Tutorial For Introduction to Java Programming, 5E By Y. Daniel Liang This supplement covers the following topics: Getting Started with NetBeans Creating a Project Creating, Mounting,
Theatres/Channels All theatres. Indirect channel. Author/Owner [email protected]
Getting Started - Partner PRM Administrators Day 1 December 2011 Avaya Proprietary. Use pursuant to Company instructions Printed copies are not controlled. Refer to the latest version at http:/www.salesforce.com
Installation Guide. 85070E Dielectric Probe Kit 85071E Materials Measurement Software
Installation Guide This guide provides instructions for installing and configuring the following software products: 85070E Dielectric Probe Kit 85071E Materials Measurement Software Agilent Part Number:
How to Configure Windows 8.1 to run ereports on IE11
How to Configure Windows 8.1 to run ereports on IE11 Description: Windows 8.1 ships with IE10, but can be updated to IE11. There is a special mode in IE11 called Enterprise Mode that can be used to emulate
ClickView Digital Signage User Manual
ClickView Digital Signage User Manual Table of Contents 1. What is ClickView Digital Signage?... 3 2. Where do I find ClickView Digital Signage?... 3 2.1. To find ClickView Digital Signage... 3 3. How
Microsoft PowerPoint 2010 Computer Jeopardy Tutorial
Microsoft PowerPoint 2010 Computer Jeopardy Tutorial 1. Open up Microsoft PowerPoint 2010. 2. Before you begin, save your file to your H drive. Click File > Save As. Under the header that says Organize
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
Issue Tracking Anywhere Installation Guide
TM Issue Tracking Anywhere Installation Guide The leading developer of version control and issue tracking software Table of Contents Introduction...3 Installation Guide...3 Installation Prerequisites...3
Tutorial: BlackBerry Object API Application Development. Sybase Unwired Platform 2.2 SP04
Tutorial: BlackBerry Object API Application Development Sybase Unwired Platform 2.2 SP04 DOCUMENT ID: DC01214-01-0224-01 LAST REVISED: May 2013 Copyright 2013 by Sybase, Inc. All rights reserved. This
NetIQ. How to guides: AppManager v7.04 Initial Setup for a trial. Haf Saba Attachmate NetIQ. Prepared by. Haf Saba. Senior Technical Consultant
How to guides: AppManager v7.04 Initial Setup for a trial By NetIQ Prepared by Haf Saba Senior Technical Consultant Asia Pacific 1 Executive Summary This document will walk you through an initial setup
Application Notes for VTech 1-Line and 2-Line Analog Hotel Phones with Avaya IP Office 8.1 and Voicemail Pro 8.1 Issue 1.0
Avaya Solution & Interoperability Test Lab Application Notes for VTech 1-Line and 2-Line Analog Hotel Phones with Avaya IP Office 8.1 and Voicemail Pro 8.1 Issue 1.0 Abstract These Application Notes describe
SelectSurvey.NET Developers Manual
Developers Manual (Last updated: 6/24/2012) SelectSurvey.NET Developers Manual Table of Contents: SelectSurvey.NET Developers Manual... 1 Overview... 2 General Design... 2 Debugging Source Code with Visual
SOLIDWORKS Education Edition 2015-2016 Installation Instructions Preparation
SOLIDWORKS Education Edition 2015-2016 Installation Instructions Preparation These installation instructions apply to SolidNetWork (SNL), floating licenses of: o SOLIDWORKS Education Edition products:
Connecting System Platform to TOP Server. Using the SuiteLink DI Object
Connecting System Platform to TOP Server Using the SuiteLink DI Object Page 2 of 23 Table of Contents INTRODUCTION 3 Intended Audience 3 BASIC CONNECTION BETWEEN SYSTEM PLATFORM AND TOP SERVER: 4 Installing
Release Notes: PowerChute plus for Windows 95 and Windows 98
: PowerChute plus for Windows 95 and Windows 98 These release notes supplement the User s Guide: PowerChute plus, Version 5.0.2, for Windows 95 and Windows 98 (pc98ug.pdf) and the Installation Guide: PowerChute
BID2WIN Workshop. Advanced Report Writing
BID2WIN Workshop Advanced Report Writing Please Note: Please feel free to take this workbook home with you! Electronic copies of all lab documentation are available for download at http://www.bid2win.com/userconf/2011/labs/
USB DRIVER INSTALLATION GUIDE
USB DRIVER INSTALLATION GUIDE Use these instructions to install the USB drivers and Microsoft synchronization software for your Pathfinder 6057 printer. You need these utilities for your printer and computer
Install MS SQL Server 2012 Express Edition
Install MS SQL Server 2012 Express Edition Sohodox now works with SQL Server Express Edition. Earlier versions of Sohodox created and used a MS Access based database for storing indexing data and other
How To Install Safari Antivirus On A Dv8000 Dv Recorder On A Pc Or Macbook Or Ipad (For A Pc) On A Microsoft Dv8 (For Macbook) On An Ipad Or Ipa (
Using Symantec AntiVirus Corporate Edition Version 9.0 Software On a DX8000 DVR DX8000 Digital Video Recorder C1613M-A (12/04) Contents Using Symantec AntiVirus Corporate Edition 9.0 Software.....................................................................5
Portions of this product were created using LEADTOOLS 1991-2009 LEAD Technologies, Inc. ALL RIGHTS RESERVED.
Installation Guide Lenel OnGuard 2009 Installation Guide, product version 6.3. This guide is item number DOC-110, revision 1.038, May 2009 Copyright 1992-2009 Lenel Systems International, Inc. Information
How To Develop A Mobile Application On Sybase Unwired Platform
Tutorial: Windows Mobile Application Development Sybase Unwired Platform 2.1 DOCUMENT ID: DC01285-01-0210-01 LAST REVISED: December 2011 Copyright 2011 by Sybase, Inc. All rights reserved. This publication
Telelogic DASHBOARD Installation Guide Release 3.6
Telelogic DASHBOARD Installation Guide Release 3.6 1 This edition applies to 3.6.0, Telelogic Dashboard and to all subsequent releases and modifications until otherwise indicated in new editions. Copyright
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
http://netbeans.org/kb/docs/java/gui-functionality.html?print=yes
Page 1 of 6 Introduction to GUI Building Contributed by Saleem Gul and Tomas Pavek, maintained by Ruth Kusterer and Irina Filippova This beginner tutorial teaches you how to create a simple graphical user
Tutorial: Hybrid App Package Development. SAP Mobile Platform 2.3
Tutorial: Hybrid App Package Development SAP Mobile Platform 2.3 DOCUMENT ID: DC01942-01-0230-01 LAST REVISED: March 2013 Copyright 2013 by Sybase, Inc. All rights reserved. This publication pertains to
and technology engineered for agile business
IFS Applications architecture and technology engineered for agile business OUR SOLUTION S DNA When we first set out to create IFS Applications over 25 years ago, our goal was to make the most usable business
USB DRIVER INSTALLATION GUIDE
USB DRIVER INSTALLATION GUIDE Use these instructions to install the USB and Microsoft ActiveSync synchronization software for your Monarch Pathfinder Ultra Platinum 6039 printer and computer to communicate.
Allworx OfficeSafe Operations Guide Release 6.0
Allworx OfficeSafe Operations Guide Release 6.0 No part of this publication may be reproduced, stored in a retrieval system, or transmitted, in any form or by any means, electronic, mechanical, photocopy,
Appendix A How to create a data-sharing lab
Appendix A How to create a data-sharing lab Creating a lab involves completing five major steps: creating lists, then graphs, then the page for lab instructions, then adding forms to the lab instructions,
Microsoft Publisher 2010: Web Site Publication
Microsoft Publisher 2010: Web Site Publication Application Note Team 6 Darci Koenigsknecht November 14, 2011 Table of Contents ABSTRACT... 3 INTRODUCTION... 3 KEYWORDS... 3 PROCEDURE... 4 I. DESIGN SETUP...
Image Lab Software for the GS-900 Densitometer
Image Lab Software for the GS-900 Densitometer Quick Start Guide Catalog # 170-9690 Bio-Rad Technical Support For help and technical advice, please contact the Bio-Rad Technical Support department. In
CaliberRM / LDAP Integration. CaliberRM
CaliberRM / LDAP Integration CaliberRM Borland Software Corporation 100 Enterprise Way Scotts Valley, California 95066-3249 www.borland.com Made in Borland Copyright 2004 Borland Software Corporation.
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,
NovaBACKUP xsp Version 12.2 Upgrade Guide
NovaBACKUP xsp Version 12.2 Upgrade Guide NovaStor / August 2011 Rev 20110815 2011 NovaStor, all rights reserved. All trademarks are the property of their respective owners. Features and specifications
Microsoft Virtual Labs. Windows Embedded CE 6.0 Writing C# Managed Applications
Microsoft Virtual Labs Windows Embedded CE 6.0 Writing C# Managed Applications Table of Contents Windows Embedded CE 6.0 Writing C# Managed Applications... 1 Exercise 1 Creating a Platform Image...2 Exercise
Installing OneStop Reporting Products
Installing OneStop Reporting Products Contents 1 Introduction 2 Product Overview 3 System Requirements 4 Deployment 5 Installation 6 Appendix 2010 OneStop Reporting http://www.onestopreporting.com [email protected]
XenDesktop Implementation Guide
Consulting Solutions WHITE PAPER Citrix XenDesktop XenDesktop Implementation Guide Pooled Desktops (Local and Remote) www.citrix.com Contents Contents... 2 Overview... 4 Initial Architecture... 5 Installation
Installing S500 Power Monitor Software and LabVIEW Run-time Engine
EigenLight S500 Power Monitor Software Manual Software Installation... 1 Installing S500 Power Monitor Software and LabVIEW Run-time Engine... 1 Install Drivers for Windows XP... 4 Install VISA run-time...
Creating Custom Crystal Reports Tutorial
Creating Custom Crystal Reports Tutorial 020812 2012 Blackbaud, Inc. This publication, or any part thereof, may not be reproduced or transmitted in any form or by any means, electronic, or mechanical,
The cloud server setup program installs the cloud server application, Apache Tomcat, Java Runtime Environment, and PostgreSQL.
GO-Global Cloud 4.1 QUICK START SETTING UP A WINDOWS CLOUD SERVER AND HOST This guide provides instructions for setting up a cloud server and configuring a host so it can be accessed from the cloud server.
Windows XP Chinese Character Support Installation Instruction
Windows XP Chinese Character Support Installation Instruction Windows XP has a utility to allow user to modify language sets for both multi-language input and viewing of foreign character sets. This document
