Medical informatics Course Work: Interactions Spring Heidi Vähämaa Marjo Linja Niaz Mohammad

Size: px
Start display at page:

Download "Medical informatics Course Work: Interactions Spring 2005. Heidi Vähämaa Marjo Linja Niaz Mohammad"

Transcription

1 Medical informatics Course Work: Interactions Spring 2005 Heidi Vähämaa Marjo Linja Niaz Mohammad

2 1 Introduction Our task was to develop an IT solution related to interactions between medicines. Since the field is huge there are thousands of known medicines and even more known interactions between them the focus was narrowed down to antihypertensives and the drugs interacting with them. We have gathered some examples from each class of antihypertensives and searched for medication that interact with them. The major sources in our search has been the internet and Pharmaca fennica. 1.1 Interactions It s very common and sometimes even necessary to take many pharmaceuticals simultaneously. Pharmaceutical chemicals might strengthen or weaken each other s effect and the interactions might be harmful or useful; toxicity might develop or smaller dosage is enough and thereby the occurrence of ill effects diminish. Therefore all the information about the possible interactions is important. Interaction can be synergistic or antagonistic. When the synergism of two drugs is as big as the sum of their actions the synergism is called additive and if the synergism is bigger than the sum of their actions it s called supra-additive. Physiologically this means that the absorption of the drug might change, their bonding with plasma proteins or transport might change or their secretion might change. 1.2 Hypertension Blood pressure is the cardiac output (The volume of blood discharged from the ventricle (or the heart) per minute) times total peripheral resistance. Blood pressure is called hypertension when it s more than 140/85 mmhg. The medication is selected considering other illnesses and the damage to the target organ. Half of the men in Finland between the ages 35 and 64 have hypertension and 33% of the women as well. Hypertension is influenced by the genetic effect and the way of life. The risk factors that can be changed are overweight, additional supply of sodium, excessive drinking of alcohol and insufficient physical exercise. Secondary hypertension can be caused by certain drugs like steroids or medical conditions like Cushing s syndrome. Also pregnancy or eating too much liquorice might cause hypertension temporarily Treating hypertension Drugs used in treating hypertension can be divided into 6 groups. 1. Alpha blockers Widens the peripheral arterioles 2. Beta blockers Decrease the cardiac output by decreasing the pulse rate and the contraction volume 3. ACE inhibitors Widens the blood vessels 4. Angiotensin blockers Widens the blood vessels

3 5. Diuretics Increase the secretion of sodium and water and thereby decrease the amount of exocellular fluid and the volume of plasma 6. Calcium Blockers Widens the blood vessels and decrease the cardiac output 2 Analysis When a doctor prescribes drugs for a patient he should always be aware of potential interactions between patients medication. The decissions must often be made in couple of minutes. It's essential that the doctor has proper tools for finding all the needed information. Mistakes may have catastrophic consequences for the patient. The potential interactions should be recognized based on current medication and medical conditions of the patient. All interactions consisting of pharmaceuticals drugs and conditions should be recognized: Current drugs: D1 D2 D3 D4 Matching interactions: D1 Interaction 1 D2 D3 Interaction 2 D2 Sometimes might also be useful to just check all the interactions in which the target drug is involved in. Current drugs: D1 Matching interactions: D1 Interaction 1 D2 An interaction may consist of one or more pharmaceuticals and medical conditions. Also the medicin may be a concrete drug (such as verapamil ) or a group of drugs (such as calsium channel blockers ). If an interaction involves a group, it also involves all the drugs within the group. D2 Current drugs: D2 Group 1 Matching interactions: G1 Interaction 3 D5

4 One usability requirement is that the drugs can be selected easily and that they can be identified uniquely. The brand names, however, can be omitted. Different brands may contain exactly the same active chemical compound. The requirements can be satisfied either by identifying the pharmaceuticals 1) by their active compounds. The problem is, however, that the compounds may have different names in different languages. The names can be also easily misspelled. 2) by their ATC code (anatomical therapeutic chemical [1]). Cardiac and vessel disease medication C Selective cardiac calsium channel blockers C08D Calsium channel blockers C08 Phenylalkylamins C08DA Verapamil C08DA01 ATC code consists of five parts: 1) letter 2) two digits 3) letter 4) letter 5) two digits Example: Verapamil: C 08 D A 01 Within the atc system, the drugs are organized in groups. Also the groups have unique codes, but they differentiate from the drug codes as the last identifiers are empty. The more general the group is, the less identifiers it has within its atc. Example: Calsium channel blockers: C 08 The structure of ATC-codes can be Figure 1: An example of the relationship considered as a tree. In the tree the between the ATC codes and the groups of drugs subgroups of drugs form subtrees and the drugs represent leaves. (figure 1) Compared to the number of all possible interactions, there are only few known interactions. Most drugs probably don't interact with each other. However, for those drugs who do have a therapeutically signicant interactions, it's also essential to distinguish between the different types of interactions. The interactions can be organized in following main categories: Recommended combination Neutral combination (can be also interpreted as no harmful interactions ) Risky combination, should be monitored. Dangerous combination, should be avoided. Possible interaction, however not tested. Also the drugs are affected various ways within the interactions: Increase effect Reduce effect No change in effect Other (for example, a new kind of side effect)

5 3 The Interactions We gathered approximately 150 interactions between the antihypertensives and other medication and medical conditions. Figure 2 shows these interactions. The types of the interactions are distinguished by colour; green stands for recommended, yellow for pay attention, red for avoid, black for neutral and blue for not tested enough, possible. Figure 2: Visualization of the database.

