Lab 4-1: Replacing the Shell with a Custom Full Screen Browser Based UI

Size: px
Start display at page:

Download "Lab 4-1: Replacing the Shell with a Custom Full Screen Browser Based UI"

Transcription

1 Lab 4-1: Replacing the Shell with a Custom Full Screen Browser Based UI Objectives Prerequisites After completing this lab, you will be able to: Replace the Windows CE shell with a custom HTML based shell Clone a feature from the PUBLIC folder Before working on this lab, you must have: Understanding of Windows CE components and modules Understanding of basic Windows CE build process Estimated time to complete this lab: 60 minutes

2 2 Lab 4-1: Replacing the Shell with a Custom Full Screen Browser Based UI Lab Setup To complete this lab, you must have: A development workstation running Windows XP or Windows 2000 Platform Builder 5.0 installed

3 Lab 4-1: Replacing the Shell with a Custom Full Screen Browser Based UI 3 Exercise 1 Create MyIA Platform In this exercise you will use the New Platform Wizard to create a new platform to be used in subsequent exercises. Create a new platform Workspace 1. On the development workstation, open the Platform Builder application. On Start Menu (press Windows key or click Start on the Taskbar), select All Programs, then select Microsoft Windows CE 5.0, and then select Platform Builder. (there may also be a shortcut on the desktop) Platform Builder On the Platform Builder File menu, click New Platform to launch the New Platform Wizard:

4 4 Lab 4-1: Replacing the Shell with a Custom Full Screen Browser Based UI 3. Click Next. New Platform Wizard will prompt you for the name and location of the new Workspace being created. Enter the name of MyIA and click Next. 4. New Platform Wizard will prompt you for your platform BSP from the list of available BSPs.

5 Lab 4-1: Replacing the Shell with a Custom Full Screen Browser Based UI 5 5. Select EMULATOR:X86 and click Next. 6. New Platform Wizard will prompt you to select your design template from the available list of Design Templates: 7. Select Internet Appliance and click Finish. 8. Click Finish to confirm Step On the toolbar, select Emulator: x86_debug.

6 6 Lab 4-1: Replacing the Shell with a Custom Full Screen Browser Based UI 10. Build the Image by selecting Build OS and then Sysgen, or by clicking the Sysgen button on the toolbar. This may take up to 20 minutes to complete. 11. While the OS image is building, configure the connectivity options by selecting Target and then Connectivity Options from the menu. 12. Select Add Device, enter the New Target Device Name as My IA Emulator, and click Add. 13. In the Target Device Connectivity Options dialog select Emulator for both Download and Transport. 14. Click on the Download Settings button, and setup the screen size to 640x Click OK to confirm the changes, and then Apply in the Target Device Connectivity Options dialog. 16. Close the Target Device Connectivity Options dialog. 17. Wait for build to complete. 18. Once the build has finished, select Target and then Attach Device to download the image to the emulator. You should see the following:

7 Lab 4-1: Replacing the Shell with a Custom Full Screen Browser Based UI 7

8 8 Lab 4-1: Replacing the Shell with a Custom Full Screen Browser Based UI Exercise 2 Clone IESIMPLE In this exercise you will, clone the IESIMPLE sample application and add it to the MyIA platform. Note This exercise manually clones the IESIMPLE sample from the public folder. CE 5.0 has a cloning feature that allows items that can be added to the OS design to be cloned. Unfortunately IESIMPLE cannot be added to the OS design, so we must do the clone manually. Clone IESIMPLE 1. Disconnect Platform Builder from the Emulator by selecting Target and then Detach Device from the menu. 2. Create an empty project by selecting File and then New Project or File (CTRL+SHIFT+N) from the menu. 3. The New Project or File dialog will prompt you for the type and name of the new project. Select WCE Application. Enter the Project Name as IESHELL. Click OK. 4. Enter IESHELL for the Feature name. Fill in the other field or not as you see fit, and click Next.

9 Lab 4-1: Replacing the Shell with a Custom Full Screen Browser Based UI 9 5. Select An empty project and click Finish. 6. Using File Explorer, copy the.cpp,.h and.rc files in WINCE500\PUBLIC\IE\OAK\IESIMPLE to the newly created project directory - WINCE500\PBWorkspaces\MyIA\IESHELL. 7. Rename iesimple.rc to ieshell.rc in the new IESHELL directory. 8. Add the newly copied files to the IESHELL project. In Platform Builder select the File View and expand the Projects Branch.

10 10 Lab 4-1: Replacing the Shell with a Custom Full Screen Browser Based UI Right click on Source Files branch and select Add Files Add mainwnd.cpp. Right click on the Include Files branch and select Add Files Add mainwnd.h and resource.h. Right click on the Resource Files branch and select Add Files Add ieshell.rc. 9. Open the SOURCES editor by either: Selecting IESHELL, followed by the Project and then Settings menu item, or Right clicking on IESHELL and selecting Settings from the pop-up menu.

11 Lab 4-1: Replacing the Shell with a Custom Full Screen Browser Based UI Click on the C/C++ Tab and scroll down to the Include Directories item. 11. Enter (as one line): $(_WINCEROOT)\PUBLIC\IE\SDK\INC; $(_WINCEROOT)\PUBLIC\COMMON\OAK\INC; 12. Click OK. 13. The SOURCES file can also be edited directly as text. Right-click IESHELL and select Open, or Select IESHELL and use the Project and then Open item from the main menu.

