SLIK-DA Tutorial. Creating a simple server in Visual Studio 2013

Size: px
Start display at page:

Download "SLIK-DA Tutorial. Creating a simple server in Visual Studio 2013"

Transcription

1 SLIK-DA Tutorial Creating a simple server in Visual Studio 2013

2 Page 2 of 24 Table of Contents INTRODUCTION 3 Intended Audience 3 Pre-Requisites 3 CREATING AN OPC SERVER 4 HOW TO EXPOSE TAGS 13 ONREAD EVENT 15 SUBSCRIPTION READS 19 ONWRITE EVENT 21 ONCLIENTCONNECT AND ONCLIENTDISCONNECT EVENTS 22 SUMMARY 23 CONTACT US 24

3 Page 3 of 24 Introduction Do you have a need to incorporate OPC Server functionality within your existing Application? Or, do you need to create an OPC Server from scratch? If the answer is YES to either of these questions, then this document will tell you step-by-step how to accomplish this using Visual Studio 2013 with the SLIK-DA ActiveX Control. This detailed step-by-step guide will leave few questions with regards to how quick and easily you can create your own OPC Server. Intended Audience This paper is intended for both experienced and new developers who need to create their own customized DA Server. Pre-Requisites Some familiarity with OPC, Visual Studio 2013 and ActiveX Controls Visual Studio 2013 Although this example uses VB.NET, the SLIK-DA can be used in the following languages as well: Visual Basic C++ Borland Delphi C#

4 Page 4 of 24 Creating An OPC Server 1. Start Visual Studio To create a new application select Project next to the Create label. You can also start a new project by going to File New Project 3. Under the Visual Basic project type you will select Windows. You will want to choose the Windows Forms Applications Template. You can name your project. My project will use the default name of WindowsApplication1 Figure 1.1 Create a new Visual Studio Project. 4. When the development environment opens, you will see your blank form. We now need to add the SLIK-DA ActiveX control to our toolbox. 5. Right-click in the Toolbox section where you want to add your component. I am creating mine in its own category called Northern Dynamics. Select Choose Items to populate the list of items. This may take some time to initialize.

5 Page 5 of 24 Figure 1.2 Choose Items to add to your Toolbox (the left pane in your development environment) 6. Under the.net components tab click Browse and browse to the Interop.NDISLIKDA.dll. This is in the Redistributables folder in the location where you installed the SLIK-DA. Click Open. Figure 1.3 Browse to the Interop.NDISLIKDA.dll 7. Make sure the SLIKServer box is checked and click OK. This will add the component to the toolbox.

6 Page 6 of 24 Figure 1.4 Select the SLIK-DA control to add it to your toolbox NOTE: It is important that you add the component in this manner. The interop wrapper that is created by Visual Studio when adding the COM component is known to have problems. 8. We will now need to place an instance of the ActiveX control onto our empty form. You can either double-click on the SLIKServer Icon, or you can drag-and-drop it onto the form. Figure1.5 Add the SLIK-DA control to the form 9. With the SLIK-DA control still selected, we will now modify the Properties of the SLIK-DA ActiveX.

7 Page 7 of First, we need to give our OPC Server a unique identifier, a Class ID (CLSID). This is a long alphanumeric name that is unique and will identify this OPC Server. Locate the CLSID property in the properties window on the right and click on the drop-down. Choose AutoGenerate. Figure 1.6 AutoGenerate the CLSID and AppID 11. The automatically generated number will appear in the CLSID property. Please note that the Class ID is totally unique and it based on the hardware where the class was generated. Yours will differ from the example shown. 12. We now need to follow a similar process to create the Application ID. Locate the AppID property and select AutoGenerate from the drop=down box. Figure 1.7 The CLSID and AppID that were created for my application. 13. We will now complete the identification of our OPC Server by setting the following Properties for the SLIK-DA control in the code of our program. Double-click on any empty space on the form and

8 Page 8 of 24 the code window will open at the Form_Load event. We will set the following properties programmatically: a. ProgID = MyFirst.OPCServer.1 This is the name of the Server that users will see when browsing a list of available OPC Servers on your computer. NOTE: The.1 on the end of the name references the version number of the OPC Server. It is important that you place a number here as the SLIK-DA ActiveX control will not allow you to register the server without a.versionnumber. b. AppName = My First OPC Server This is the humanly-readable name of the OPC Server. c. Description = My First OPC Server created with SLIK-DA This is the humanly-understandable description of what the Server is for. d. VendorName = Software Toolbox, Inc. This is the name of your company. 14. This information will be entered into the Form_Load event as shown below: Figure 1.8 Creating the Identity of my OPC Server in the Form_Load event.

9 Page 9 of 24 Note: The additional Import statements and the declaration of the ISLIKTags Collection at the top of the code window will be necessary as well 15. We have now done everything necessary to identify our OPC Server, but we still need to register it with Windows. It is possible to do this from within our program by calling the RegisterServer method built in to the SLIK-DA control. However, we are going to register the OPC Server so that is can be seen by OPC Clients, but we will do this via a command-line parameter. We are choosing this method instead of the one described above because we do NOT want to register/unregister the OPC Server each time the software is opened or closed. This would prevent the Server from being used by OPC Clients while the server is not running. Therefore, we will allow the user to register the server via a command-line parameter once (preferably after the server has been installed). Likewise, the server can be unregistered through the command-line parameter (preferably when the OPC Server is uninstalled). 16. We will now append the Form_Load event to incorporate the command-line parameter as shown below.