6 4 Database As simplest, the application can be a graphical user interface attached to a simple interaction database. Essential components of the interactions are drugs and the medical conditions. Figure 3 shows an interaction sketched as ER diagram.the diagram can be easily converted to a database. atc effect DRUG m has n compound description type description INTERACTION name description id CONDITION m has n Figure 3 ER converted to a database

7 4.1 Tables DRUG A single entry in table drug may represent a single drug (for example, verapamil ) or a group of drugs (for example, calsium channel blockers ). atc Drugs can be identified based on a ATC code that consists of five parts. Compound Name of the active compound. For groups, this field contains the group title. Description The medicine may also contain a short textual description. DRUGINTERACTION A table to establish a relation between DRUG and INTERACTION atc The drug to be added to the interaction. Id Id number of the interaction. Effect The change in the effect of this drug within the interaction. 0: up 1: down 2: no effect 3: other INTERACTION A single interaction may involve one or more medicines and medical conditions. Type The type of interaction 0: Recommended combination 1: Neutral 2: Pay attention (risk exists) 3: Avoid 4: Not tested but possibility exists id A unique id number for distinguishing interactions from each other. Description A short textual description. CONDITIONINTERACTION A table that links CONDITION to INTERACTION. - condname Name of the condition to be linked. - intid Id number of the interaction. CONDITION This table ensures that the same writing is always used for the same medical condition. Name A unique name for the condition. Description An optional short description. 4.2 Required features in user interface List of drugs to be considered List of medical conditions to be considered An ability add and remove items on previous two lists. A button that initiates the search for interactions between the selected items A result list representing matching interactions. An output text area for textual description of interactions.

8 5 The application Java was selected as the implementation language because our group had most experience in using java development tools. The program was implemented as stand-alone application. Also an applet based user interface was considered, but the idea was never concretized because a network based application would had required a database on public ip-address. However, if needed, the application can be easily converted later into a network based one. Interaction Base main uses creates db uses gui The database was implemented as an access file. The current implementation does not have take multiuser case into consideration, as it is highly improbable that several users would utilize the application on the same computer. In addition, the end users will use the database as a data source, no updates are performed on the database. In principle, the multiuser circumstances should not affect the functionality of the application. However, this cannot be guaranteed because the case is not tested. Figure 4 Packages The application consists of two main components: graphical user interface (package gui) and database connection (package db). Access point of the application lies in package main. Graphical user interface utilizes the database via interface provided by db. Db possesses the actual database connection through ODBC (figure 4). 5.1 db It's probable that same drugs and interactions are reviewed several times within the same session. For efficiency related reasons, db stores the loaded interactions and drugs into a cache. There's no real risk that the database would change meanwhile since a standard end user does not normally modify the database. All drug/interaction related information does not have to be loaded at once: Single drug involves several interactions and correspondingly single interaction involves several drugs and medical conditions. The elements are loaded in a greedy manner: on the first request, the corresponding object is created however, no data is loaded into the object from the database. The only initial information contained by the object will be its unique id code (atc code for drugs, id number for interactions, name for medical conditions). If more information about the object is requested later, the object will send a request to the databaseconnection, which will concequently load and set the data.

9 5.2 gui There are two major classes within gui package: InteractionBrowser and Editor. InteractionBrowser implements the actual application, as the Editor operates as a convenience component that provides a consistent way for adding drugs and interactions to the database. 5.3 main Package main consists of single class Main which provides the starting point of the application. The application can be launched from command prompt with argument read to initiate InteractionBrowser or write to initiate the Editor. DatabaseConnection InteractionBrowser gui Drug implements DrugInstance DrugInteraction db Interaction Implements InteractionInstance Editor creates Main creates Condition main MedicalCondition implements Public classes & interfaces Private classes Packages Figure 5 Detailed description of packages Ideas for the future: More drugs and interactions to the database. Ability to find drugs based on their names (English/Finnish/Swedish) Possibility to search drugs based on current conditions and medication.

10 6 Manual 6.1 Installation requirements - Windows (tested in XP and 2000 pro) - JRE or higher [2] - Microsoft Access ODBC driver (delivered with microsoft office) 6.2 Installation 1) Copy the contents of the zip into a proper folder on your hard disk. 2) Select from control panel (ohjauspaneeli) > administrator tools (valvontatyökalut) > ODBC 3) select sheet system (or user) data sources DSN (järjestelmätietolähteet) 4) Click add... 5) Select Microsoft access driver 6) Name the database as interactionbase 7) Select the database db1.mdb from the folder to which you copied the zip contents. 8) Ok. 5.3 Running the browser Double click on the browser -icon. The window should appear:

11 6.3.1 Finding interactions Add to the list each pharmaceutical that the patient is taking. The pharmaceuticals are added by typing the ATC code on the text field (on the top) and clicking Add medicine Correspondingly, add each medical condition that concerns the patient. The conditions can be selected from the combo box. Click Find to see all the interactions that consist of selected items. The results are listed on the combo box Results. The interactions can be viewed by selecting items from the result list. Also all the interactions concerning one drug can be brought to the result list by double clicking the code of the drug on the search list. 6.4 Running the Editor Medical conditions can be added to the database currently only manually (table conditions ). However, for the drugs and the interactions there exists a convenience editor. Double click on editor icon. The Editor window will open Adding drugs: Select tab Medicines You can either write the ATC code or Finnish or Swedish name for the active compound. If the checkbox look from register is selected, the corresponding property is searched from text file atc.txt.