12 12 Lab 4-1: Replacing the Shell with a Custom Full Screen Browser Based UI 14. Scroll to the end of the file and verify that the INCLUDES section has been added. 15. Add in the extra TARGETLIBS. TARGETTYPE=PROGRAM TARGETLIBS= \ $(_PROJECTROOT)\cesysgen\sdk\lib\$(_CPUINDPATH)\coredll.lib \ $(_PROJECTROOT)\cesysgen\sdk\lib\$(_CPUINDPATH)\wininet.lib \ $(_PROJECTROOT)\cesysgen\sdk\lib\$(_CPUINDPATH)\commctrl.lib \ $(_PROJECTROOT)\cesysgen\sdk\lib\$(_CPUINDPATH)\uuid.lib \ $(_PROJECTROOT)\cesysgen\sdk\lib\$(_CPUINDPATH)\ole32.lib \ $(_PROJECTROOT)\cesysgen\sdk\lib\$(_CPUINDPATH)\oleaut32.lib \ POSTLINK_PASS_CMD=postlink.bat PRELINK_PASS_CMD=prelink.bat Note We determined what target libs were required by examining WINCE500\PUBLIC\IE\CESYSGEN\makefile. Search for iesimple and you will see that it is built using $(OLELIBS), $(WININETLIB) and $(CCLIB). Further searching of the file for these macros reveals the underlying lib names required. 16. Save the changes by selecting File and then Save from the main menu. 17. Select Build Project and then Build Current Project and verify that it builds with no errors. 18. Rebuild the OS image (Build OS and then Build and Sysgen Current BSP). 19. Download the image (Target and then Attach Device).

13 Lab 4-1: Replacing the Shell with a Custom Full Screen Browser Based UI On the Emulator, click the Start Menu, select Run, enter ieshell and click OK. 21. The IEShell application should start. If the lab PC is connected to the internet and configured correctly, you should see the msn.com home page.

14 14 Lab 4-1: Replacing the Shell with a Custom Full Screen Browser Based UI Exercise 3 Replace Explorer.exe with IESHELL.exe In this exercise you will, replace the current shell with the IESHELL application created in the previous exercise. Add a custom UI to IESHELL and replace Explorer as the default Shell 1. With the Emulator still connected to Platform Builder, start the Remote Registry Editor tool (Tools and then Remote Registry Editor). 2. Select Windows CE Default Platform Default Device to connect to the Emulator. 3. Navigate to Default Device, HKEY_LOCAL_MACHINE, Init. 4. The current Windows CE shell is explorer.exe. Verify that it has the Launch value of Close the Remote Registry Editor and disconnect Platform Builder from the Emulator (Select Target and then select Detach Device). 6. Create a new folder in the MyIA workspace (WINCEROOT\PBWorkspaces\MyIA\IESHELL\ShellFiles) and copy the contents of the ShellFiles folder from the Student CD to it. 7. Replace IESHELL.reg (this should be empty) with the version from ShellFiles. This includes a Init\Launch50 value which will override the default explorer.exe entry in common.reg with IESHELL.exe when the image is built. 8. Select the FileView, expand the Sources File branch, and double click mainwnd.cpp to open the file for editing. 9. Add the following code at line 171 to handle the SignalStarted() call. Once this has been added, the code directly following the else should be the existing code, which calls HandleNewWindow2.

15 Lab 4-1: Replacing the Shell with a Custom Full Screen Browser Based UI 15 // allow launching with command line arg // for development purposes. When loaded // from the init key initsignal will be non zero int initsignal = _wtol(lpcmdline); if(initsignal!=0) { SignalStarted(initSignal); if(failed(handlenewwindow2(_t(""), NULL))) { goto Cleanup; } } else 10. The only thing left to do is to ensure the html and associated graphics files that make up our new shell are included in the image. This is specified in the IESHELL.bib file. Expand the Parameter files branch in the FileView. 11. Open IESHELL.bib. Notice that it already includes an entry for IESHELL.exe. 12. Add the following underneath the IESHELL.exe entry. The code is in the IESHELL.bib file in the ShellFiles folder. FILES BKG.jpg $(PBWORKSPACEROOT)\IESHELL\ShellFiles\BKG.jpg NK U Button0.jpg $(PBWORKSPACEROOT)\IESHELL\ShellFiles\Button0.jpg NK U Button1.jpg $(PBWORKSPACEROOT)\IESHELL\ShellFiles\Button1.jpg NK U Button2.jpg $(PBWORKSPACEROOT)\IESHELL\ShellFiles\Button2.jpg NK U Button3.jpg $(PBWORKSPACEROOT)\IESHELL\ShellFiles\Button3.jpg NK U Button4.jpg $(PBWORKSPACEROOT)\IESHELL\ShellFiles\Button4.jpg NK U Button5.jpg $(PBWORKSPACEROOT)\IESHELL\ShellFiles\Button5.jpg NK U Button6.jpg $(PBWORKSPACEROOT)\IESHELL\ShellFiles\Button6.jpg NK U Button7.jpg $(PBWORKSPACEROOT)\IESHELL\ShellFiles\Button7.jpg NK U Button8.jpg $(PBWORKSPACEROOT)\IESHELL\ShellFiles\Button8.jpg NK U Button9.jpg $(PBWORKSPACEROOT)\IESHELL\ShellFiles\Button9.jpg NK U ButtonPOUND.jpg $(PBWORKSPACEROOT)\IESHELL\ShellFiles\ButtonPOUND.jpg NK U ButtonSTAR.jpg $(PBWORKSPACEROOT)\IESHELL\ShellFiles\ButtonSTAR.jpg NK U default.htm $(PBWORKSPACEROOT)\IESHELL\ShellFiles\default.htm NK U homelogo.gif $(PBWORKSPACEROOT)\IESHELL\ShellFiles\homelogo.gif NK U Shell.htm $(PBWORKSPACEROOT)\IESHELL\ShellFiles\Shell.htm NK U 13. Select File and then select Save All to save all of the changes we have made. 14. Select Platform and then select Settings from the main menu and go to the Environment tab. 15. Click New and enter IMGIESHELL with a value of 1.