10 Page 10 of 24 Figure 1.9 Add the command-line parameter that will allow us to register or unregister our OPC Server 17. Now we need to compile this application into an executable. Go to File Save All. You will be prompted to select the location where you want to save your application. Once the project is saved you call select Build <Name of Project> from the Build menu, where <Name of Project> is the name you gave your application when you created it. 18. Now we want to actually register the server. Go to the Windows Start Menu and click on Run. Browse to the executable you have just created and select Open. This will appear in the Browse dialog as shown below.

11 Page 11 of 24 Figure 1.10 Browse to your executable file in the command prompt 19. Next, we want to edit the command line so we can add the command-line parameter to register our server (we will use unregserver if we need to unregister our server). Figure 1.11 Modify the command-line to register the server 20. When you click OK the server will be launched, registered and closed. This may happen so fast that you do no see anything happen on the screen. This is OK. 21. Next we will want to verify that the OPC Server is listed as an installed server. You can test this by opening up an OPC Client (such as the Software Toolbox OPC Quick Client) and browse for the available Servers on your computer. The OPC Server that we just created should be displayed.

12 Page 12 of 24 Figure 1.12 Browsing the available servers using the OPC Quick Client Note: It is important to add a line to the code that will actually initialize your server. For example, you can add the Start command at the end of the Form_Load event.

13 Page 13 of 24 How to Expose Tags We will now define the Tags that our OPC Server will expose to the public. The SLIK-DA control allows us to define a Collection of OPC Tags which we have full control over. 1. We will now add a new procedure called CreateTags that will create our tags as shown below. Figure 2.1 Creating the Tags Note: In this screenshot the third line reminds you that you need to define the ISLIKTags collection globally as shown in Figure 1.8 where we created the Identity of the Server 2. We will now tell our Form_Load event to process the sub-procedure we just created by calling it. Note that this screen shot also shows how to use the StartServer method discussed above.

14 Page 14 of 24 Figure 2.2 Starting the Server and initializing our tags in the Form_Load event 3. We are now ready to test our OPC Server to see if the Tags we have created are indeed publicly available. The screen below shows the available Tags from an OPC Client. Figure 2.3 Browsing for our tags using the OPC Quick Client

15 Page 15 of 24 OnRead Event At present, our OPC Server does not do anything other than exist and expose OPC Tags to the world. As of now, we can not Read or Write to these Tags. 1. Now we are going to modify our Tags so that then have an initial value. We are going to directly modify the Tags that we created earlier in the MyTags collection. We will later call this method from the Form_Load Figure 3.1 Set test values for the variables that can be read by the Client 2. Now we are going to add our Read Handler. In the Design window of Visual Studio, click on the SLIKServer1 object. Then, in the Properties window click the Events Button. Figure 3.2 Select the SLIKServer1 object

16 Page 16 of In the Events drop-down box, choose OnRead. VS will create the heading for this event. Figure 3.3 Select the OnRead Event 4. We will add a handling script within this procedure. This event is fired when an OPC Client requests a Device Read (IOPSyncIO::Read()) for any number of Tags. Therefore, this event houses a collection of tags that will be passed back directly to the Client, after we have handled them. Note: This procedure is ONLY required when the Client has specifically asked for a Read on the tag or a group of tags. For most OPC Client applications you will want to use subscription reads. This means that the Client does not call this Read method but instead they subscribe to the Tag and then the Server automatically pushes the updated tag value to the Client as soon as the Tag s value changes. This is something that the SLIK-DA can automatically do for you. Remember, OPC Clients only call this Read method when they need the value of a tag now.

17 Page 17 of 24 Figure 3.4 Create the OnRead event procedure 5. This procedure basically iterates through the collection of Tags as passed into the Event. Each Tag is processed in the loop to see which tag is being processed using the Tag Name as our search basis. Once the tag has been identified, its value is set to that of the equivalent Variable we defined earlier. 6. Now that we have created the ability to Read our OPC Tags and that those Tags will contain the values of the variables we defined in our application, it is time to test it to see if it works. 7. In order to test the OnRead event I will use the Software Toolbox OPC Quick Client application to connect to our OPC Server to browse the Tags, and read them using the Synchronous Device Read method. Figure 3.5 Synchronous Device Read in the OPC Quick Client

18 Page 18 of 24 From within my OPC Client application, I click on the Synchronous Device Read option and wait for the new data value to show up, which should be almost instantaneous.

19 Page 19 of 24 Subscription Reads Subscription Reads differ from the type of Read that we just did in that instead of the Client asking the Server for the value of a Tag, the OPC Server instead updates the client with the tag s value whenever that value changes. This is often referred to as subscription reads, exception based reporting, or callbacks. To use this kind of method, you only need to write a value to our SLIK-DA tag. So let us add simulation ability to our server by means of a Timer Control. We will add a Timer that will modify our tags values once every second. 1. Drag and drop a Timer on to your form. The Timer control will not appear on the form, like the SLIK-DA control, but will be shown in the component tray. Set the Timer s properties to enable the timer. The interval should be set to Figure 4.1 Add the Timer to the form and set the Enabled and Interval Properties

