Loading pictures with ActiveX and VBScript Copyright InduSoft Systems LLC 2006
|
|
|
- Lambert Evans
- 9 years ago
- Views:
Transcription
1 Dynamically Loading Pictures on a Screen Using an ActiveX Control and VBScript Category Software Equipment Software Demo Application Implementation Specifications or Requirements Item IWS Version: 6.1 and later Service Pack: N/A Windows NT/2000/XP: WinXP/2000/NT Windows CE: No Web Thin Client: N/A Panel Manufacturer: N/A Panel Model: N/A Other Hardware: N/A Comm. Driver: All Controller (e.g.: PLC) All Application Language: N/A N/A. Summary Indusoft Web Studio (IWS) provides methods to load static graphic objects onto a display screen. This note describes how to use the Microsoft PictureClip ActiveX Control (OCX) with IWS VBScripting to dynamically load pictures on a screen. Discussion InduSoft Web Studio (IWS) currently provides a couple methods for displaying graphic objects on a display screen. These are: Loading a static image at runtime as specified in the Screen Attributes Dialog Box. Copying graphic objects (e.g. from Microsoft Paint) and pasting them on an IWS screen. These graphic objects can then be assigned IWS controls (e.g. Position (including visibility), Size, and Command). This is done using the IWS Paste Link function (Edit Paste Link). This function does not work with Windows CE. However, neither of these methods allows a file to be dynamically loaded into a picture object at runtime. One method of accomplishing this is to use an ActiveX control (OCX) controlled by a VBScript routine. ActiveX Controls are based on Microsoft s COM technology and provide added functionality in a modular, structured manner. IWS is an ActiveX container, allowing interoperability between the IWS development & runtime environment and an ActiveX Control s Properties, Methods and Events. Put simply, an ActiveX Control can be added to IWS to give added functionality, with the ActiveX Control placed under InduSoft Web Studio s control. Although InduSoft does not supply an ActiveX Control for this function, there are several 3 rd party ActiveX Controls that can be used. The ActiveX Control used in this application is Microsoft s PictureClip ActiveX
2 Control, originally supplied with Visual Studio 6 and Microsoft Visual Basic 6. The file containing this control is PICCLP32.OCX. There are a few steps you need to do in order to use an ActiveX Control. These steps are: Be sure the ActiveX Control is registered. Generally, an ActiveX Control is registered automatically when it is installed. In case it isn t, you can use the IWS Register Controls tool, part of the Tools available in the IWS menu bar. The Register Controls tool will display a list of registered controls (their ProgID, or Program ID, and the Path to the file where the ActiveX Control is located). If the Control is not registered, you can click on the Register button and browse for the Control. In our case the ActiveX Control PictureClip was already registered as part of the installation process. The system assigned ProgID is PicClip.PictureClip.1 and the Path is C:\Windows\system32\PicClp32.ocx. Register Controls Function List of Registered Controls
3 Insert the ActiveX Control on a screen This is done by using the OCX tool in the IWS Toolbar, selecting the ActiveX Control and placing it on the IWS screen. List of Registered Controls that can be used by IWS OCX Tool In our case, the ActiveX Control is called Microsoft PictureClip Control, version 6.0. Position the ActiveX Control frame on the Screen There will usually be an object or a frame (e.g. rectangular box) that now appears on the screen display. Click and drag this to the location on the screen where you want it.
4 Rename the ActiveX Control, and Set Properties, Methods and Events Double click on the ActiveX Control Frame. A dialog box for the Object Properties will appear. In the Object Properties dialog box will be the name that IWS has assigned for the ActiveX Control. Each instance of the ActiveX Control will be assigned a unique name by IWS. You can rename the Control as long as the name is unique. The dialog box also contains buttons to access Property Pages and the Configuration of the ActiveX Control (i.e. Properties, Methods, and Events). IWS assigned name for ActiveX Control, Property Pages and Configuration buttons
5 Note that when you access the ActiveX Control Configuration, you can set the Control s Properties and trigger the Methods based on IWS tag values. ActiveX Controls almost always have one or more Properties but may or may not have Methods or Events. In our example, we are going to use VBScript to access the Control s properties instead of using the Configuration dialog. The PictureClip Control was developed to allow multiple graphics segments to appear as one large graphic display, and have the graphic display divided into cells. Based on the area of the graphic selected, different action could occur. In our example, we will use the PictureClip Control for a more simple purpose; namely to display an object and scale it to a pre-defined image size. As mentioned, we will use VBScript to read and set PictureClip Control s various Properties. We will also use one of VBScript s more arcane functions, the LoadPicture function. The VBScript LoadPicture function is used return a picture object that is loaded from a file. It does not display the object however, this is the function of the ActiveX control. The LoadPicture syntax is: LoadPicture (filename) Example: opicture = LoadPicture ( c:\path\mypicturefile.jpg ) File formats supported by the LoadPicture function include: Bitmap (*.bmp) Icon (*.ico) JPEG (*.jpg) GIF (*.gif) Metafile (*.wmf) Enhanced Metafile (*.emf) Run-length Encoded (*.rle) Now that we have defined the ActiveX Control to be used and the VBScript function we are going to use, we need to know about the ActiveX Control s Properties (and Methods) required to achieve our desired function. Since this Control is a Microsoft control, information can be found on Microsoft s MSDN website. The PictureClip Control Properties we are going to use are:.picture The Picture object (loaded by the VBScript LoadPicture function).cellheight This is a read-only value indicating the image height (Y axis).cellwidth This is a read-only value indicating the image width (X axis).clipx This is the starting X-axis coordinate for the clip we want to define (from the upper left corner of the image).clipy
6 This is the starting Y-axis coordinate for the clip we want to define (from the upper left corner of the image).clipheight This is the height of the image clip we want to use.clipwidth This is the width of the image clip we want to use.stretchx This is the final x-axis size of the clip (i.e. we want to stretch/shrink it to the specified # of pixels).stretchy This is the final x-axis size of the clip (i.e. we want to stretch/shrink it to the specified # of pixels) In our demo example, we will load the picture, determine it s image size, define the image as a Clip and scale it to a pre-defined window size. VBScript Demo Code The demo has 3 display screens that combine to form a screen group. The function of each screen is as follows: Header.SCR - Contains a Combo Box that selects the city. The City code is placed in the IWS tag LocID - InduSoft Logo (static image) - Exit Graphic to call the system Shutdown function Side.SCR - Displays current logon UserName and computer IP address Body.SCR - Contains frame for PictureClip ActiveX Control - Text I/O Display for City name and other data Body.SCR Screen Script - VBScript code to read records from an Excel database file. Each record in the file corresponds to data about a city (Not necessarily accurate data). - Acquiring the correct image to display based on the city selected, and scaling the image to fit into a pre-defined window size. Startup Script - Acquire the System IP address and store in IWS string tag Important Note: In VBScript, to access an ActiveX Control that has been instanced in an IWS screen display (as is done in our example), when referring to the ActiveX Control from VBScript, the name of the ActiveX Control is case sensitive. The code below is what is contained in the Body.SCR Screen Script. Variables available on this screen can be declared and initialized here.
7 Dim db Dim rs Dim strconn Dim myfile Dim OldLocID Dim SizeX Dim SizeY Const DisplaySizeX = 250 Const DisplaySizeY = 250 'Procedures available on this screen can be implemented here 'This procedure is executed just once when this screen is open. Sub Screen_OnOpen() ' Create and open ADO connections to Database and RecordSet myfile = $InfoAppDir() & "\MyData.xls" strconn = "Provider=Microsoft.Jet.OLEDB.4.0; Data Source=" & myfile & ";" strconn = strconn & "Extended Properties = Excel 8.0" Set db = CreateObject("ADODB.Connection") db.open = strconn Set rs = CreateObject("ADODB.Recordset") ' Execute SQL to get all cities data Set rs = db.execute("select * FROM [Sheet1$]") ' Load Recordset Data from Excel Database While Not rs.eof $CityInfo[rs("ID")].CityName = CStr(rs("City")) $CityInfo[rs("ID")].PicFile = $InfoAppDir() & "\" & CStr(rs("File")) & ".JPG" $CityInfo[rs("ID")].Population = rs("population") $CityInfo[rs("ID")].Area = rs("area") $CityInfo[rs("ID")].WaterCapacity = rs("water") rs.movenext Wend OldLocID = -1 End Sub 'This procedure is executed continuously while this screen is open. Sub Screen_WhileOpen() ' Display picture If OldLocId <> $LocId Then OldLocId = $LocId PictureClip.Picture=LoadPicture($CityInfo[$LocId].PicFile) SizeY = PictureClip.CellHeight SizeX = PictureClip.CellWidth PictureClip.ClipX = 0 PictureClip.ClipY = 0 PictureClip.ClipHeight = SizeY PictureClip.ClipWidth = SizeX ' Scale to Fit into a 200 x 200 Frame If SizeX > SizeY Then ScaleFactor = SizeX/DisplaySizeX
8 SizeY = SizeY/ScaleFactor SizeX = DisplaySizeX Else ScaleFactor = SizeY/DisplaySizeY SizeX = SizeX/ScaleFactor SizeY=DisplaySizeY End If PictureClip.StretchY = SizeY PictureClip.StretchX = SizeX PictureClip.Picture = PictureClip.Clip End If End Sub 'This procedure is executed just once when this screen is closed. Sub Screen_OnClose() ' Close connection and database. Release memory rs.close db.close Set rs = Nothing Set db = Nothing End Sub
9 More about the Microsoft PictureClip Control The contents of the Excel file (MyData.xls) located in the application folder is as follows: For file, a.jpg format is assumed. More about the Microsoft PictureClip Control Although our use of the PictureClip Control has been very basic, this Control actually has additional capabilities that let you store and view multiple picture resources into one object and then allow you to select the region of the source picture you are interested in. An example use would be graphical navigation to different screens. For more information on PictureClip Control, visit the Microsoft MSDN website at Important Note: PicClp32.ocx must be installed in the Windows System32 (or System) subdirectory. The control must be registered before it is used by IWS..
Chapter 4 Accessing Data
Chapter 4: Accessing Data 73 Chapter 4 Accessing Data The entire purpose of reporting is to make sense of data. Therefore, it is important to know how to access data locked away in the database. In this
Creating Web Pages with Microsoft FrontPage
Creating Web Pages with Microsoft FrontPage 1. Page Properties 1.1 Basic page information Choose File Properties. Type the name of the Title of the page, for example Template. And then click OK. Short
Citrix EdgeSight for Load Testing User s Guide. Citrix EdgeSight for Load Testing 3.8
Citrix EdgeSight for Load Testing User s Guide Citrix EdgeSight for Load Testing 3.8 Copyright Use of the product documented in this guide is subject to your prior acceptance of the End User License Agreement.
Introduction to Visual Basic
Introduction to Visual Basic Microsoft Visual Basic development system version 6.0 is the most productive tool for creating high-performance components and applications. Visual Basic 6.0 offers developers
1. Create SQL Database in Visual Studio
1. Create SQL Database in Visual Studio 1. Select Create New SQL Server Database in Server Explorer. 2. Select your server name, and input the new database name, then press OK. Copyright 2011 Lo Chi Wing
Siemens Applied Automation Page 1 11/26/03 9:57 PM. Maxum ODBC 3.11
Siemens Applied Automation Page 1 Maxum ODBC 3.11 Table of Contents Installing the Polyhedra ODBC driver... 2 Using ODBC with the Maxum Database... 2 Microsoft Access 2000 Example... 2 Access Example (Prior
User Guide Win7Zilla
User Guide Win7Zilla Table of contents Section 1: Installation... 3 1.1 System Requirements... 3 1.2 Software Installation... 3 1.3 Uninstalling Win7Zilla software... 3 Section 2: Navigation... 4 2.1 Main
Legal Notes. Regarding Trademarks. 2012 KYOCERA Document Solutions Inc.
Legal Notes Unauthorized reproduction of all or part of this guide is prohibited. The information in this guide is subject to change without notice. We cannot be held liable for any problems arising from
Microsoft Picture Manager. Picture Manager
Picture Manager Picture Manager allows you to easily edit and organize the pictures on your computer. Picture Manager is an application that was included with Microsoft Office suite for Windows 2003 and
How-To Guide. Crystal Report Demo. Copyright Topaz Systems Inc. All rights reserved.
How-To Guide Crystal Report Demo Copyright Topaz Systems Inc. All rights reserved. For Topaz Systems, Inc. trademarks and patents, visit www.topazsystems.com/legal. Table of Contents Overview... 3 The
VP-ASP Shopping Cart Quick Start (Free Version) Guide Version 6.50 March 21 2007
VP-ASP Shopping Cart Quick Start (Free Version) Guide Version 6.50 March 21 2007 Rocksalt International Pty Ltd [email protected] www.vpasp.com Table of Contents 1 INTRODUCTION... 3 2 FEATURES... 4 3 WHAT
Software User's Guide
Software User's Guide Brother QL-series The contents of this guide and the specifications of this product are subject to change without notice. Brother reserves the right to make changes without notice
CREATING BANNERS & IMAGES USING MS PAINT & ANIMATED PROGRAMS
Support for Website & Online Store owners CREATING BANNERS & IMAGES USING MS PAINT & ANIMATED PROGRAMS A banner generally consist of some text and images. There are many ways in which you can make a banner,
Configuring the SST DeviceNet OPC Server
Overview This application note describes the steps necessary to configure the SST DeviceNet OPC Server for use under Windows NT (Service Pack 3 or higher). This example shows how to set up a configuration
INTRODUCTION TO ATRIUM... 2 SYSTEM REQUIREMENTS... 2 TECHNICAL DETAILS... 2 LOGGING INTO ATRIUM... 3 SETTINGS... 4 NAVIGATION PANEL...
INTRODUCTION TO ATRIUM... 2 SYSTEM REQUIREMENTS... 2 TECHNICAL DETAILS... 2 LOGGING INTO ATRIUM... 3 SETTINGS... 4 CONTROL PANEL... 4 ADDING GROUPS... 6 APPEARANCE... 7 BANNER URL:... 7 NAVIGATION... 8
Importing and Exporting With SPSS for Windows 17 TUT 117
Information Systems Services Importing and Exporting With TUT 117 Version 2.0 (Nov 2009) Contents 1. Introduction... 3 1.1 Aim of this Document... 3 2. Importing Data from Other Sources... 3 2.1 Reading
Evaluator s Guide. PC-Duo Enterprise HelpDesk v5.0. Copyright 2006 Vector Networks Ltd and MetaQuest Software Inc. All rights reserved.
Evaluator s Guide PC-Duo Enterprise HelpDesk v5.0 Copyright 2006 Vector Networks Ltd and MetaQuest Software Inc. All rights reserved. All third-party trademarks are the property of their respective owners.
Using Adobe Dreamweaver CS4 (10.0)
Getting Started Before you begin create a folder on your desktop called DreamweaverTraining This is where you will save your pages. Inside of the DreamweaverTraining folder, create another folder called
Citrix EdgeSight for Load Testing User s Guide. Citrx EdgeSight for Load Testing 2.7
Citrix EdgeSight for Load Testing User s Guide Citrx EdgeSight for Load Testing 2.7 Copyright Use of the product documented in this guide is subject to your prior acceptance of the End User License Agreement.
oit How to Make Basic Image Adjustments using Microsoft Office Picture Manager (Windows) Open a Picture in Picture Manager
oit UMass Office of Information Technologies How to Make Basic Image Adjustments using Microsoft Office Picture Manager (Windows) The Microsoft Picture Manager application is included in recent versions
FAQ for InduSoft Web Studio
FAQ for InduSoft Web Studio Database & Security System What does the Shared Tags folder store? The Shared Tags folder stores the tags imported from the PC Based Control linked to the Studio application.
ADMINISTRATORS GUIDE EPISUITE 6
ADMINISTRATORS GUIDE EPISUITE 6 A quick tutorial on how to set up and implement Episuite Software created by IDentiphoto Specialists in IDentification 1810 Joseph Lloyd Pkwy. Willoughby, OH 44094 Phone:
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
STEP BY STEP IIS, DotNET and SQL-Server Installation for an ARAS Innovator9x Test System
STEP BY STEP IIS, DotNET and SQL-Server Installation for an ARAS Innovator9x Test System Abstract The intention of this document is to ensure successful installation of 3rd-Party software required for
Changing Your Cameleon Server IP
1.1 Overview Technical Note Cameleon requires that you have a static IP address defined for the server PC the Cameleon server application runs on. Even if the server PC has a static IP address, you may
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
ImageServer Technical Note
ImageServer Technical Note Operating Environment: Windows 2000/2003 Server Software Version: 6.1 October 2005 Contents 1 Introducing ImageServer 5 1.1 Overview.......................................................
The software shall provide the necessary tools to allow a user to create a Dashboard based on the queries created.
IWS BI Dashboard Template Engineer Guide Introduction This document describes the procedures to import the Dashboard Template into an existing application, convert the project resolution, how to license
SIMATIC. WinCC V7.0. Getting started. Getting started. Welcome 2. Icons 3. Creating a project 4. Configure communication 5
SIMATIC WinCC V7.0 SIMATIC WinCC V7.0 Printout of the Online Help 1 Welcome 2 Icons 3 Creating a project 4 Configure communication 5 Configuring the Process Screens 6 Archiving and displaying values 7
CREATING BANNERS & IMAGES USING MS PAINT & ANIMATED PROGRAMS
Support for Website & Online Store owners CREATING BANNERS & IMAGES USING MS PAINT & ANIMATED PROGRAMS If you want a fantastic high quality banner/logo/image design it is recommended that you get help
PowerPoint Interface Menu Bars Work Area Slide and Outline View TASK PANE Drawing Tools
Microsoft PowerPoint is used for creating slide presentations to be used on a PC or even printed out as overheads and handouts. You can combine text, graphics, even audio and video to create exciting and
InduSoft Web Studio + Windows XP SP2. Introduction. Initial Considerations. Affected Features. Configuring the Windows Firewall
Introduction InduSoft Web Studio + Windows XP SP2 Procedures for Handling the Windows XP OS + Service Pack 2 and InduSoft Web Studio This document describes the InduSoft Web Studio (IWS) functionalities
CREATING AN IMAGE FROM AUTOCAD CADD NOTE 16. MENU: AutoCAD, File, Plot COMMAND: plot ICON:
CADD NOTE 16 This CADD Note provides instructions on creating an image from an AutoCAD drawing that can be pasted into another application (e.g., Word, Powerpoint, etc.). These instructions assume the
LDCDP 11999.GdW. L force Controls. Ä.GdWä. Software Manual. Industrial PC. WindowsR CE Thin Client. Operating system
L force Controls Ä.GdWä LDCDP 11999.GdW Software Manual Industrial PC WindowsR CE Thin Client Operating system l Please read these instructions before you start working! Follow the enclosed safety instructions.
Advanced Presentation Features and Animation
There are three features that you should remember as you work within PowerPoint 2007: the Microsoft Office Button, the Quick Access Toolbar, and the Ribbon. The function of these features will be more
Crop and Frame Your Photos
Crop and Frame Your Photos Paint Shop Pro s crop tool gives you total control over your photo compositions. Cropping allows you to turn busy portraits into professional prints. And when you have a nicely
Minimum System Requirements
1/12 Minimum System Requirements The Fuzion Media Player needs the following hardware to run optimally: - CPU: Intel Core 2 Duo 2.2 GHz or higher - Graphics Card: nvidia 9500GT or better - Operating System:
Model 288B Charge Plate Graphing Software Operators Guide
Monroe Electronics, Inc. Model 288B Charge Plate Graphing Software Operators Guide P/N 0340175 288BGraph (80207) Software V2.01 100 Housel Ave PO Box 535 Lyndonville NY 14098 1-800-821-6001 585-765-2254
Introduction to the Visual Studio.NET IDE
2 Introduction to the Visual Studio.NET IDE Objectives To be introduced to the Visual Studio.NET Integrated Development Environment (IDE). To become familiar with the types of commands contained in the
The full setup includes the server itself, the server control panel, Firebird Database Server, and three sample applications with source code.
Content Introduction... 2 Data Access Server Control Panel... 2 Running the Sample Client Applications... 4 Sample Applications Code... 7 Server Side Objects... 8 Sample Usage of Server Side Objects...
Scanning and OCR Basics
Scanning and OCR Basics Scan Text Documents into Word 2003 using OCR Software 1. Place the document to scan face down on the flatbed scanner. 2. Launch Microsoft Word 2003 for Windows. 3. Select Acquire
Jadu Content Management Systems Web Publishing Guide. Table of Contents (click on chapter titles to navigate to a specific chapter)
Jadu Content Management Systems Web Publishing Guide Table of Contents (click on chapter titles to navigate to a specific chapter) Jadu Guidelines, Glossary, Tips, URL to Log In & How to Log Out... 2 Landing
CentreWare for Microsoft Operations Manager. User Guide
CentreWare for Microsoft Operations Manager User Guide Copyright 2006 by Xerox Corporation. All rights reserved. Copyright protection claimed includes all forms and matters of copyright material and information
Creating Personal Web Sites Using SharePoint Designer 2007
Creating Personal Web Sites Using SharePoint Designer 2007 Faculty Workshop May 12 th & 13 th, 2009 Overview Create Pictures Home Page: INDEX.htm Other Pages Links from Home Page to Other Pages Prepare
Table of Contents. INTRODUCTION...v. How to Use This Manual...v Terms Used in this Manual...v Fonts Used in this Manual...v
Table of Contents INTRODUCTION...v How to Use This Manual...v Terms Used in this Manual...v Fonts Used in this Manual...v PC Hardware Requirements...vi Software Installation...vii Installing DataWorker
Information Server Documentation SIMATIC. Information Server V8.0 Update 1 Information Server Documentation. Introduction 1. Web application basics 2
Introduction 1 Web application basics 2 SIMATIC Information Server V8.0 Update 1 System Manual Office add-ins basics 3 Time specifications 4 Report templates 5 Working with the Web application 6 Working
StrikeRisk v6.0 IEC/EN 62305-2 Risk Management Software Getting Started
StrikeRisk v6.0 IEC/EN 62305-2 Risk Management Software Getting Started Contents StrikeRisk v6.0 Introduction 1/1 1 Installing StrikeRisk System requirements Installing StrikeRisk Installation troubleshooting
DiskPulse DISK CHANGE MONITOR
DiskPulse DISK CHANGE MONITOR User Manual Version 7.9 Oct 2015 www.diskpulse.com [email protected] 1 1 DiskPulse Overview...3 2 DiskPulse Product Versions...5 3 Using Desktop Product Version...6 3.1 Product
Web Portal User Guide. Version 6.0
Web Portal User Guide Version 6.0 2013 Pitney Bowes Software Inc. All rights reserved. This document may contain confidential and proprietary information belonging to Pitney Bowes Inc. and/or its subsidiaries
Installing An ActiveX Control in InTouch
Tech Note 117 Using the InTouch 7.0 ActiveX Container All Tech Notes and KBCD documents and software are provided "as is" without warranty of any kind. See the Terms of Use for more information. Topic#:
PRELIMINARY Interfacing to C++
PRELIMINARY Interfacing to C++ DataRay Inc. Interfacing to C++ in Visual Studio 2010 Covers: Interfacing DataRay Camera and Slit Scan Profilers to C++ in Visual Studio 2010 using the DataRay OCX. Start
The Reporting Console
Chapter 1 The Reporting Console This chapter provides a tour of the WebTrends Reporting Console and describes how you can use it to view WebTrends reports. It also provides information about how to customize
Microsoft Access 2010 Part 1: Introduction to Access
CALIFORNIA STATE UNIVERSITY, LOS ANGELES INFORMATION TECHNOLOGY SERVICES Microsoft Access 2010 Part 1: Introduction to Access Fall 2014, Version 1.2 Table of Contents Introduction...3 Starting Access...3
TestManager Administration Guide
TestManager Administration Guide RedRat Ltd July 2015 For TestManager Version 4.57-1 - Contents 1. Introduction... 3 2. TestManager Setup Overview... 3 3. TestManager Roles... 4 4. Connection to the TestManager
WFP Liberia Country Office
1 Oscar Gobbato [email protected] [email protected] WFP Liberia Country Office GIS training - Summary Objectives 1 To introduce to participants the basic concepts and techniques in using Geographic
TUTORIAL 4 Building a Navigation Bar with Fireworks
TUTORIAL 4 Building a Navigation Bar with Fireworks This tutorial shows you how to build a Macromedia Fireworks MX 2004 navigation bar that you can use on multiple pages of your website. A navigation bar
2010 Ing. Punzenberger COPA-DATA GmbH. All rights reserved.
2010 Ing. Punzenberger COPA-DATA GmbH All rights reserved. Distribution and/or reproduction of this document or parts thereof in any form are permitted solely with the written permission of the company
WebDisk Essentials How to Post & Retrieve Files From Your Own Online Storage Area
WebDisk Essentials How to Post & Retrieve Files From Your Own Online Storage Area OTS PUBLICATION: WD2 REVISED 1-20-2012 [email protected] OFFICE OF TECHNOLOGY SERVICES =Shortcut =Advice =Caution What
Create a Poster Using Publisher
Contents 1. Introduction 1. Starting Publisher 2. Create a Poster Template 5. Aligning your images and text 7. Apply a background 12. Add text to your poster 14. Add pictures to your poster 17. Add graphs
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
Introduction to AutoCAD 2010
Page 1 Introduction to AutoCAD 2010 Alf Yarwood Chapter 10 Exercise 1 1. Open AutoCAD 2010 with a double-click on its shortcut icon in the Windows desktop. 2. Open the template acadiso.dwt. 3. Construct
Addendum Advanced POS Printer Drivers
Addendum Advanced POS Printer Drivers Overview With the introduction of version 4.0, The General Store now supports the use of advanced, manufacturer s printer drivers for certain point of sale printers.
What is My Teamwork? What s new in this release? MY TEAMWORK 5.0 QUICK START GUIDE
MY TEAMWORK 5.0 QUICK START GUIDE What is My Teamwork? My Teamwork is a converged communications solution that combines presence-aware instant messaging with the ability to make phone calls, conference
Content Author's Reference and Cookbook
Sitecore CMS 6.5 Content Author's Reference and Cookbook Rev. 110621 Sitecore CMS 6.5 Content Author's Reference and Cookbook A Conceptual Overview and Practical Guide to Using Sitecore Table of Contents
Crystal Reports Installation Guide
Crystal Reports Installation Guide Version XI Infor Global Solutions, Inc. Copyright 2006 Infor IP Holdings C.V. and/or its affiliates or licensors. All rights reserved. The Infor word and design marks
E-Map Application CHAPTER. The E-Map Editor
CHAPTER 7 E-Map Application E-Map displays the monitoring area on an electronic map, by which the operator can easily locate the cameras, sensors and alarms triggered by motion or I/O devices. Topics discussed
TAMUS Terminal Server Setup BPP SQL/Alva
We have a new method of connecting to the databases that does not involve using the Texas A&M campus VPN. The new way of gaining access is via Remote Desktop software to a terminal server running here
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
Module 1. 4 Login-Send Message to Teacher
Module 1. 4 Login-Send Message to Teacher Students, in this lesson you will 1. Learn to login to your InterAct account. 2. Learn how to send an email message. Logging on to Students Online 1. Launch the
Business Insight Report Authoring Getting Started Guide
Business Insight Report Authoring Getting Started Guide Version: 6.6 Written by: Product Documentation, R&D Date: February 2011 ImageNow and CaptureNow are registered trademarks of Perceptive Software,
Case Closed Installation and Setup
1 Case Closed Installation and Setup Contents Installation Overview...2 Microsoft SQL Server Installation...3 Case Closed Software Installation...5 Register OCX for Printing...6 External Programs...7 Automatic
Creating, Running, and Scheduling Scripts
T H R E E Creating, Running, and Scheduling Scripts 3 When learning any new development technology, some of the most important questions are the basic "how to" nuts and bolts questions. How do I create
1. Digital Asset Management User Guide... 2 1.1 Digital Asset Management Concepts... 2 1.2 Working with digital assets... 4 1.2.1 Importing assets in
1. Digital Asset Management User Guide....................................................... 2 1.1 Digital Asset Management Concepts.................................................... 2 1.2 Working with
Inventory Tracking Software Operations Manual
Version 4.1 Inventory Tracking Software Operations Manual Shipping Address: 7201 N. 98th St., Lincoln, NE 68507 Mailing Address: P.O. Box 29709, Lincoln, NE 68529 Toll Free: 800-278-4241 System Requirements
Operating Systems. and Windows
Operating Systems and Windows What is an Operating System? The most important program that runs on your computer. It manages all other programs on the machine. Every PC has to have one to run other applications
Microsoft PowerPoint 2008
Microsoft PowerPoint 2008 Starting PowerPoint... 2 Creating Slides in Your Presentation... 3 Beginning with the Title Slide... 3 Inserting a New Slide... 3 Slide Layouts... 3 Adding an Image to a Slide...
Configure SPLM 2012 on Windows 7 Laptop
Configure SPLM 2012 on Windows 7 Laptop 7/12/2012 SmartPlant License Manager (SPLM) requires a static IP Address on the license machine. To fulfill this requirement on laptops a virtual network adapter
FactoryTalk ViewPoint Quick Start Guide
FactoryTalk ViewPoint Quick Start Guide Publication FTVP-QS002F-EN-E - September 2015 Supersedes Publication FTVP-QS002E-EN-E Important user information Read this document and the documents listed in the
IAS Web Development using Dreamweaver CS4
IAS Web Development using Dreamweaver CS4 Information Technology Group Institute for Advanced Study Einstein Drive Princeton, NJ 08540 609 734 8044 * [email protected] Information Technology Group [2] Institute
State of Michigan Data Exchange Gateway. Web-Interface Users Guide 12-07-2009
State of Michigan Data Exchange Gateway Web-Interface Users Guide 12-07-2009 Page 1 of 21 Revision History: Revision # Date Author Change: 1 8-14-2009 Mattingly Original Release 1.1 8-31-2009 MM Pgs 4,
Lotus Notes 6.x Client Installation Guide for Windows. Information Technology Services. CSULB
The goal of this document This document was created by the Information Technology Services department to assist the Lotus Notes Coordinators in the successful installation of Lotus Notes release 6 (R6)
Flash MX Image Animation
Flash MX Image Animation Introduction (Preparing the Stage) Movie Property Definitions: Go to the Properties panel at the bottom of the window to choose the frame rate, width, height, and background color
Using the Cute Rich-Text Editor
Using the Cute Rich-Text Editor This document is designed to provide users with a basic introduction to using the Cute rich-text editor to format text, create and modify tables, and to place charts and
SUMMARY Moderate-High: Requires Visual Basic For Applications (VBA) skills, network file services skills and interoperability skills.
Author: Sanjay Sansanwal Title: Configuring FileCM Extensions for Word The information in this article applies to: o FileCM 2.6, 3.0, 3.5, 3.5.1, 3.5.2, 4.0, 4.2 o Microsoft Windows 2000 Professional,
Customer Support Tool. User s Manual XE-A207 XE-A23S. Before reading this file, please read Instruction Manual of XE-A207 and XE-A23S.
XE-A207 XE-A23S Customer Support Tool User s Manual Thank you for downloading this PDF file. Before reading this file, please read Instruction Manual of XE-A207 and XE-A23S. Save or print this file so
Instructions for Use. CyAn ADP. High-speed Analyzer. Summit 4.3. 0000050G June 2008. Beckman Coulter, Inc. 4300 N. Harbor Blvd. Fullerton, CA 92835
Instructions for Use CyAn ADP High-speed Analyzer Summit 4.3 0000050G June 2008 Beckman Coulter, Inc. 4300 N. Harbor Blvd. Fullerton, CA 92835 Overview Summit software is a Windows based application that
Kepware Technologies KEPServerEX Client Connectivity Guide for GE's Proficy ifix
Kepware Technologies KEPServerEX Client Connectivity Guide for October, 2011 V. 1.105 Kepware Technologies Table of Contents 1. Overview and Requirements... 1 1.1 Installing KEPServerEX... 1 2. Preparing
MyOra 3.0. User Guide. SQL Tool for Oracle. Jayam Systems, LLC
MyOra 3.0 SQL Tool for Oracle User Guide Jayam Systems, LLC Contents Features... 4 Connecting to the Database... 5 Login... 5 Login History... 6 Connection Indicator... 6 Closing the Connection... 7 SQL
Software User's Guide
BROTHER QL-500/550/650TD/1050/1050N Software User's Guide QL-500 QL-650TD QL-550 QL-1050/1050N 1 Contents Contents....................................................................................2................................................................................4
Installing Basic PAYE Tools onto a networked computer
Installing Basic PAYE Tools onto a networked computer 1 Contents BPT RTI Network Installation Guide... 1 Contents...2 Overview and Disclaimer... 2 Guides...3 I want to install Basic PAYE Tools Real Time
Introduction to the TI Connect 4.0 software...1. Using TI DeviceExplorer...7. Compatibility with graphing calculators...9
Contents Introduction to the TI Connect 4.0 software...1 The TI Connect window... 1 Software tools on the Home screen... 2 Opening and closing the TI Connect software... 4 Using Send To TI Device... 4
Setting Up ALERE with Client/Server Data
Setting Up ALERE with Client/Server Data TIW Technology, Inc. November 2014 ALERE is a registered trademark of TIW Technology, Inc. The following are registered trademarks or trademarks: FoxPro, SQL Server,
Making a Poster Using PowerPoint 2007
Making a Poster Using PowerPoint 2007 1. Start PowerPoint: A Blank presentation appears as a Content Layout, a blank one one without anything not even a title. 2. Choose the size of your poster: Click
Using Microsoft SQL Server A Brief Help Sheet for CMPT 354
Using Microsoft SQL Server A Brief Help Sheet for CMPT 354 1. Getting Started To Logon to Windows NT: (1) Press Ctrl+Alt+Delete. (2) Input your user id (the same as your Campus Network user id) and password
Abstract. For notes detailing the changes in each release, see the MySQL for Excel Release Notes. For legal information, see the Legal Notices.
MySQL for Excel Abstract This is the MySQL for Excel Reference Manual. It documents MySQL for Excel 1.3 through 1.3.6. Much of the documentation also applies to the previous 1.2 series. For notes detailing
Shipment Label Header Guide
Shipment Label Header Guide This guide will walk you through the 3 main phases of setting up a shipment label header within World Ship 2013. This guide was made using standard Windows Microsoft Office
Database Concepts (3 rd Edition) APPENDIX D Getting Started with Microsoft Access 2007
David M. Kroenke and David J. Auer Database Concepts (3 rd Edition) APPENDIX D Getting Started with Microsoft Access 2007 Prepared by David J. Auer Western Washington University Page D-1 Microsoft product