12 6.4.2 Adding interactions: - Select tab interactions. Select each involved drug and condition from the lists by double click. For each drug, you must specify the type of effect within the interaction (whether the effect of the drug is increased, reduced, remaining the same or something else). Select type of the interaction from the combo box list on upper right corner. You can also write a short description on the text area on the right. Click Add interaction. The database is updated when the editor is closed Adding medical conditions So far there's no graphical user interface for adding medical conditions to the database. This has to be accomplished manually on the database (db1.mdb) table condition. Notice that this editor supports only one user at a time. That's why it's extremely important to coordinate the usage of the database with care. If two persons update the database simultanously, there's no way to combine the two versions afterwards. 7 References [1] ATC codes [2] java runtime environment jre-1.5.0_03-oth-jpr&siteid=jsc&transactionid=noreg

High Blood Pressure (Essential Hypertension)

High Blood Pressure (Essential Hypertension) Sacramento Heart & Vascular Medical Associates February 18, 2012 500 University Ave. Sacramento, CA 95825 Page 1 916-830-2000 Fax: 916-830-2001 What is essential hypertension? Blood pressure is the force

More information

Milwaukee School of Engineering Gerrits@msoe.edu. Case Study: Factors that Affect Blood Pressure Instructor Version

Milwaukee School of Engineering Gerrits@msoe.edu. Case Study: Factors that Affect Blood Pressure Instructor Version Case Study: Factors that Affect Blood Pressure Instructor Version Goal This activity (case study and its associated questions) is designed to be a student-centered learning activity relating to the factors

More information

National Fire Incident Reporting System (NFIRS 5.0) Configuration Tool User's Guide

National Fire Incident Reporting System (NFIRS 5.0) Configuration Tool User's Guide National Fire Incident Reporting System (NFIRS 5.0) Configuration Tool User's Guide NFIRS 5.0 Software Version 5.6 1/7/2009 Department of Homeland Security Federal Emergency Management Agency United States

More information

High Blood pressure and chronic kidney disease

High Blood pressure and chronic kidney disease High Blood pressure and chronic kidney disease For People with CKD Stages 1 4 www.kidney.org National Kidney Foundation's Kidney Disease Outcomes Quality Initiative Did you know that the National Kidney

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

P&WC Portal Settings. 1) Portal Language Setting:

P&WC Portal Settings. 1) Portal Language Setting: P&WC Portal Settings In order to set your Internet Explorer Browser and to resolve a few specific issues that users of the P&WC Portal might have, we recommend that you change a few settings in your browser.

More information

High Blood Pressure and Your Kidneys

High Blood Pressure and Your Kidneys High Blood Pressure and Your Kidneys About 65 million Americans have high blood pressure, but as many as one third or three in 10 don't even know it. There are usually no signs or symptoms that your blood

More information

High Blood Pressure and Chronic Kidney Disease. For People With CKD Stages 1 4

High Blood Pressure and Chronic Kidney Disease. For People With CKD Stages 1 4 High Blood Pressure and Chronic Kidney Disease For People With CKD Stages 1 4 National Kidney Foundation s Kidney Disease Outcomes Quality Initiative (NKF-KDOQI ) The National Kidney Foundation s Kidney

More information

Jolly Server Getting Started Guide

Jolly Server Getting Started Guide JOLLY TECHNOLOGIES Jolly Server Getting Started Guide The purpose of this guide is to document the creation of a new Jolly Server in Microsoft SQL Server and how to connect to it using Jolly software products.

More information

How To Restore Your Data On A Backup By Mozy (Windows) On A Pc Or Macbook Or Macintosh (Windows 2) On Your Computer Or Mac) On An Pc Or Ipad (Windows 3) On Pc Or Pc Or Micro

How To Restore Your Data On A Backup By Mozy (Windows) On A Pc Or Macbook Or Macintosh (Windows 2) On Your Computer Or Mac) On An Pc Or Ipad (Windows 3) On Pc Or Pc Or Micro Online Backup by Mozy Restore Common Questions Document Revision Date: June 29, 2012 Online Backup by Mozy Common Questions 1 How do I restore my data? There are five ways of restoring your data: 1) Performing

More information

Working with Office Applications and ProjectWise

Working with Office Applications and ProjectWise Working with Office Applications and ProjectWise The main Microsoft Office Applications (Word, Excel, PowerPoint and Outlook) are all integrated with ProjectWise. These applications are aware that ProjectWise

More information

ECLIPSE & Faircom ODBC Driver

ECLIPSE & Faircom ODBC Driver A division of HNA Computer Systems, Inc. ECLIPSE & Faircom ODBC Driver Getting started is actually quite simple and like most things if you follow all the right steps you should not have any problems.

More information

HIGH BLOOD PRESSURE AND YOUR KIDNEYS

HIGH BLOOD PRESSURE AND YOUR KIDNEYS HIGH BLOOD PRESSURE AND YOUR KIDNEYS www.kidney.org About the Information in this Booklet Did you know that the National Kidney (NKF) Foundation offers guidelines and commentaries that help your healthcare

More information

TestManager Administration Guide

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

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

Installing SQL Express. For CribMaster 9.2 and Later

Installing SQL Express. For CribMaster 9.2 and Later Installing SQL Express For CribMaster 9.2 and Later CRIBMASTER USER GUIDE Installing SQL Express Document ID: CM9-031-03012012 Copyright CribMaster. 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,