20 Page 20 of Double click on the Timer to open the Timer_Tick event code. We will simply add some code to modify the contents of our Tags. Figure 4.2 Create the Timer_Tick event procedure 3. To test these subscriptions, simply open the OPC Quick Client again, and browse and add the tags. This time, however, you will not need to right-click on the tag and request a Synchronous Device Read to see its values. The OPC Server (SLIK-DA) will automatically push the latest Tag values into the Quick Client. This push is instantaneous i.e. whenever the SLIK-DA tag s value changes, it causes the SLIK-DA to push the value to all listening OPC Clients. In real-world servers, where you have data that you have collected from a device, for example, upon reading that data you would directly update the SLIK-DA tags as shown in this particular example. By doing this, the OPC Client would automatically receive notifications of the new tag values for those tags that the OPC Client has subscribed to.

21 Page 21 of 24 OnWrite Event Now we want to add the ability for the client to be able to write to our SLIK-DA Tags. 1. Just as you created the OnRead event by selecting it from the Event drop-down box, this time you will select the OnWrite event. We will enter code that will act and look very similar to that of our OnRead event. Instead of populating tag values with our variable values, we will instead populate our variable values from our current Tag values passed-in by the client. Figure 4.1 Create the OnWrite Event Procedure 2. We can test the OnWrite event by opening our OPC Quick Client and right-clicking on a tag. Select Synchronous Write and then write a value with a valid type into the box. Figure 4.2 Writing a 0 value to the Boolean Item Tag Now our OPC Server has the ability to receive both Read and Write requests.

22 Page 22 of 24 OnClientConnect and OnClientDisconnect Events The OnClientConnect event will be fired whenever a client tries to connect to your OPC Server. Similarly, the OnClientDisconnect event will be fired whenever a client disconnects from the Server. 1. Select the OnClientConnect event from the event drop-down box and enter the code below. In this example, we will display a message box confirming a connection has been made. Figure 5.1 Create the OnClientConnect and OnClientDisconnect procedures 2. The OnClientDisconnect event can be created in the same way using the code shown above.

23 Page 23 of 24 Summary In this tutorial we learned how to: 1. Insert the SLIK-DA ActiveX control into a Visual Basic Project 2. Configure your own OPC Server, register it with Windows and start the OPC Server 3. Test your OPC Server to see if it available by browsing for it with a client application 4. Expose tags to the public 5. Test that those tags are publicly accessible via an OPC Client Tag Browser 6. Add Event handling for Synchronous Device Read and Synchronous Device Write method calls from an OPC Client 7. Let the OPC Server automatically update OPC Clients with Tag values when they change (subscription reads)

24 Page 24 of 24 Contact Us If you have any questions or are seeking further assistance, please contact us at: Online Support: Support: Phone Support: +1 (704) Fax: +1 (704) Mailing Address: Software Toolbox, Inc. 148A East Charles Street, Matthews, NC 28105, USA

Connecting System Platform to TOP Server. Using the SuiteLink DI Object

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

More information

Kepware Technologies OPC Quick Client Connectivity Guide

Kepware Technologies OPC Quick Client Connectivity Guide Kepware Technologies OPC Quick Client Connectivity Guide August, 2010 V 1.000 Kepware Technologies Table of Contents 1. Overview and Requirements... 1 2. Connecting to KEPServerEX from the OPC Quick Client...

More information

HOW TO BURN A CD/DVD IN WINDOWS XP. Data Projects

HOW TO BURN A CD/DVD IN WINDOWS XP. Data Projects Page 1 HOW TO BURN A CD/DVD IN WINDOWS XP There are two ways to burn files to a CD or DVD using Windows XP: 1. Using Sonic RecordNow! Plus or 2. Using the Windows Explorer CD Burning with Sonic Recordnow!

More information

Kepware Technologies KEPServerEX OPC Tunnel

Kepware Technologies KEPServerEX OPC Tunnel Kepware Technologies KEPServerEX OPC Tunnel November, 2015 Ref. 1.002 2015 Kepware, Inc. Table of Contents 1. Introduction... 1 2. Overview... 1 3. Prerequisites... 1 4. Terminology... 1 5. Instructions...

More information

You must have at least Editor access to your own mail database to run archiving.

You must have at least Editor access to your own mail database to run archiving. Archiving An archive is a copy of a database you can create to store information no longer in use. Like a replica, an archive contains all documents and design elements in the original database, but unlike

More information

Xythos on Demand Quick Start Guide For Xythos Drive

Xythos on Demand Quick Start Guide For Xythos Drive Xythos on Demand Quick Start Guide For Xythos Drive What is Xythos on Demand? Xythos on Demand is not your ordinary online storage or file sharing web site. Instead, it is an enterprise-class document

More information

Presentations and PowerPoint

Presentations and PowerPoint V-1.1 PART V Presentations and PowerPoint V-1.2 Computer Fundamentals V-1.3 LESSON 1 Creating a Presentation After completing this lesson, you will be able to: Start Microsoft PowerPoint. Explore the PowerPoint

More information

Working with SQL Server Integration Services

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

More information

Walkthrough: Creating and Using an ASP.NET Web Service in Visual Web Developer

Walkthrough: Creating and Using an ASP.NET Web Service in Visual Web Developer http://msdn.microsoft.com/en-us/library/8wbhsy70.aspx Walkthrough: Creating and Using an ASP.NET Web Service in Visual Web Developer In addition to letting you create Web pages, Microsoft Visual Studio