16 16 Lab 4-1: Replacing the Shell with a Custom Full Screen Browser Based UI 16. Click OK, and OK again to close the Platform Settings dialog. 17. Right-click IESHELL and select Build Current Project. 18. Select Build OS, then select Build and Sysgen Current BSP. 19. Once this is complete, download the new image to the Emulator using Target and Attach Device. 20. You should see the new shell in all its glory!

Lab 3-2: Exploring the Heap

Lab 3-2: Exploring the Heap Lab 3-2: Exploring the Heap Objectives Become familiar with the Windows Embedded CE 6.0 heap Prerequisites Completed Lab 2-1 Estimated time to complete this lab: 30 minutes Lab Setup To complete this lab,

More information

Section 0 1: Clone a BSP Create, Build, and Run a New OS Design

Section 0 1: Clone a BSP Create, Build, and Run a New OS Design Section 0 1: Clone a BSP Create, Build, and Run a New OS Design Learning Objectives Create an OS Design using Visual Studio Identify the catalog features included in the design Extend the standard design

More information

Module 8: Customizing the OS Design

Module 8: Customizing the OS Design Module 8: Customizing the OS Design Catalog 1 Module 8: Customizing the OS Design 8-1 Catalog Overview 8-2 The CE 6.0 Shell 8-3 The SDK Module 8: Customizing the OS Design Catalog 2 Information in this

More information

Introduction. Key features and lab exercises to familiarize new users to the Visual environment

Introduction. Key features and lab exercises to familiarize new users to the Visual environment Introduction Key features and lab exercises to familiarize new users to the Visual environment January 1999 CONTENTS KEY FEATURES... 3 Statement Completion Options 3 Auto List Members 3 Auto Type Info

More information

Downloading and editing signatures!

Downloading and editing  signatures! Downloading and editing email signatures! The templates are customizable and can be edited and saved with any html editor like Dreamweaver. If this is not available we have two alternatives for editing/saving

More information

ECE QNX Real-time Lab

ECE QNX Real-time Lab Department of Electrical & Computer Engineering Concordia University ECE QNX Real-time Lab User Guide Dan Li 9/12/2011 User Guide of ECE Real-time QNX Lab Contents 1. About Real-time QNX Lab... 2 Contacts...

More information

Windows XP Embedded Hands-On Lab

Windows XP Embedded Hands-On Lab Windows XP Embedded Hands-On Lab Page 1 of 19 Objectives In this Hands-On session, you will work with the XP Embedded tools to build a bootable image of Windows XP Embedded. This lab will introduce you

More information

Managing the Startup Folder in Windows 8

Managing the Startup Folder in Windows 8 Managing the Startup Folder in Windows 8 Introduction In this lab, you will customize the Startup Folder and the Run Key in the Registry to manage what applications are started automatically when Windows

More information

KG-TOWER Software Download and Installation Instructions

KG-TOWER Software Download and Installation Instructions KG-TOWER Software Download and Installation Instructions Procedures are provided for three options to download and install KG-TOWER software version 5.1. Download to a temporary folder and install immediately.

More information

BUILD YOUR OWN SAP FIORI APP IN THE CLOUD Exercise Week 5

BUILD YOUR OWN SAP FIORI APP IN THE CLOUD Exercise Week 5 BUILD YOUR OWN SAP FIORI APP IN THE CLOUD Exercise Week 5 Create an App from a Smart Template and Annotation File 1 INTRODUCTION 1.1 Goal Smart Templates in the SAP Web IDE of the SAP HANA Cloud Platform

More information

Vendio Stores WebDAV Setup & Access

Vendio Stores WebDAV Setup & Access Vendio Stores WebDAV Setup & Access Version 1.1, 09/07/2009 1 Contents Introduction:...3 Setting Up Your WebDAV Account in Windows XP...3 Setting Up Your WebDAV Account in Dreamweaver...12 Setting Up Your

More information

Excel window. This will open the Tools menu. Select. from this list, Figure 3. This will launch a window that

Excel window. This will open the Tools menu. Select. from this list, Figure 3. This will launch a window that Getting Started with the Superpave Calculator worksheet. The worksheet containing the Superpave macros must be copied onto the computer. The user can place the worksheet in any desired directory or folder.

More information

Remote Desktop Access

Remote Desktop Access Ready Reference 100208 Remote Desktop Access Introduction Remote Desktop Access for Windows XP Professional or Windows Vista Business provides access to a Windows session that is running on your computer

More information

Module 3-1: Building with DIRS and SOURCES

Module 3-1: Building with DIRS and SOURCES Module 3-1: Building with DIRS and SOURCES Contents Overview 1 Lab 3-1: Building with DIRS and SOURCES 9 Review 10 Information in this document, including URL and other Internet Web site references, is

More information

Working with Mailbox Manager

Working with Mailbox Manager Working with Mailbox Manager A user guide for Mailbox Manager supporting the Message Storage Server component of the Avaya S3400 Message Server Mailbox Manager Version 5.0 February 2003 Copyright 2003

More information

CST8152 Compilers Creating a C Language Console Project with Microsoft Visual Studio.Net 2003

CST8152 Compilers Creating a C Language Console Project with Microsoft Visual Studio.Net 2003 CST8152 Compilers Creating a C Language Console Project with Microsoft Visual Studio.Net 2003 The process of creating a project with Microsoft Visual Studio 2003.Net is to some extend similar to the process

More information

1. Downloading. 2. Installation and License Acquiring. Xilinx ISE Webpack + Project Setup Instructions

1. Downloading. 2. Installation and License Acquiring. Xilinx ISE Webpack + Project Setup Instructions Xilinx ISE Webpack + Project Setup Instructions 1. Downloading The Xilinx tools are free for download from their website and can be installed on your Windowsbased PC s. Go to the following URL: http://www.xilinx.com/support/download/index.htm

More information