More information

Learning Management System (LMS) Quick Tips. Contents LMS REFERENCE GUIDE

Learning Management System (LMS) Quick Tips. Contents LMS REFERENCE GUIDE Learning Management System (LMS) Quick Tips Contents Process Overview... 2 Sign into the LMS... 3 Troubleshooting... 5 Required Software... 5 Mobile devices are not supported... 5 Using the Check System

More information

National Fire Incident Reporting System (NFIRS 5.0) NFIRS Data Entry/Validation Tool Users Guide

National Fire Incident Reporting System (NFIRS 5.0) NFIRS Data Entry/Validation Tool Users Guide National Fire Incident Reporting System (NFIRS 5.0) NFIRS Data Entry/Validation Tool Users Guide NFIRS 5.0 Software Version 5.3 Prepared for: Directorate of Preparedness and Response (FEMA) Prepared by:

More information

Congestive Heart Failure

Congestive Heart Failure Healthy People 2010 Conference Health Education on the Internet Welcome Mr. System Administrator Congestive Heart Failure What is congestive heart failure? How does it occur? What are the symptoms? How

More information

Using ProjectWise Explorer for File Transfer

Using ProjectWise Explorer for File Transfer Using ProjectWise Explorer for File Transfer Use the link below to register for a log in and password for ProjectWise. http://apps.dot.illinois.gov/consultantreg/ To access ProjectWise Web Explorer use

More information

DiskPulse DISK CHANGE MONITOR

DiskPulse DISK CHANGE MONITOR DiskPulse DISK CHANGE MONITOR User Manual Version 7.9 Oct 2015 www.diskpulse.com info@flexense.com 1 1 DiskPulse Overview...3 2 DiskPulse Product Versions...5 3 Using Desktop Product Version...6 3.1 Product

More information

Qualtrics Survey Tool

Qualtrics Survey Tool Qualtrics Survey Tool This page left blank intentionally. Table of Contents Overview... 5 Uses for Qualtrics Surveys:... 5 Accessing Qualtrics... 5 My Surveys Tab... 5 Survey Controls... 5 Creating New

More information

RECOMMENDED JAVA SETTINGS

RECOMMENDED JAVA SETTINGS RECOMMENDED JAVA SETTINGS FOR WINDOWS XP MACHINES Internet Explorer version 6 o Java version 1.5.0_xx suggested Internet Explorer version 7 o Java version 1.6.0_xx suggested Internet Explorer version 8

More information

Version 8. Backing Up and Restoring Progeny Databases

Version 8. Backing Up and Restoring Progeny Databases Version 8 Backing Up and Restoring Progeny Databases Table of Contents Introduction... 3 Backing up a standalone (local) database... 3 Manual Backups... 3 Manual Backup Frequency... 5 Restoring a Manual

More information

Configuring Avaya Aura Communication Manager and Avaya Call Management System Release 16.3 with Avaya Contact Center Control Manager Issue 1.

Configuring Avaya Aura Communication Manager and Avaya Call Management System Release 16.3 with Avaya Contact Center Control Manager Issue 1. Avaya Solution Interoperability Test Lab Configuring Avaya Aura Communication Manager and Avaya Call Management System Release 16.3 with Avaya Contact Center Control Manager Issue 1.0 Abstract These Application

More information

Once you have obtained a username and password you must open one of the compatible web browsers and go to the following address to begin:

Once you have obtained a username and password you must open one of the compatible web browsers and go to the following address to begin: CONTENT MANAGER GUIDELINES Content Manager is a web-based application created by Scala that allows users to have the media they upload be sent out to individual players in many locations. It includes many

More information

User s Guide The SimSphere Biosphere/Atmosphere Modeling Tool

User s Guide The SimSphere Biosphere/Atmosphere Modeling Tool User s Guide The SimSphere Biosphere/Atmosphere Modeling Tool User s Guide Revision 11/1/00 Contents Introduction 3 1. SimSphere Modeling Tool Overview 4 System Requirements 4 Your User Status 4 Main Menu

More information

XConsole GUI setup communication manual September 2010.

XConsole GUI setup communication manual September 2010. XConsole GUI setup communication manual September 2010. XConsole is compatible with Microsoft XP, Vista and Windows 7. The software will also work if using Boot camp on a Mac. IMPORTANT NOTES: - Do NOT

More information

Com-Trader. Installation Guide

Com-Trader. Installation Guide Com-Trader Installation Guide Table of Contents 1 Introduction 1 1.1. Java Web Start 1 1.2. Download Time 1 1.3. Definitions and Abbreviations 2 2 Installation of Components 3 2.1 Connectivity Setup 3

More information

About High Blood Pressure

About High Blood Pressure About High Blood Pressure Your Treatment & You: working together to help manage your health Glaxo- Blood Pressure Booklet (ASK) EN.indd 1 10/7/2014 4:49:14 PM Glaxo- Blood Pressure Booklet (ASK) EN.indd

More information

Java. How to install the Java Runtime Environment (JRE)

Java. How to install the Java Runtime Environment (JRE) Java How to install the Java Runtime Environment (JRE) Install Microsoft Virtual Machine (VM) via System Check Install Sun Java Runtime Environment (JRE) via System Check Loading Java Applet Failed How

More information

Oracle Java (8u31) Installation