More information

Newsletter Sign Up Form to Database Tutorial

Newsletter Sign Up Form to Database Tutorial Newsletter Sign Up Form to Database Tutorial Introduction The goal of this tutorial is to demonstrate how to set up a small Web application that will send information from a form on your Web site to a

More information

Your First Windows Mobile Application. General

Your First Windows Mobile Application. General Your First Windows Mobile Application General Contents Your First Windows Mobile Application...1 General...1 Chapter 1. Tutorial Overview and Design Patterns...3 Tutorial Overview...3 Design Patterns...4

More information

BarTender s ActiveX Automation Interface. The World's Leading Software for Label, Barcode, RFID & Card Printing

BarTender s ActiveX Automation Interface. The World's Leading Software for Label, Barcode, RFID & Card Printing The World's Leading Software for Label, Barcode, RFID & Card Printing White Paper BarTender s ActiveX Automation Interface Controlling BarTender using Programming Languages not in the.net Family Contents

More information

Create a New Database in Access 2010

Create a New Database in Access 2010 Create a New Database in Access 2010 Table of Contents OVERVIEW... 1 CREATING A DATABASE... 1 ADDING TO A DATABASE... 2 CREATE A DATABASE BY USING A TEMPLATE... 2 CREATE A DATABASE WITHOUT USING A TEMPLATE...

More information

How to connect to VUWiFi

How to connect to VUWiFi Wireless Registration Instructions Windows XP How to connect to VUWiFi 1. The first step in setting up your wireless card for VUWiFi is to open your Network Connections window. You can find this by going

More information

Publishing Geoprocessing Services Tutorial

Publishing Geoprocessing Services Tutorial Publishing Geoprocessing Services Tutorial Copyright 1995-2010 Esri All rights reserved. Table of Contents Tutorial: Publishing a geoprocessing service........................ 3 Copyright 1995-2010 ESRI,

More information

ClientAce WPF Project Example

ClientAce WPF Project Example Technical Note ClientAce WPF Project Example 1. Introduction Traditional Windows forms are being replaced by Windows Presentation Foundation 1 (WPF) forms. WPF forms are fundamentally different and designed

More information

DEPLOYING A VISUAL BASIC.NET APPLICATION

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

More information

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

More information

Colligo Email Manager 6.2. Offline Mode - User Guide

Colligo Email Manager 6.2. Offline Mode - User Guide 6.2 Offline Mode - User Guide Contents Colligo Email Manager 1 Benefits 1 Key Features 1 Platforms Supported 1 Installing and Activating Colligo Email Manager 3 Checking for Updates 4 Updating Your License

More information

REDUCING YOUR MICROSOFT OUTLOOK MAILBOX SIZE

REDUCING YOUR MICROSOFT OUTLOOK MAILBOX SIZE There are several ways to eliminate having too much email on the Exchange mail server. To reduce your mailbox size it is recommended that you practice the following tasks: Delete items from your Mailbox:

More information

PRELIMINARY Interfacing to C++

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

More information

Kepware Technologies KEPServerEX Client Connectivity Guide for GE's Proficy ifix

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

More information

KPN SMS mail. Send SMS as fast as e-mail!

KPN SMS mail. Send SMS as fast as e-mail! KPN SMS mail Send SMS as fast as e-mail! Quick start Start using KPN SMS mail in 5 steps If you want to install and use KPN SMS mail quickly, without reading the user guide, follow the next five steps.

More information

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 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.

More information

Smartphone Development Tutorial

Smartphone Development Tutorial Smartphone Development Tutorial CS 160, March 7, 2006 Creating a simple application in Visual Studio 2005 and running it using the emulator 1. In Visual Studio 2005, create a project for the Smartphone

More information

Using Microsoft Visual Studio 2010. API Reference

Using Microsoft Visual Studio 2010. API Reference 2010 API Reference Published: 2014-02-19 SWD-20140219103929387 Contents 1... 4 Key features of the Visual Studio plug-in... 4 Get started...5 Request a vendor account... 5 Get code signing and debug token

More information

Ipswitch Client Installation Guide

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

More information

Microsoft Office 365 Portal

Microsoft Office 365 Portal Microsoft Office 365 Portal Once you logon, you are placed in the Admin page if you are an adminstrator. Here you will manage permissions for SharePoint, install Office Professional for Windows users,

More information

How to Mail Merge PDF Documents

How to Mail Merge PDF Documents How to Mail Merge PDF Documents A step-by-step guide to creating personalized documents Table of Contents What is a mail merge?... 2 What do I need to start?... 2 Step 1: How to create a PDF document?...

More information

28 What s New in IGSS V9. Speaker Notes INSIGHT AND OVERVIEW

28 What s New in IGSS V9. Speaker Notes INSIGHT AND OVERVIEW 28 What s New in IGSS V9 Speaker Notes INSIGHT AND OVERVIEW Contents of this lesson Topics: New IGSS Control Center Consolidated report system Redesigned Maintenance module Enhancement highlights Online

More information

http://expression.microsoft.com/en-us/dd571513(printer).aspx