Lab - Share Resources in Windows

Lab - Share Resources in Windows Introduction In this lab, you will create and share a folder, set permissions for the shares, create a Homegroup and a Workgroup to share resources, and map a network drive. Due to Windows Vista lack of

More information

Kivy Designer Documentation

Kivy Designer Documentation Kivy Designer Documentation Release 0.9 Kivy October 02, 2016 Contents 1 Installation 3 1.1 Prerequisites............................................... 3 1.2 Installation................................................

More information

1.1 How to Install Prerequisites

1.1 How to Install Prerequisites 1 1 SharpReader Installation Manual 1.1 How to Install Prerequisites 1.1.1 Installing SharpReader 1. Using the internet, open a web browser and access to SharpReader s home page.. SharpReader is an RSS/Atom

More information

IT Essentials v6.0 Windows 10 Software Labs

IT Essentials v6.0 Windows 10 Software Labs IT Essentials v6.0 Windows 10 Software Labs 5.2.1.7 Install Windows 10... 1 5.2.1.10 Check for Updates in Windows 10... 10 5.2.4.7 Create a Partition in Windows 10... 16 6.1.1.5 Task Manager in Windows

More information

People are more likely to open and read a letter than a generic letter addressed to sir, madam or to whom it may concern.

People are more likely to open and read a letter than a generic letter addressed to sir, madam or to whom it may concern. Introduction (WD 330) People are more likely to open and read a letter than a generic letter addressed to sir, madam or to whom it may concern. Word provides the capability of creating a letter, which

More information

Installing and Updating GEMS

Installing and Updating GEMS Installing and Updating GEMS To download and install GEMS for the first time to the hard drive of any desktop or to a network server, see Full Program Installation Desktop or Network. If you currently

More information

'phred dist acd.tar.z'

'phred dist acd.tar.z' Phred is free for academic use but does require registration and for you to obtain a licence. Please visit http://www.phrap.org/consed/consed.html#howtoget and follow the instructions. A copy of the Phred

More information

PACE Suite. Release Notes. Version 3.3.1

PACE Suite. Release Notes. Version 3.3.1 PACE Suite Release Notes Version 3.3.1 Table of Contents VERSION 3.3.1 (07.11.2014)... 2 New features of MSI Editor... 2 Improvements of MSI Editor... 3 Bug fixes of MSI Editor... 3 VERSION 3.3.0 (03.10.2014)...

More information

VIRTUALIZATION MANAGER ENTERPRISE EDITION GETTING STARTED GUIDE. Product: Virtual Iron Virtualization Manager Version: 4.2

VIRTUALIZATION MANAGER ENTERPRISE EDITION GETTING STARTED GUIDE. Product: Virtual Iron Virtualization Manager Version: 4.2 VIRTUALIZATION MANAGER ENTERPRISE EDITION GETTING STARTED GUIDE This manual provides a quick introduction to Virtual Iron software, and explains how to use Virtual Iron Virtualization Manager to configure

More information

Bryant Consulting Group, LLC Sample Portfolio. Training Manuals & Quick Fact Reference Sheets

Bryant Consulting Group, LLC Sample Portfolio. Training Manuals & Quick Fact Reference Sheets Bryant Consulting Group, LLC Sample Portfolio Training Manuals & Quick Fact Reference Sheets Quick Tips Working with Contacts Creating Contact Information 1. On the Navigation Pane, click the Contacts

More information

Configuring Ethernet Audio on Microsoft Windows Server 2012

Configuring Ethernet Audio on Microsoft Windows Server 2012 Configuring Ethernet Audio on Microsoft Windows Server 2012 Ethernet Audio uses the NFS file sharing system available in Server 2012 to allow file sharing with DigiCart/E or DigiCart/EX. First, we need

More information

WA1685 WebSphere Portal v6.1 Programming. Classroom Setup Guide. Web Age Solutions Inc. Web Age Solutions Inc

WA1685 WebSphere Portal v6.1 Programming. Classroom Setup Guide. Web Age Solutions Inc. Web Age Solutions Inc WA1685 WebSphere Portal v6.1 Programming Classroom Setup Guide Web Age Solutions Inc. Web Age Solutions Inc. 2011 1 Table of Contents Part 1 - Minimum Hardware Requirements...3 Part 2 - Minimum Software

More information

Windows Embedded Compact Test Kit User Guide 1

Windows Embedded Compact Test Kit User Guide 1 Windows Embedded Compact Test Kit User Guide 1 Windows Embedded Compact Test Kit User Guide Windows Embedded Compact 7 Technical Article Published: March 2011 Applies To: Windows Embedded Compact 7 Abstract

More information

JMP to LSAF Add-in. User Guide v1.1

JMP to LSAF Add-in. User Guide v1.1 JMP to LSAF Add-in User Guide v1.1 Table of Contents Terms and Conditions... 3 System Requirements... 3 Installation... 3 Configuration... 4 API Setup... 4 Java Configuration... 5 Logging In... 5 Launching

More information

WA1937 WebSphere Portal 7.0 Programming. Classroom Setup Guide. Web Age Solutions Inc. Copyright 2012 Web Age Solutions Inc. 1

WA1937 WebSphere Portal 7.0 Programming. Classroom Setup Guide. Web Age Solutions Inc. Copyright 2012 Web Age Solutions Inc. 1 WA1937 WebSphere Portal 7.0 Programming Classroom Setup Guide Web Age Solutions Inc. Copyright 2012 Web Age Solutions Inc. 1 Table of Contents Part 1 - Minimum Hardware Requirements...3 Part 2 - Minimum

More information

NIOS CPU Based Embedded Computer System on Programmable Chip

NIOS CPU Based Embedded Computer System on Programmable Chip NIOS CPU Based Embedded Computer System on Programmable Chip EE8205: Embedded Computer Systems NIOS-II SoPC: PART-II 1 Introduction This lab has been constructed to introduce the development of dedicated