Oracle Java (8u31) Installation Oracle Java (8u31) Installation As of January 2015, The Montgomery County Civil Viewer require at least product version 5.0 (developer version 1.5) of the Java Runtime Environment (JRE) 1 in order to display

More information

If you see "Skip installation of the current version and test the currently installed version of Java" then select that hyperlink.

If you see Skip installation of the current version and test the currently installed version of Java then select that hyperlink. Workstation, Browser, Java, Connections, Proxy Servers, & Firewall Information March 2, 2015 Contents I. Workstation and Browser Configurations A. Internet Explorer B. Mozilla Firefox C. Google Chrome

More information

Business Objects Enterprise version 4.1. Report Viewing

Business Objects Enterprise version 4.1. Report Viewing Business Objects Enterprise version 4.1 Note about Java: With earlier versions, the Java run-time was not needed for report viewing; but was needed for report writing. The default behavior in version 4.1

More information

RuleBender 1.1.415 Tutorial

RuleBender 1.1.415 Tutorial RuleBender 1.1.415 Tutorial Installing and Launching RuleBender Requirements OSX Getting Started Linux Getting Started Windows Getting Started Using the Editor The Main Window Creating and Opening Files

More information

AXIS Camera Station Quick Installation Guide

AXIS Camera Station Quick Installation Guide AXIS Camera Station Quick Installation Guide Copyright Axis Communications AB April 2005 Rev. 3.5 Part Number 23997 1 Table of Contents Regulatory Information.................................. 3 AXIS Camera

More information

Super Pro Net TM Network Key Installation and Operation

Super Pro Net TM Network Key Installation and Operation March 4, 2015 Super Pro Net TM Network Key Installation and Operation Installation Overview RoadEng software can be protected against unlicensed use on a network with SafeNet s Super Pro Net TM hardware

More information

Steps when you start the program for the first time

Steps when you start the program for the first time Steps when you start the program for the first time R-Tag Installation will install R-Tag Report Manager and a local SQL Server Compact Database, which is used by the program. This will allow you to start

More information

RME Driver Install and Update Guide for Windows XP

RME Driver Install and Update Guide for Windows XP RME Driver Install and Update Guide for Windows XP Copyright 2008 Synthax Inc. This step-by-step guide is intended to show RME users how to install drivers and set up a device for the first time under

More information

High Blood Pressure and Kidney Disease

High Blood Pressure and Kidney Disease High Blood Pressure and Kidney Disease National Kidney and Urologic Diseases Information Clearinghouse U.S. Department of Health and Human Services NATIONAL INSTITUTES OF HEALTH The kidneys play a key

More information

OPERATION MANUAL. MV-410RGB Layout Editor. Version 2.1- higher

OPERATION MANUAL. MV-410RGB Layout Editor. Version 2.1- higher OPERATION MANUAL MV-410RGB Layout Editor Version 2.1- higher Table of Contents 1. Setup... 1 1-1. Overview... 1 1-2. System Requirements... 1 1-3. Operation Flow... 1 1-4. Installing MV-410RGB Layout

More information

Quick Start Using DASYLab with your Measurement Computing USB device

Quick Start Using DASYLab with your Measurement Computing USB device Quick Start Using DASYLab with your Measurement Computing USB device Thank you for purchasing a USB data acquisition device from Measurement Computing Corporation (MCC). This Quick Start document contains

More information

WorldExtend IronDoor 3.5 Publishing a Terminal Services Application

WorldExtend IronDoor 3.5 Publishing a Terminal Services Application WorldExtend IronDoor 3.5 Publishing a Terminal Services Application WorldExtend, LLC. Published: September 2008 Abstract This guide will walk you through the steps required to publish a terminal services

More information

Scan to PC Desktop: Image Retriever 5.2 for Xerox WorkCentre C2424

Scan to PC Desktop: Image Retriever 5.2 for Xerox WorkCentre C2424 Scan to PC Desktop: Image Retriever 5.2 for Xerox WorkCentre C2424 Scan to PC Desktop includes Image Retriever, which is designed to monitor a specified folder on a networked file server or local drive

More information

Operating Systems. and Windows

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

More information

ASTROW HR. Installation & Operation & Programming MANUAL

ASTROW HR. Installation & Operation & Programming MANUAL ASTROW HR Installation & Operation & Programming MANUAL 2007 A.S.E. R&D EUROPE. Printed in Belgium. All rights reserved. NOTICE Information in this document is subject to change without notice and does

More information

Remote Control 5.1.2. Tivoli Endpoint Manager - TRC User's Guide

Remote Control 5.1.2. Tivoli Endpoint Manager - TRC User's Guide Tivoli Remote Control 5.1.2 Tivoli Endpoint Manager - TRC User's Guide Tivoli Remote Control 5.1.2 Tivoli Endpoint Manager - TRC User's Guide Note Before using this information and the product it supports,

More information

Charter Business Desktop Security Administrator's Guide

Charter Business Desktop Security Administrator's Guide Charter Business Desktop Security Administrator's Guide Table of Contents Chapter 1: Introduction... 4 Chapter 2: Getting Started... 5 Creating a new user... 6 Recovering and changing your password...

More information

Practice Fusion API Client Installation Guide for Windows

Practice Fusion API Client Installation Guide for Windows Practice Fusion API Client Installation Guide for Windows Quickly and easily connect your Results Information System with Practice Fusion s Electronic Health Record (EHR) System Table of Contents Introduction

More information

Getting the most from blood pressure medicines