http://expression.microsoft.com/en-us/dd571513(printer).aspx Page 1 of 6 2009 Microsoft Corporation. All rights reserved. Create a Database Search Page Using Expression Web Authors:Clark Kurtz [ http://social.expression.microsoft.com/en-us/profile/?user=clarknk

More information

Only smart people read the manual.

Only smart people read the manual. Only smart people read the manual. Contents Getting Started... 1 Installing the FreeAgent Tools... 1 Using the FreeAgent Tools Icons... 9 Using the System Tray Icon... 10 Disconnecting the FreeAgent Drive...

More information

SQL Server 2005: Report Builder

SQL Server 2005: Report Builder SQL Server 2005: Report Builder Table of Contents SQL Server 2005: Report Builder...3 Lab Setup...4 Exercise 1 Report Model Projects...5 Exercise 2 Create a Report using Report Builder...9 SQL Server 2005:

More information

HP External Hard Disk Drive Backup Solution by Seagate User Guide. November 2004 (First Edition) Part Number 373652-001

HP External Hard Disk Drive Backup Solution by Seagate User Guide. November 2004 (First Edition) Part Number 373652-001 HP External Hard Disk Drive Backup Solution by Seagate User Guide November 2004 (First Edition) Part Number 373652-001 Copyright 2004 Hewlett-Packard Development Company, L.P. The information contained

More information

Composite.Community.Newsletter - User Guide

Composite.Community.Newsletter - User Guide Composite.Community.Newsletter - User Guide Composite 2015-11-09 Composite A/S Nygårdsvej 16 DK-2100 Copenhagen Phone +45 3915 7600 www.composite.net Contents 1 INTRODUCTION... 4 1.1 Who Should Read This

More information

OrgPublisher EChart Server Setup Guide

OrgPublisher EChart Server Setup Guide Table of Contents Table of Contents Introduction... 3 Role Requirements for Installation... 3 Prerequisites for Installation... 3 About OrgPublisher ECharts... 3 About EChart Rich Client Publishing...

More information

How to start creating a VoIP solution with Ozeki VoIP SIP SDK

How to start creating a VoIP solution with Ozeki VoIP SIP SDK Lesson 2 How to start creating a VoIP solution with Ozeki VoIP SIP SDK Abstract 2012. 01. 12. The second lesson of will show you all the basic steps of starting VoIP application programming with Ozeki

More information

Visual Studio.NET Database Projects

Visual Studio.NET Database Projects Visual Studio.NET Database Projects CHAPTER 8 IN THIS CHAPTER Creating a Database Project 294 Database References 296 Scripts 297 Queries 312 293 294 Visual Studio.NET Database Projects The database project

More information

About the To-Do Bar in Outlook 2007

About the To-Do Bar in Outlook 2007 Exchange Outlook 007 How To s / Tasks (Advanced ) of 8 Tasks in the Microsoft Office system are similar to a to-do list. Tasks make it easy to use Microsoft Office Outlook 007 to organize your time and

More information

Intellect Platform - The Workflow Engine Basic HelpDesk Troubleticket System - A102

Intellect Platform - The Workflow Engine Basic HelpDesk Troubleticket System - A102 Intellect Platform - The Workflow Engine Basic HelpDesk Troubleticket System - A102 Interneer, Inc. Updated on 2/22/2012 Created by Erika Keresztyen Fahey 2 Workflow - A102 - Basic HelpDesk Ticketing System

More information

Create a Simple Website. Intel Easy Steps 1 2012 Intel Corporation All rights reserved.

Create a Simple Website. Intel Easy Steps 1 2012 Intel Corporation All rights reserved. Create a Simple Website Intel Easy Steps 1 2012 Intel Corporation Website Creating a Simple Website As more and more people are using the Internet to get information, it has become very important for businesses

More information

Configure SPLM 2012 on Windows 7 Laptop

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

More information

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 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.

More information

USING MS OUTLOOK. Microsoft Outlook

USING MS OUTLOOK. Microsoft Outlook USING MS OUTLOOK In this tutorial you will learn how to use Microsoft Outlook with your EmailHosting.com account. You will learn how to setup an IMAP account, and also how to move your emails and contacts

More information

OmniServer UA Interface Tutorial. A Guide to Configuring the OmniServer OPC UA Server Settings

OmniServer UA Interface Tutorial. A Guide to Configuring the OmniServer OPC UA Server Settings OmniServer UA Interface Tutorial A Guide to Configuring the OmniServer OPC UA Server Settings Page 2 of 14 Table of Contents INTRODUCTION 3 Introduction to OPC UA 3 Introduction to OmniServer 4 Intended

More information

Subscribe to RSS in Outlook 2007. Find RSS Feeds. Exchange Outlook 2007 How To s / RSS Feeds 1of 7

Subscribe to RSS in Outlook 2007. Find RSS Feeds. Exchange Outlook 2007 How To s / RSS Feeds 1of 7 Exchange Outlook 007 How To s / RSS Feeds of 7 RSS (Really Simple Syndication) is a method of publishing and distributing content on the Web. When you subscribe to an RSS feed also known as a news feed

More information

Configuring the SST DeviceNet OPC Server

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

More information

Remote Viewer Recording Backup

Remote Viewer Recording Backup Remote Viewer Recording Backup Introduction: In this tutorial we will explain how to retrieve your recordings using the Web Service online. Using this method you can backup videos onto your computer using

More information