More information

Instructions for MX350 Firmware Upload

Instructions for MX350 Firmware Upload Instructions for MX350 Firmware Upload MX350 Document AN10048 Page 1 of 39 Contents Section Description Page 1 Requirements 3 2 Install MX350 Setup Software 3 3 Download MX350 Firmware 4 4 Connect MX350

More information

To complete this project, you will need the following folder:

To complete this project, you will need the following folder: = CHAPTER 1 Windows 7 More Skills 12 Use Libraries to Organize Files A library is a collection of files and folders stored in different locations on your computer that can be viewed as a single folder.

More information

How to configure the Matlab interface

How to configure the Matlab interface How to configure the Matlab interface 1. MATLAB must be installed For step 2 (required for MATLAB versions 2009b and over), we need to know whether the 32-bit or 64-bit version of MATLAB is installed.

More information

WA1547 WebSphere Portal v6 Programming. Classroom Setup Guide. Web Age Solutions Inc. Copyright Web Age Solutions Inc.

WA1547 WebSphere Portal v6 Programming. Classroom Setup Guide. Web Age Solutions Inc. Copyright Web Age Solutions Inc. WA1547 WebSphere Portal v6 Programming Classroom Setup Guide Web Age Solutions Inc. 1 Table of Contents Classroom Requirements...3 Part 1 - Minimum Hardware Requirements...3 Part 2 - Minimum Software Requirements...3

More information

Microsoft Official Academic Course Windows Vista Configuration, Exam ISBN: ERRATA

Microsoft Official Academic Course Windows Vista Configuration, Exam ISBN: ERRATA Microsoft Official Academic Course Windows Vista Configuration, Exam 70-620 ISN: 978-0-470-06958-5 ERRATA Lesson Lesson 2 25 The Certification Ready? sidebar on this page does not link to an exam objective.

More information

Step 1: Use StudyMate to Publish files

Step 1: Use StudyMate to Publish files How to Publish StudyMate Files to Blackboard. This document will walk you through the steps necessary to successfully publish StudyMate activities to Blackboard. The following procedures are the recommended

More information

Schoolwires Website How to Access and Modify Content of Teacher Pages

Schoolwires Website How to Access and Modify Content of Teacher Pages Schoolwires Website How to Access and Modify Content of Teacher Pages Accessing Teacher Pages 1. To access your WebPages to modify or change content, go to: http://palisadessd.org 2. In the top right navigation

More information

GrapeMasher Installation

GrapeMasher Installation GrapeMasher Installation Introduction: The GrapeMasher application is simple to install. GrapeMasher will run on XP/Vista/Win7/Win8/Win10 and on 32bit and 64bit computers. The GrapeMasher software does

More information

Web-enable a 5250 application with the IBM WebFacing Tool

Web-enable a 5250 application with the IBM WebFacing Tool Web-enable a 5250 application with the IBM WebFacing Tool ii Web-enable a 5250 application with the IBM WebFacing Tool Contents Web-enable a 5250 application using the IBM WebFacing Tool......... 1 Introduction..............1

More information