Getting the most from blood pressure medicines P R E S S U R E P O I N T S S E R I E S : NO. 4 Getting the most from blood pressure medicines B L O O D P R E S S U R E A S S O C I AT I O N Pressure Points series Pressure Points is a series of booklets

More information

Eclipse installation, configuration and operation

Eclipse installation, configuration and operation Eclipse installation, configuration and operation This document aims to walk through the procedures to setup eclipse on different platforms for java programming and to load in the course libraries for

More information

Using Impatica for Power Point

Using Impatica for Power Point Using Impatica for Power Point What is Impatica? Impatica is a tool that will help you to compress PowerPoint presentations and convert them into a more efficient format for web delivery. Impatica for

More information

Instructions for Checking System Compatibility

Instructions for Checking System Compatibility Instructions for Checking System Compatibility In order to participate and view the online training, you will need to watch the web conference from a computer that is compatible with the Oracle Web Conferencing

More information

OrCAD Capture with CIS Option and Allegro DE CIS. It explains the whole Capture CIS environment.

OrCAD Capture with CIS Option and Allegro DE CIS. It explains the whole Capture CIS environment. Title: Product: Summary: Capture CIS Environment OrCAD Capture with CIS Option and Allegro DE CIS It explains the whole Capture CIS environment. Author/Date: Beate Wilke / 11.11.2009 Table of Contents

More information

The Body s Transport System

The Body s Transport System Circulation Name Date Class The Body s Transport System This section describes how the heart, blood vessels, and blood work together to carry materials throughout the body. Use Target Reading Skills As

More information

Deposit Direct. Getting Started Guide

Deposit Direct. Getting Started Guide Deposit Direct Getting Started Guide Table of Contents Before You Start... 3 Installing the Deposit Direct application for use with Microsoft Windows Vista... 4 Running Programs in Microsoft Windows Vista...

More information

UBS KeyLink Quick reference WEB Installation Guide

UBS KeyLink Quick reference WEB Installation Guide ab UBS KeyLink Quick reference WEB Installation Guide Table of contents 1. Introduction 3 1.1. Why is an Installation needed? 3 1.2. Is UBS KeyLink secure? 3 1.3. Information about Secure Sockets Layer

More information

Internet Explorer Settings for Optum CareTracker