SECURE MOBILE ACCESS MODULE USER GUIDE EFT 2013

SECURE MOBILE ACCESS MODULE USER GUIDE EFT 2013 SECURE MOBILE ACCESS MODULE USER GUIDE EFT 2013 GlobalSCAPE, Inc. (GSB) Address: 4500 Lockhill-Selma Road, Suite 150 San Antonio, TX (USA) 78249 Sales: (210) 308-8267 Sales (Toll Free): (800) 290-5054

More information

Your First App Store Submission

Your First App Store Submission Your First App Store Submission Contents About Your First App Store Submission 4 At a Glance 5 Enroll in the Program 5 Provision Devices 5 Create an App Record in itunes Connect 5 Submit the App 6 Solve

More information

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

More information

OrgPublisher 11 Web Administration Installation for Windows 2008 Server

OrgPublisher 11 Web Administration Installation for Windows 2008 Server OrgPublisher 11 Web Administration Installation for Windows 2008 Server Table of Contents Web Administration Installation Guide for Windows 2008 Server Installing IIS 7 on Server 2008... 4 Installing OrgPublisher

More information

Colligo Email Manager 6.0. Offline Mode - User Guide

Colligo Email Manager 6.0. Offline Mode - User Guide 6.0 Offline Mode - User Guide Contents Colligo Email Manager 1 Key Features 1 Benefits 1 Installing and Activating Colligo Email Manager 2 Checking for Updates 3 Updating Your License Key 3 Managing SharePoint

More information

USING MS OUTLOOK WITH FUSEMAIL

USING MS OUTLOOK WITH FUSEMAIL USING MS OUTLOOK WITH FUSEMAIL In this tutorial you will learn how to use Microsoft Outlook with your FuseMail account. You will learn how to setup an IMAP account, and also how to move your emails and

More information

Crystal Reports Payroll Exercise

Crystal Reports Payroll Exercise Crystal Reports Payroll Exercise Objective This document provides step-by-step instructions on how to build a basic report on Crystal Reports XI on the MUNIS System supported by MAISD. The exercise will

More information

Colligo Email Manager 6.0. Connected Mode - User Guide

Colligo Email Manager 6.0. Connected Mode - User Guide 6.0 Connected Mode - User Guide Contents Colligo Email Manager 1 Benefits 1 Key Features 1 Platforms Supported 1 Installing and Activating Colligo Email Manager 2 Checking for Updates 3 Updating Your License

More information

SharePoint Wiki Redirect Installation Instruction

SharePoint Wiki Redirect Installation Instruction SharePoint Wiki Redirect Installation Instruction System Requirements: Microsoft Windows SharePoint Services v3 or Microsoft Office SharePoint Server 2007. License management: To upgrade from a trial license,

More information

Using SQL Reporting Services with Amicus

Using SQL Reporting Services with Amicus Using SQL Reporting Services with Amicus Applies to: Amicus Attorney Premium Edition 2011 SP1 Amicus Premium Billing 2011 Contents About SQL Server Reporting Services...2 What you need 2 Setting up SQL

More information

owncloud Configuration and Usage Guide

owncloud Configuration and Usage Guide owncloud Configuration and Usage Guide This guide will assist you with configuring and using YSUʼs Cloud Data storage solution (owncloud). The setup instructions will include how to navigate the web interface,

More information

email-lead Grabber Business 2010 User Guide

email-lead Grabber Business 2010 User Guide email-lead Grabber Business 2010 User Guide Copyright and Trademark Information in this documentation is subject to change without notice. The software described in this manual is furnished under a license

More information

USING OUTLOOK WITH ENTERGROUP. Microsoft Outlook

USING OUTLOOK WITH ENTERGROUP. Microsoft Outlook USING OUTLOOK WITH ENTERGROUP In this tutorial you will learn how to use Outlook with your EnterGroup account. You will learn how to setup an IMAP or POP account, and also how to move your emails and contacts

More information

Introduction to Microsoft Access 2003

Introduction to Microsoft Access 2003 Introduction to Microsoft Access 2003 Zhi Liu School of Information Fall/2006 Introduction and Objectives Microsoft Access 2003 is a powerful, yet easy to learn, relational database application for Microsoft

More information

PC Agent Quick Start. Open the Agent. Autonomy Connected Backup. Version 8.8. Revision 0

PC Agent Quick Start. Open the Agent. Autonomy Connected Backup. Version 8.8. Revision 0 T E C H N I C A L N O T E Autonomy Connected Backup Version 8.8 PC Agent Quick Start Revision 0 Use this document as a quick reference for common Connected Backup PC Agent tasks. If the Agent is not on

More information

TAMUS Terminal Server Setup BPP SQL/Alva

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

More information

Desktop Messenger 4.9 USER GUIDE 2011-03-29

Desktop Messenger 4.9 USER GUIDE 2011-03-29 Desktop Messenger 4.9 USER GUIDE 2011-03-29 TABLE OF CONTENTS 1. Introduction 4 2. Requirements 4 3. Install and register 4 4. Contacts 5 4.1. Add new contact 5 4.2. Add new group 5 4.3. Auto-complete

More information

Flash Objects. Dynamic Content 1

Flash Objects. Dynamic Content 1 Dynamic Content 1 The WebPlus Gallery tab provides a wide range of predesigned Flash banners that you can add to your site, and customize to suit your needs. In addition, it s very easy to add your own