bs^ir^qfkd=obcib`qflk= prfqb=clo=u

bs^ir^qfkd=obcib`qflk= prfqb=clo=u bs^ir^qfkd=obcib`qflk= prfqb=clo=u cçê=u=táåççïë=póëíéãë cçê=lééåsjp=eçëíë cçê=f_j=eçëíë 14.1 bî~äì~íáåö=oéñäéåíáçå=u This guide provides a quick overview of features in Reflection X. This evaluation guide

More information

N2KAnalyzer. User s Manual

N2KAnalyzer. User s Manual N2KAnalyzer NMEA 2000 Network Analysis Software User s Manual Revision 1.3.9 Copyright 2008 Maretron, LLP All Rights Reserved Maretron, LLP 9014 N. 23 rd Ave #10 Phoenix, AZ 85021-7850 http://www.maretron.com

More information

CST8152 Compilers Creating a C Language Console Project with Microsoft Visual Studio.Net 2005

CST8152 Compilers Creating a C Language Console Project with Microsoft Visual Studio.Net 2005 CST8152 Compilers Creating a C Language Console Project with Microsoft Visual Studio.Net 2005 The process of creating a project with Microsoft Visual Studio 2005.Net is similar to the process in Visual

More information

Windows Me Navigating

Windows Me Navigating LAB PROCEDURE 11 Windows Me Navigating OBJECTIVES 1. Explore the Start menu. 2. Start an application. 3. Multi-task between applications. 4. Moving folders and files around. 5. Use Control Panel settings.

More information

Windows Embedded Compact Test Kit User Guide

Windows Embedded Compact Test Kit User Guide Windows Embedded Compact Test Kit User Guide Writers: Randy Ocheltree, John Hughes Published: October 2011 Applies To: Windows Embedded Compact 7 Abstract The Windows Embedded Compact Test Kit (CTK) is

More information

Interlink Express Desktop Printing Service Installation Guide

Interlink Express Desktop Printing Service Installation Guide Interlink Express Desktop Printing Service Installation Guide Page 1 of 10 Introduction This guide is intended to provide guidance on how to install and configure the new Interlink Express Desktop Printing

More information

General Guidelines: SAS Analyst

General Guidelines: SAS Analyst General Guidelines: SAS Analyst The Analyst application is a data analysis tool in SAS for Windows (version 7 and later) that provides easy access to basic statistical analyses using a point-and-click

More information

QNX Software Development Platform 6.6. Quickstart Guide

QNX Software Development Platform 6.6. Quickstart Guide QNX Software Development Platform 6.6 QNX Software Development Platform 6.6 Quickstart Guide 2005 2014, QNX Software Systems Limited, a subsidiary of BlackBerry. All rights reserved. QNX Software Systems

More information

CSE 101 Introduction to Computers Development / Tutorial / Lab Environment Setup

CSE 101 Introduction to Computers Development / Tutorial / Lab Environment Setup CSE 101 Introduction to Computers Development / Tutorial / Lab Environment Setup Purpose: The purpose of this lab is to setup software that you will be using throughout the term for learning about Python

More information

umapps Using umapps 6/14/2017 Brought to you by: umtech & The Center for Teaching & Learning

umapps Using umapps 6/14/2017 Brought to you by: umtech & The Center for Teaching & Learning umapps Using umapps Center for Teaching and Learning (CTL) 100 Administration Bldg., Memphis, TN 38152 Phone: 901.678.8888 Email: itstrainers@memphis.edu Center for Teaching and Learning Website 6/14/2017

More information

APPENDIX A. CODE COMPOSER STUDIO (CCS) v5: A BRIEF TUTORIAL FOR THE DSK6713

APPENDIX A. CODE COMPOSER STUDIO (CCS) v5: A BRIEF TUTORIAL FOR THE DSK6713 APPENDIX A. CODE COMPOSER STUDIO (CCS) v5: A BRIEF TUTORIAL FOR THE DSK6713 A.1 Introduction Code Composer Studio (CCS) is Texas Instruments integrated development environment (IDE) for developing routines

More information

AVWorks. Installer/User Guide

AVWorks. Installer/User Guide AVWorks Installer/User Guide INSTRUCTIONS This symbol is intended to alert the user to the presence of important operating and maintenance (servicing) instructions in the literature accompanying the appliance.

More information

SAS Installation Instructions Windows 2003, XP, 2000, NT. Workstation Installation Guidelines

SAS Installation Instructions Windows 2003, XP, 2000, NT. Workstation Installation Guidelines UCit Instructional and Research Computing, Software Distribution Office, 303B Zimmer Hall, Cincinnati, OH 45221-0088. Phone: (513) 556 9068 Email: Software@uc.edu SAS 9.1.3 Installation Instructions Windows

More information

Cisco Remote Expert Manager Agent s Workstation Setup Guide

Cisco Remote Expert Manager Agent s Workstation Setup Guide Cisco Remote Expert Manager Agent s Workstation Setup Guide Release 1.9.5 July 7, 2015 Note All advertising materials mentioning features or use of this software must display the following acknowledgement:

More information

Lab 3-3: Scenario - Fixing a Memory Leak

Lab 3-3: Scenario - Fixing a Memory Leak Lab 3-3: Scenario - Fixing a Memory Leak Objectives Use the Target Control utility to identify a memory leak Prerequisites Completed Lab 2-1 Estimated time to complete this lab: 30 minutes Lab Setup To

More information

Introduction to IBM Rational HATS For IBM System i (5250)

Introduction to IBM Rational HATS For IBM System i (5250) Introduction to IBM Rational HATS For IBM System i (5250) Introduction to IBM Rational HATS 1 Lab instructions This lab teaches you how to use IBM Rational HATS to create a Web application capable of transforming

More information

1. Remove any previously installed versions of the Offline Image Viewer by dragging and dropping the Offline Image Viewer icon into the Trash.

1. Remove any previously installed versions of the Offline Image Viewer by dragging and dropping the Offline Image Viewer icon into the Trash. Installing OIV 2.6 for Macs 1. Remove any previously installed versions of the Offline Image Viewer by dragging and dropping the Offline Image Viewer icon into the Trash. 2. Download the new version of

More information

UMHS Financial Systems Workspace & Smart View Templates

UMHS Financial Systems Workspace & Smart View Templates Level 1 Password https://findatamgr.dsc.umich.edu/workspace/index.jsp What If I have a blank Homepage? Utilize the Use Current Page button to set the Home Page. Why do I not see the Preview User Point

More information

Introduction. Purpose. Objectives. Content. Learning Time

Introduction. Purpose. Objectives. Content. Learning Time Introduction Purpose This training course provides an overview of the installation and administration aspects of the High-performance Embedded Workshop (HEW), a key tool for developing software for embedded

More information

IBM Integration Bus. Pattern Authoring Lab 1. June, 2013

IBM Integration Bus. Pattern Authoring Lab 1. June, 2013 IBM Integration Bus Pattern Authoring Lab 1 Creating a Basic Pattern June, 2013 Hands-on lab built at product code level Version 9.0.0.0 1. Introduction to Pattern Authoring... 3 1.1 Lab preparation...3

More information

Guided Exercise 1.1: Setting up the sample OpenEdge Data Object Services

Guided Exercise 1.1: Setting up the sample OpenEdge Data Object Services Guided Exercise 1.1: Setting up the sample OpenEdge Data Object Services Overview Before you can develop a web app, you must set up the back-end services for the data providers that the web app will use.

More information

Installation of fi-4110cu Scanner under Windows 2000

Installation of fi-4110cu Scanner under Windows 2000 Installation of fi-4110cu Scanner under Windows 2000 Connect the scanner to the PC. Turn on the scanner and then the PC Log into Windows Note: The user must log in with administrator authority. For information

More information

VistA for Education (DVD): HELP document

VistA for Education (DVD): HELP document 1 VistA for Education (DVD): HELP document WINDOWS VISTA and WINDOWS 7 INSTALLATION Note: Currently the National Training and Dissemination Center (NTDC) can only confirm successful installations of VistA

More information

WinSCP. Author A.Kishore/Sachin

WinSCP. Author A.Kishore/Sachin WinSCP WinSCP is a freeware windows client for the SCP (secure copy protocol), a way to transfer files across the network using the ssh (secure shell) encrypted protocol. It replaces other FTP programs

More information

5.5.3 Lab: Managing Administrative Settings and Snap-ins in Windows XP

5.5.3 Lab: Managing Administrative Settings and Snap-ins in Windows XP 5.5.3 Lab: Managing Administrative Settings and Snap-ins in Windows XP Introduction Print and complete this lab. In this lab, you will use administrative tools to monitor system resources. You will also

More information

Building an Application to Dynamically Execute Partner Process Flows

Building an Application to Dynamically Execute Partner Process Flows Building an Application to Dynamically Execute Partner Process Flows This topic describes how to configure an application using iway Integration Tools (iit) that will dynamically execute partner process

More information

VI-CENTER EXTENDED ENTERPRISE EDITION GETTING STARTED GUIDE. Version: 4.5

VI-CENTER EXTENDED ENTERPRISE EDITION GETTING STARTED GUIDE. Version: 4.5 VI-CENTER EXTENDED ENTERPRISE EDITION GETTING STARTED GUIDE This manual provides a quick introduction to Virtual Iron software, and explains how to use Virtual Iron VI-Center to configure and manage virtual

More information

Use SecurityTestRunner to run Ready! API's security tests from the command line.

Use SecurityTestRunner to run Ready! API's security tests from the command line. SecurityTest Runner SecurityTestRunner runs security tests. Use SecurityTestRunner to run Ready! API's security tests from the command line. You can start the runner from the command line or from the Ready!

More information

NETWRIX PASSWORD EXPIRATION NOTIFIER

NETWRIX PASSWORD EXPIRATION NOTIFIER NETWRIX PASSWORD EXPIRATION NOTIFIER QUICK-START GUIDE Product Version: 3.3.247 March 2014. Legal Notice The information in this publication is furnished for information use only, and does not constitute

More information

Module 3: Working with C/C++

Module 3: Working with C/C++ Module 3: Working with C/C++ Objective Learn basic Eclipse concepts: Perspectives, Views, Learn how to use Eclipse to manage a remote project Learn how to use Eclipse to develop C programs Learn how to

More information

CST8152 Compilers Creating a C Language Console Project with Microsoft Visual Studio.Net 2010

CST8152 Compilers Creating a C Language Console Project with Microsoft Visual Studio.Net 2010 CST8152 Compilers Creating a C Language Console Project with Microsoft Visual Studio.Net 2010 The process of creating a project with Microsoft Visual Studio 2010.Net is similar to the process in Visual

More information

Introduction to Eclipse Rich Client Platform Support in IBM Rational HATS. For IBM System i (5250)

Introduction to Eclipse Rich Client Platform Support in IBM Rational HATS. For IBM System i (5250) Introduction to Eclipse Rich Client Platform Support in IBM Rational HATS For IBM System i (5250) 1 Lab instructions This lab teaches you how to use IBM Rational HATS to create a rich client plug-in application

More information

USB DRIVER INSTALLATION GUIDE

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 to communicate

More information

Developing Applications using Universal Driver 6.0x in Windows CE 6.0

Developing Applications using Universal Driver 6.0x in Windows CE 6.0 Developing Applications using Universal Driver 6.0x in Windows CE 6.0 Rev. B 1 1 Installing Universal Driver 6.0x in the platform The installation of UNIVERSAL DRIVER is a very simple process and requires

More information

You can make certain sections of the text clickable by creating hyperlinks. Once clicked, these links navigate users to different

You can make certain sections of the text clickable by creating hyperlinks. Once clicked, these links navigate users to different You can make certain sections of the text clickable by creating hyperlinks. Once clicked, these links navigate users to different pages or, as described in working with anchors, to different sections of

More information

As CCS starts up, a splash screen similar to one shown below will appear.

As CCS starts up, a splash screen similar to one shown below will appear. APPENDIX A. CODE COMPOSER STUDIO (CCS) v5.1: A BRIEF TUTORIAL FOR THE OMAP-L138 A.1 Introduction Code Composer Studio (CCS) is Texas Instruments integrated development environment (IDE) for developing

More information

USB DRIVER INSTALLATION GUIDE

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.

More information

Integrated Architecture Builder, PLC-to-ControlLogix Migration Hands-On Lab

Integrated Architecture Builder, PLC-to-ControlLogix Migration Hands-On Lab Integrated Architecture Builder, PLC-to-ControlLogix Migration Hands-On Lab For support or to comment, send e-mail to iab_support@ra.rockwell.com Integrated Architecture Builder, PLC-to-ControlLogix Migration

More information

Oracle Enterprise Manager Oracle Database and Application Testing. Application Testing Suite Lab. Session S318966

Oracle Enterprise Manager Oracle Database and Application Testing. Application Testing Suite Lab. Session S318966 Oracle Enterprise Manager Oracle Database and Application Testing Application Testing Suite Lab Session S318966 Oracle Enterprise Manager 11g Application Testing Suite 9.1 Hands on Lab Introduction to

More information

Install Telepresence Content Server License Key(s)

Install Telepresence Content Server License Key(s) Install Telepresence Content Server License Key(s) Contents Introduction Prerequisites Requirements Components Used Configure Install Release Key and required Option Keys Installing additional Option Keys

More information

Training Bulletin TITLE: CHIP-CARD BROWSER RECOMMENDATIONS AUDIENCE: GENERAL MANAGERS, FRONT DESK STAFF DATE: DECEMBER 12. Intro

Training Bulletin TITLE: CHIP-CARD BROWSER RECOMMENDATIONS AUDIENCE: GENERAL MANAGERS, FRONT DESK STAFF DATE: DECEMBER 12. Intro TITLE: CHIP-CARD BROWSER RECOMMENDATIONS AUDIENCE: GENERAL MANAGERS, FRONT DESK STAFF DATE: DECEMBER 12 Intro As a web-based application, the choiceadvantage Property Management System is impacted by the

More information

About the Tutorial. Audience. Prerequisites. Copyright & Disclaimer

About the Tutorial. Audience. Prerequisites. Copyright & Disclaimer i About the Tutorial Eclipse is an integrated development environment (IDE) for Java and other programming languages like C, C++, PHP, and Ruby etc. Development environment provided by Eclipse includes

More information

CIS 231 Windows 10 Install Lab # 3

CIS 231 Windows 10 Install Lab # 3 CIS 231 Windows 10 Install Lab # 3 1) To avoid certain problems later in the lab, use Chrome as your browser: open this url: https://vweb.bristolcc.edu 2) Here again, to avoid certain problems later in

More information

Introduction to Eclipse Rich Client Platform Support in IBM Rational HATS For IBM System i (5250)

Introduction to Eclipse Rich Client Platform Support in IBM Rational HATS For IBM System i (5250) Introduction to Eclipse Rich Client Platform Support in IBM Rational HATS For IBM System i (5250) Introduction to Eclipse Rich Client Platform Support in IBM Rational HATS 1 Lab instructions This lab teaches

More information

Scientific Software Development with Eclipse

Scientific Software Development with Eclipse Scientific Software Development with Eclipse A Best Practices for HPC Developers Webinar Gregory R. Watson ORNL is managed by UT-Battelle for the US Department of Energy Contents Downloading and Installing

More information

ms-help://ms.technet.2004apr.1033/ad/tnoffline/prodtechnol/ad/windows2000/howto/mapcerts.htm

ms-help://ms.technet.2004apr.1033/ad/tnoffline/prodtechnol/ad/windows2000/howto/mapcerts.htm Page 1 of 8 Active Directory Step-by-Step Guide to Mapping Certificates to User Accounts Introduction The Windows 2000 operating system provides a rich administrative model for managing user accounts.

More information

Taskbar for Windows. Contents. Overview. Prerequisites. Versions. PositiveID Support. Installer

Taskbar for Windows. Contents. Overview. Prerequisites. Versions. PositiveID Support. Installer Taskbar for Windows Contents 1 Overview 1.1 Versions 1.2 PositiveID Support 1.3 Installer 2 Prerequisites 3 Architecture 4 Swivel Server Configuration 4.1 Enabling Session creation with username 5 Taskbar

More information

F28069 ControlCard Lab1

F28069 ControlCard Lab1 F28069 ControlCard Lab1 Toggle LED LD2 (GPIO31) and LD3 (GPIO34) 1. Project Dependencies The project expects the following support files: Support files of controlsuite installed in: C:\TI\controlSUITE\device_support\f28069\v135

More information

KIN 147 Lab 02: Acceleration Data Analysis

KIN 147 Lab 02: Acceleration Data Analysis KIN 147 Lab 02: Acceleration Data Analysis Excel analyses work much better on PCs than on Macs (especially older Macs) Your goal is to correctly analyze accelerometer data Analyzing the Acceleration Data

More information

Additional Network Workstation Windows XP Installation Guide

Additional Network Workstation Windows XP Installation Guide Additional Network Workstation Windows XP Installation Guide 1 Table of Contents I. Verify Hardware and Optimize Work Station 3 II. Download Software 10 III. Install Software 13 2 I. Verify Hardware and

More information

Abaqus Student Edition. Installation Instructions

Abaqus Student Edition. Installation Instructions Abaqus Student Edition Installation Instructions Before you begin: 1. Make sure you have administrator privileges, as this is required for the Abaqus Student Edition installation. 2. Turn off all anti-virus

More information

FrontPage Student IT Essentials. October 2005 This leaflet is available in other formats on request. Saving your work

FrontPage Student IT Essentials. October 2005 This leaflet is available in other formats on request. Saving your work Saving your work All students have access to a personal file storage space known as the U: Drive. This is your own personal secure area on the network. Each user has 60mb of space (40 bigger than a floppy

More information

Installation Guide: VirtualBox, Windows 10, and Microsoft Visio (Mac OS)

Installation Guide: VirtualBox, Windows 10, and Microsoft Visio (Mac OS) (434) 924-7988, RRH 219 helpdesk@comm.virginia.edu Installation Guide: VirtualBox, Windows 10, and Microsoft Visio (Mac OS) Prerequisites: Verify that your installation of OS X and Safari have the most

More information

ProfileUnity. with FlexApp Technology. ADMINISTRATOR TRAINING AND LAB GUIDE version 1.0

ProfileUnity. with FlexApp Technology. ADMINISTRATOR TRAINING AND LAB GUIDE version 1.0 ProfileUnity with FlexApp Technology ADMINISTRATOR TRAINING AND LAB GUIDE version 1.0 Introduction This guide is authored by experts at Liquidware Labs to provide information and guidance concerning ProfileUnity

More information

NIOS CPU Based Embedded Computer System on Programmable Chip

NIOS CPU Based Embedded Computer System on Programmable Chip 1 Objectives NIOS CPU Based Embedded Computer System on Programmable Chip EE8205: Embedded Computer Systems This lab has been constructed to introduce the development of dedicated embedded system based

More information

Browser Configuration Reference

Browser Configuration Reference Sitecore CMS 7.0 or later Browser Configuration Reference Rev: 2013-09-30 Sitecore CMS 7.0 or later Browser Configuration Reference Optimizing Internet Explorer and other web browsers to work with Sitecore

More information

BrainMaster 3.4 Software Installation for Windows XP

BrainMaster 3.4 Software Installation for Windows XP BrainMaster 3.4 Software Installation for Windows XP Make sure to install the software BEFORE attempting to plug in the Atlantis hardware module. Please install the software first, and then the hardware

More information

Practice and Review Activities Software

Practice and Review Activities Software Practice and Review Activities Software Installation and Setup Procedure Reading Mastery Signature Edition Corrective Reading Installation Insert the Practice and Review Activities CD-ROM into the CD/DVD

More information