Internet Explorer Settings for Optum CareTracker Internet Explorer Settings for Optum CareTracker CareTracker (aka Optum PM and Physician EMR) is a web-based application, which currently only runs on the 32 -bit version of Internet Explorer (to tell,

More information

Shelter Pro Installation Guide. Overview. Database backups. Shelter Pro Installation Guide Page 1

Shelter Pro Installation Guide. Overview. Database backups. Shelter Pro Installation Guide Page 1 Overview This document describes how to install Shelter Pro on Windows based computers (workstations) both in a standalone and a networked environment. Pick your installation scenario below and follow

More information

TYPING IN ARABIC (WINDOWS XP)

TYPING IN ARABIC (WINDOWS XP) TYPING IN ARABIC (WINDOWS XP) There are two steps involved in setting up your Windows XP computer for Arabic. You must first install support for right-to-left languages; then you must enable Arabic input.

More information

WHAT S NEW IN MS EXCEL 2013

WHAT S NEW IN MS EXCEL 2013 Contents Excel... 1 Filling empty cells using Flash Fill... 1 Filtering records using a Timeline... 2 Previewing with Quick Analysis... 4 Using Chart Advisor recommendations... 5 Finding errors and issues

More information

Note: A WebFOCUS Developer Studio license is required for each developer.

Note: A WebFOCUS Developer Studio license is required for each developer. WebFOCUS FAQ s Q. What is WebFOCUS? A. WebFOCUS was developed by Information Builders Incorporated and is a comprehensive and fully integrated enterprise business intelligence system. The WebFOCUShttp://www.informationbuilders.com/products/webfocus/architecture.html

More information

To Begin Customize Office

To Begin Customize Office To Begin Customize Office Each of us needs to set up a work environment that is comfortable and meets our individual needs. As you work with Office 2007, you may choose to modify the options that are available.

More information

HOWTO annotate documents in Microsoft Word

HOWTO annotate documents in Microsoft Word HOWTO annotate documents in Microsoft Word Introduction This guide will help new users markup, make corrections, and track changes in a Microsoft Word document. These instructions are for Word 2007. The

More information

CorelDRAW X5 & CorelDRAW X6

CorelDRAW X5 & CorelDRAW X6 CorelDRAW X5 & CorelDRAW X6 CorelDRAW X5 & CorelDRAW X6 work best with Windows 7 but can be used with Windows Vista & Windows XP. Step One: Make sure that you have installed all Service Releases and software

More information

JAVS Scheduled Publishing. Installation/Configuration... 4 Manual Operation... 6 Automating Scheduled Publishing... 7 Windows XP... 7 Windows 7...

JAVS Scheduled Publishing. Installation/Configuration... 4 Manual Operation... 6 Automating Scheduled Publishing... 7 Windows XP... 7 Windows 7... 1 2 Copyright JAVS 1981-2010 Contents Scheduled Publishing... 4 Installation/Configuration... 4 Manual Operation... 6 Automating Scheduled Publishing... 7 Windows XP... 7 Windows 7... 12 Copyright JAVS

More information

MaineCare Medicaid EHR Incentive Program Meaningful Use Wizard Guide Last Update: February 10, 2014

MaineCare Medicaid EHR Incentive Program Meaningful Use Wizard Guide Last Update: February 10, 2014 Before You Begin: MaineCare Medicaid EHR Incentive Program Meaningful Use Wizard Guide Last Update: February 10, 2014 Be sure your computer is running the Windows operating system (Windows XP or higher).

More information

Help. F-Secure Online Backup

Help. F-Secure Online Backup Help F-Secure Online Backup F-Secure Online Backup Help... 3 Introduction... 3 What is F-Secure Online Backup?... 3 How does the program work?... 3 Using the service for the first time... 3 Activating

More information

ODBC Driver Version 4 Manual

ODBC Driver Version 4 Manual ODBC Driver Version 4 Manual Revision Date 12/05/2007 HanDBase is a Registered Trademark of DDH Software, Inc. All information contained in this manual and all software applications mentioned in this manual

More information

PC Troubleshooting Steps

PC Troubleshooting Steps PC Troubleshooting Steps This FAQ is designed to help PC users to go through various troubleshooting steps to allow them to view the FerrisConnect Learn/Vista sites appropriately. Compatible Browsers Check

More information

Troubleshooting Guide

Troubleshooting Guide Enable WMI after applying SP2 for XP Company web site: Support email: support@ Support telephone: +44 20 3287-7651 +1 646 233-1163 2 This tutorial will guide you on enabling WMI after applying Service

More information

Insert Survey Data into a Database: Dreamweaver & Access 2007

Insert Survey Data into a Database: Dreamweaver & Access 2007 Insert Survey Data into a Database: Dreamweaver & Access 2007 Site Preparation 1. Open your User folder and create a folder titled InsertData_Local. Do NOT place this folder inside PUB. If you are working

More information

Sample- for evaluation purposes only. Advanced Crystal Reports. TeachUcomp, Inc.

Sample- for evaluation purposes only. Advanced Crystal Reports. TeachUcomp, Inc. A Presentation of TeachUcomp Incorporated. Copyright TeachUcomp, Inc. 2011 Advanced Crystal Reports TeachUcomp, Inc. it s all about you Copyright: Copyright 2011 by TeachUcomp, Inc. All rights reserved.

More information

How to install and use the File Sharing Outlook Plugin

How to install and use the File Sharing Outlook Plugin How to install and use the File Sharing Outlook Plugin Thank you for purchasing Green House Data File Sharing. This guide will show you how to install and configure the Outlook Plugin on your desktop.

More information

SPECIALIST PRACTICE MANAGER

SPECIALIST PRACTICE MANAGER INSTALLATION GUIDE FOR SPECIALIST PRACTICE MANAGER using a MICROSOFT SQL SERVER DATABASE Updated October 2009 All rights reserved. No reproduction, transmission, transcription, storage in a retrieval system,

More information

Create a Poster Using Publisher

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

More information

WIRELESS TRAINING SOLUTIONS. by vlogic, Inc. L a b 0.3 Remote Access Labs

WIRELESS TRAINING SOLUTIONS. by vlogic, Inc. L a b 0.3 Remote Access Labs WIRELESS TRAINING SOLUTIONS by vlogic, Inc L a b 0.3 Remote Access Labs WIRELESS TRAINING SOLUTIONS Hands-on Workshop and Lab Guide Table of Contents Connecting to the Wireless Training Solutions Network

More information

Guide to Installing BBL Crystal MIND on Windows 7

Guide to Installing BBL Crystal MIND on Windows 7 Guide to Installing BBL Crystal MIND on Windows 7 Introduction The BBL Crystal MIND software can not be directly installed on the Microsoft Windows 7 platform, however it can be installed and run via XP

More information

Windows XP Pro: Basics 1

Windows XP Pro: Basics 1 NORTHWEST MISSOURI STATE UNIVERSITY ONLINE USER S GUIDE 2004 Windows XP Pro: Basics 1 Getting on the Northwest Network Getting on the Northwest network is easy with a university-provided PC, which has

More information

Quick Start Guide for the SupportDesk Web Interface

Quick Start Guide for the SupportDesk Web Interface Quick Start Guide for the SupportDesk Web Interface Introduction Welcome to the Richmond SupportDesk Web Interface upgrade guide. This document should be used by the person(s) who will be performing the

More information

New World Construction FTP service User Guide

New World Construction FTP service User Guide New World Construction FTP service User Guide A. Introduction... 2 B. Logging In... 4 C. Uploading Files... 5 D. Sending Files... 6 E. Tracking Downloads... 10 F. Receiving Files... 11 G. Setting Download

More information

Programming in Access VBA

Programming in Access VBA PART I Programming in Access VBA In this part, you will learn all about how Visual Basic for Applications (VBA) works for Access 2010. A number of new VBA features have been incorporated into the 2010

More information

Converting InfoPlus.21 Data to a Microsoft SQL Server 2000 Database

Converting InfoPlus.21 Data to a Microsoft SQL Server 2000 Database Technical Bulletin Issue Date August 14, 2003 Converting InfoPlus.21 Data to a Microsoft SQL Server 2000 Database Converting InfoPlus.21 Data to a Microsoft SQL Server 2000 Database...2 Introduction...

More information

Linking Access to SQL Server

Linking Access to SQL Server Linking Access to SQL Server Why Link to SQL Server? Whilst Microsoft Access is a powerful database program it has its limitations and is best suited to creating desktop applications for individual users

More information

Subversion Integration for Visual Studio

Subversion Integration for Visual Studio Subversion Integration for Visual Studio VisualSVN Team VisualSVN: Subversion Integration for Visual Studio VisualSVN Team Copyright 2005-2008 VisualSVN Team Windows is a registered trademark of Microsoft

More information

ADULT HYPERTENSION PROTOCOL STANFORD COORDINATED CARE

ADULT HYPERTENSION PROTOCOL STANFORD COORDINATED CARE I. PURPOSE To establish guidelines for the monitoring of antihypertensive therapy in adult patients and to define the roles and responsibilities of the collaborating clinical pharmacist and pharmacy resident.

More information

How to setup a network printer using HP Universal Printer Driver

How to setup a network printer using HP Universal Printer Driver How to setup a network printer using HP Universal Printer Driver This patch is only usable on HP T5730 Thin Client and up. The Printer also has to be networked and be PCL6 driver compatible in order to

More information

SAS Analyst for Windows Tutorial

SAS Analyst for Windows Tutorial Updated: August 2012 Table of Contents Section 1: Introduction... 3 1.1 About this Document... 3 1.2 Introduction to Version 8 of SAS... 3 Section 2: An Overview of SAS V.8 for Windows... 3 2.1 Navigating

More information

A Practical Guide to Test Case Types in Java

A Practical Guide to Test Case Types in Java Software Tests with Faktor-IPS Gunnar Tacke, Jan Ortmann (Dokumentversion 203) Overview In each software development project, software testing entails considerable expenses. Running regression tests manually

More information

ORACLE BUSINESS INTELLIGENCE WORKSHOP

ORACLE BUSINESS INTELLIGENCE WORKSHOP ORACLE BUSINESS INTELLIGENCE WORKSHOP Creating Interactive Dashboards and Using Oracle Business Intelligence Answers Purpose This tutorial shows you how to build, format, and customize Oracle Business

More information

RCS Liferay Google Analytics Portlet Installation Guide

RCS Liferay Google Analytics Portlet Installation Guide RCS Liferay Google Analytics Portlet Installation Guide Document Revisions Date Revision By 07/02/12 1 Pablo Rendón 2 Table of Contents RCS Liferay-Google Analytics...1 Document Revisions...2 General Description...4

More information

StrikeRisk v6.0 IEC/EN 62305-2 Risk Management Software Getting Started

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

More information

Installation and Troubleshooting Guide for SSL-VPN CONNECTIONS Access

Installation and Troubleshooting Guide for SSL-VPN CONNECTIONS Access Installation and Troubleshooting Guide for SSL-VPN CONNECTIONS Access Version 1 Revised 11/29/2007 Table of Contents Java Installation:...4 Browser Configuration:...4 Citrix Client Installation:...8 Attempting

More information

Document Conventions... 2 Technical Requirements... 2. Logging On... 3 Logging Off... 3. Main Menu Panel... 4 Contents Panel... 4 Document Panel...

Document Conventions... 2 Technical Requirements... 2. Logging On... 3 Logging Off... 3. Main Menu Panel... 4 Contents Panel... 4 Document Panel... Contents GETTING STARTED... 2 Document Conventions... 2 Technical Requirements... 2 LOGIN AND LOGOFF... 2 Logging On... 3 Logging Off... 3 USP-NF ONLINE HOME PAGE... 3 Main Menu Panel... 4 Contents Panel...

More information

Risø-R-1551(EN) Wilmar Deliverable D6.2 (a) Wilmar Planning Tool User guide. Helge V. Larsen

Risø-R-1551(EN) Wilmar Deliverable D6.2 (a) Wilmar Planning Tool User guide. Helge V. Larsen Risø-R-1551(EN) Wilmar Deliverable D6.2 (a) Wilmar Planning Tool User guide Helge V. Larsen Risø National Laboratory Roskilde Denmark January 2006 Author: Helge V. Larsen Title: Wilmar Planning Tool, User

More information

PRESSURE POINTS SERIES: Introducing high blood pressure

PRESSURE POINTS SERIES: Introducing high blood pressure PRESSURE POINTS SERIES: NO.1 Introducing high blood pressure BLOOD PRESSURE ASSOCIATION Pressure Points series Pressure Points is a series of booklets produced by the Blood Pressure Association, to help

More information

Suite. How to Use GrandMaster Suite. Exporting with ODBC

Suite. How to Use GrandMaster Suite. Exporting with ODBC Suite How to Use GrandMaster Suite Exporting with ODBC This page intentionally left blank ODBC Export 3 Table of Contents: HOW TO USE GRANDMASTER SUITE - EXPORTING WITH ODBC...4 OVERVIEW...4 WHAT IS ODBC?...

More information

Web conferencing @ UTAS. Common problems and solutions. Common problems with Java settings. Ensuring that you have the correct Java settings in place

Web conferencing @ UTAS. Common problems and solutions. Common problems with Java settings. Ensuring that you have the correct Java settings in place Common problems and solutions Common problems with Java settings Elluminate is one of many web based applications that use software called Java. Certain Java settings may affect the way that Elluminate

More information

Working with Macros and VBA in Excel 2007

Working with Macros and VBA in Excel 2007 Working with Macros and VBA in Excel 2007 With the introduction of Excel 2007 Microsoft made a number of changes to the way macros and VBA are approached. This document outlines these special features

More information

7. Lenel Job Aid: Running Reports

7. Lenel Job Aid: Running Reports 1. There will be four reports identified here, you will have access to many more reports, but these should help you in your day to day work. Access Denial Events, By Reader: Access Denied Events, grouped

More information