More information

What is My Teamwork? What s new in this release? MY TEAMWORK 5.0 QUICK START GUIDE

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

More information

MATLAB Distributed Computing Server with HPC Cluster in Microsoft Azure

MATLAB Distributed Computing Server with HPC Cluster in Microsoft Azure MATLAB Distributed Computing Server with HPC Cluster in Microsoft Azure Introduction This article shows you how to deploy the MATLAB Distributed Computing Server (hereinafter referred to as MDCS) with

More information

User Guide. Laplink Software, Inc. User Guide MN-LLE-EN-05 (REV. 2/2010) h t t p : / / w w w. l a p l i n k. c o m / h e l p

User Guide. Laplink Software, Inc. User Guide MN-LLE-EN-05 (REV. 2/2010) h t t p : / / w w w. l a p l i n k. c o m / h e l p 1 Laplink Software, Inc. Customer Service/Technical Support: Web: http://www.laplink.com/help E-mail: CustomerService@laplink.com User Guide Laplink Software, Inc. 14335 NE 24th Street, Suite 201 Bellevue,

More information

Unified Messaging. User Guide

Unified Messaging. User Guide Unified Messaging User Guide Notice This user guide is released by Inter-Tel, Inc. as a guide for end-users. It provides information necessary to use Unified Messaging v2.2. The contents of this user

More information

Scribe Online Integration Services (IS) Tutorial

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,

More information

Microsoft Outlook 2010

Microsoft Outlook 2010 Microsoft Outlook 2010 Prepared by Computing Services at the Eastman School of Music July 2010 Contents Microsoft Office Interface... 4 File Ribbon Tab... 5 Microsoft Office Quick Access Toolbar... 6 Appearance

More information

Changing Your Cameleon Server IP

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

More information

Outlook 2007 and SharePoint Server 2007

Outlook 2007 and SharePoint Server 2007 SharePoint Integration How To s / Outlook Integration of 3 Resource Description In this guide, you ll find general information about how Outlook 007 and SharePoint Server 007 work together. These products

More information

How To Use Outlook On A Pc Or Macbook With A Pc (For A Pc) Or Macintosh (For An Ipo) With A Macbook Or Ipo With A Ipo (For Pc) With An Outlook (For Macbook

How To Use Outlook On A Pc Or Macbook With A Pc (For A Pc) Or Macintosh (For An Ipo) With A Macbook Or Ipo With A Ipo (For Pc) With An Outlook (For Macbook Outlook for Mac Getting started, reading and sending emails When you use Outlook for the first time, we suggest starting with a few minor adjustments to make the interface more familiar. From the View

More information

Vodafone PC SMS 2010. (Software version 4.7.1) User Manual

Vodafone PC SMS 2010. (Software version 4.7.1) User Manual Vodafone PC SMS 2010 (Software version 4.7.1) User Manual July 19, 2010 Table of contents 1. Introduction...4 1.1 System Requirements... 4 1.2 Reply-to-Inbox... 4 1.3 What s new?... 4 2. Installation...6

More information

Ans.: Spam Monitor support all popular email programs such as Outlook, Outlook Express, Netscape Mail, Mozilla Mail, Eudora or Opera

Ans.: Spam Monitor support all popular email programs such as Outlook, Outlook Express, Netscape Mail, Mozilla Mail, Eudora or Opera Faqs > Spam Monitor General Q1. What is Spam Monitor? Ans.: Spam Monitor is an easy-to-use spam filter that detects and isolates unsolicited junk mail sent to your mailbox. Designed for computer users,

More information

Simple Computer Backup

Simple Computer Backup Title: Simple Computer Backup (Win 7 and 8) Author: Nancy DeMarte Date Created: 11/10/13 Date(s) Revised: 1/20/15 Simple Computer Backup This tutorial includes these methods of backing up your PC files:

More information

CTERA Agent Sync Edition for Windows

CTERA Agent Sync Edition for Windows Quick Walkthrough CTERA Agent Sync Edition for Windows November 2012 Version 3.2 2012, CTERA Networks. All rights reserved. 1 Install CTERA Agent for Windows Tip For more detailed information, refer to

More information

Hands-On Lab. Building a Data-Driven Master/Detail Business Form using Visual Studio 2010. Lab version: 1.0.0. Last updated: 12/10/2010.

Hands-On Lab. Building a Data-Driven Master/Detail Business Form using Visual Studio 2010. Lab version: 1.0.0. Last updated: 12/10/2010. Hands-On Lab Building a Data-Driven Master/Detail Business Form using Visual Studio 2010 Lab version: 1.0.0 Last updated: 12/10/2010 Page 1 CONTENTS OVERVIEW... 3 EXERCISE 1: CREATING THE APPLICATION S

More information

Instructions for Configuring a SAS Metadata Server for Use with JMP Clinical

Instructions for Configuring a SAS Metadata Server for Use with JMP Clinical Instructions for Configuring a SAS Metadata Server for Use with JMP Clinical These instructions describe the process for configuring a SAS Metadata server to work with JMP Clinical. Before You Configure

More information

USER GUIDE. Ethernet Configuration Guide (Lantronix) P/N: 2900-300321 Rev 6

USER GUIDE. Ethernet Configuration Guide (Lantronix) P/N: 2900-300321 Rev 6 KRAMER ELECTRONICS LTD. USER GUIDE Ethernet Configuration Guide (Lantronix) P/N: 2900-300321 Rev 6 Contents 1 Connecting to the Kramer Device via the Ethernet Port 1 1.1 Connecting the Ethernet Port Directly

More information

Automating Administration with SQL Agent

Automating Administration with SQL Agent Automating Administration with SQL Agent Automating Administration with SQL Agent Objectives Configure SQL Server Agent. Set SQL Server Agent properties. Configure a fail-safe operator. Create operators.

More information

Content Author's Reference and Cookbook

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

More information

Microsoft Expression Web

Microsoft Expression Web Microsoft Expression Web Microsoft Expression Web is the new program from Microsoft to replace Frontpage as a website editing program. While the layout has changed, it still functions much the same as

More information

Getting Started using the SQuirreL SQL Client

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

More information

E-commerce. Further Development 85

E-commerce. Further Development 85 Further Development 85 If you ve ever bought anything online, you ll know how simple the process can be as a buyer. But how difficult is it to set up your own e-store? Fortunately with WebPlus, the process

More information

Rational Quality Manager. Quick Start Tutorial

Rational Quality Manager. Quick Start Tutorial Rational Quality Manager Quick Start Tutorial 1 Contents 1. Introduction... 2 2. Terminology... 3 3. Project Area Preparation... 4 3.1 Adding Users and specifying Roles... 4 3.2 Managing Tool Associations...

More information

Allworx OfficeSafe Operations Guide Release 6.0

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,

More information

Wave IP 2.0 SP1. Wave ViewPoint User Guide

Wave IP 2.0 SP1. Wave ViewPoint User Guide Wave IP 2.0 SP1 Wave ViewPoint User Guide 2011 by Vertical Communications, Inc. All rights reserved. Vertical Communications and the Vertical Communications logo and combinations thereof and Vertical ViewPoint

More information

ONBASE OUTLOOK CLIENT GUIDE for 2010 and 2013

ONBASE OUTLOOK CLIENT GUIDE for 2010 and 2013 To install Outlook 2010/2013 client Note: NOT currently compatible with Windows 10. Make sure your version of outlook is 32bit if not reinstall your version of Microsoft Office to the 32bit version. Must

More information

OPC Quick Client Users Guide. Version 4.70.95 (OPC 1.0-3.0 Interfaces)

OPC Quick Client Users Guide. Version 4.70.95 (OPC 1.0-3.0 Interfaces) OPC Quick Client Users Guide Version 4.70.95 (OPC 1.0-3.0 Interfaces) Page 2 of 78 Table of Contents INTRODUCTION 5 Overview 5 Intended Audience 6 OPC Quick Client as a Testing Tool 6 LAUNCHING OPC QUICK

More information

RedundancyMaster Help. 2014 Kepware Technologies

RedundancyMaster Help. 2014 Kepware Technologies 2014 Kepware Technologies 2 RedundancyMaster Help Table of Contents Table of Contents 2 Introduction 4 System Requirements 10 Accessing the Administration Menu 11 Setting Up Redundancy 11 Adding Redundancy

More information

BIGPOND ONLINE STORAGE USER GUIDE Issue 1.1.0-18 August 2005

BIGPOND ONLINE STORAGE USER GUIDE Issue 1.1.0-18 August 2005 BIGPOND ONLINE STORAGE USER GUIDE Issue 1.1.0-18 August 2005 PLEASE NOTE: The contents of this publication, and any associated documentation provided to you, must not be disclosed to any third party without

More information

2) Sharing Projects Made easy by IntelliGantt s Share Wizard, there are three share options to fit the needs of your project.

2) Sharing Projects Made easy by IntelliGantt s Share Wizard, there are three share options to fit the needs of your project. Introduction TeamDirection IntelliGantt solutions allows you and the rest of your project team to collaborate on your projects together. How you would like work together is up to you. The project manager

More information

Outlook 2007 EXPLORE THE OUTLOOK USER INTERFACE. Microsoft. Basic Tasks

Outlook 2007 EXPLORE THE OUTLOOK USER INTERFACE. Microsoft. Basic Tasks Microsoft Outlook 2007 Basic Tasks EXPLORE THE OUTLOOK USER INTERFACE 1. Instant Search box: Helps you quickly find items in Microsoft Outlook. The Instant Search pane is always available in all of your

More information

Sophos Mobile Control Installation guide. Product version: 3

Sophos Mobile Control Installation guide. Product version: 3 Sophos Mobile Control Installation guide Product version: 3 Document date: January 2013 Contents 1 Introduction...3 2 The Sophos Mobile Control server...4 3 Set up Sophos Mobile Control...16 4 External

More information

Email Archiving. Follow these steps to archive your email:

Email Archiving. Follow these steps to archive your email: Email Archiving Archiving is a process by which your email messages and attached files are moved from the database on our email server to a location on your computer. This document contains step-by-step

More information

Installing Windows Server Update Services (WSUS) on Windows Server 2012 R2 Essentials

Installing Windows Server Update Services (WSUS) on Windows Server 2012 R2 Essentials Installing Windows Server Update Services (WSUS) on Windows Server 2012 R2 Essentials With Windows Server 2012 R2 Essentials in your business, it is important to centrally manage your workstations to ensure

More information