Interfacing to MATLAB. You can download the interface developed in this tutorial. It exists as a collection of 3 MATLAB files.

Size: px
Start display at page:

Download "Interfacing to MATLAB. You can download the interface developed in this tutorial. It exists as a collection of 3 MATLAB files."

Transcription

1 Interfacing t MATLAB Overview: Getting Started Basic Tutrial Interfacing with OCX Installatin GUI with MATLAB's GUIDE First Buttn & Image Mre ActiveX Cntrls Exting the GUI Advanced Tutrial MATLAB Cntrls Getting Data Events Getting Started: Interfacing with OCX Yur interfacing cde cmmunicates with DataRay prducts thrugh the DataRay OCX. The OCX has ActiveX cntrls that can be accessed frm a variety f Windws based envirnments. The OCX is autmatically generated and registered with the Windws perating system upn installing the DataRay sftware. Once initialized, the OCX is always running. This means that the camera is still running, even while editing GUI elements in Visual Studi r the GUI in MATLAB s GUIDE. Unfrtunately, while this characteristic f the OCX is useful fr creating interfaces in sme languages, it causes MATLAB t crash, and as a result, ActiveX cmpnents must be added t a GUI interface prgrammatically. Als, fr reasns unknwn, an interface can nly be run nce per MATLAB sessin. Sme imprtant ntes: The OCX is functinal nly as part f a GUI-based prgram. In this tutrial, we use MATLAB s.fig and GUIDE. Since the OCX is 32-bit, yu will need assciated 32-bit MATLAB and libraries The OCX and DataRay prgram cannt be used at the same time Installatin: First we need t install the DataRay Sftware: As Administratr, install the DataRay sftware which came with yur prduct. Attach the prfiler prduct. Allw the drivers t install. Open the DataRay sftware and select yur prfiler in the Device pull-dwn menu. Learn t use yur prduct in the DataRay sftware. Then clse the sftware. Yu can dwnlad the interface develped in this tutrial. It exists as a cllectin f 3 MATLAB files. Cameras: Dwnlad & unzip WinCamD BeamMap2: Dwnlad & unzip BeamMap2 This example shuld build and run with n errrs. Nt wrking? supprt@dataray.cm r call with: Device name and serial number DataRay and Windws versins which yu are using.

2 Basic Tutrial: We will shw yu step-by-step hw the example prgram was created in MATLAB. GUI with MATLAB s GUIDE First, we will make a basic GUI with GUIDE. It supprts all the items yu wuld expect frm a GUI library. In a new flder fr the 3 files which will cmpse the interface, under the HOME tab click Graphical User Interface under the New buttn. Fr ur basic interface, we will nly require adding Panels. If yu need mre space, yu can click the bttm crner and drag t increase the size f yur interface. Althugh we are using ActiveX cntrls, d nt attempt t use ActiveX Cntrl. The ther GUI interface cmpnents are fine t use, and we will cver their use in the Advanced Tutrial sectin. T create the mst basic interface, we will add 3 panels fr the start buttn, the 2D image f the beam and the Palette. The Dataray class will create the furth required GetData cntrl. Right-click n panel and then click and drag t establish the panel s size (and thereby establish the ActiveX Cntrl s size). Once the panels which will hld the Active X Cntrls have been placed, yu may left-click them and pen up the Prperty Inspectr t select cnvenient names fr them such as startbuttn which will make it mre straight-frward t prgrammatically set their ActiveX cntrls fr them.

3 The Prperty Inspectr allws yu t change many aspects f the selected GUI cmpnent including its Tag which can be used by MATLAB t interact with it prgrammatically. In rder fr changes in the Prperty Inspectr t be saved, yu must minimize it and save the GUI; d nt simply exit the Prperty Inspectr. If the new tag value is nt saved, it will cause the GUI t fail. Once yu save the figure, it will create a.fig file and a.m file which will wrk tgether t create the GUI. We will edit the.m file t make it create ActiveX cntrls First Buttn & Image T add ActiveX cmpnents, we use the handles frm the GUI t instantiate them. The syntax required t instantiate ActiveX cntrl bjects is as fllws; yu must use the OCX cntrl name, a series f raw crdinates OR thse derived frm the handle specified by a tag name, and a handle fr the figure itself: getdatactrl = actxcntrl('datarayocx.getdatactrl.1',[0,0,1,1],handles.figure1); CCDctrl =actxcntrl('datarayocx.ccdimagectrl.1',getpixelpsitin(handles.twd),handles.fig ure1); The ActiveX cntrls are vital fr cmmunicatin t and frm the instance f the DataRay prgram created by the interface. Fr example, the GetDataCtrl cntrl must be present fr the OCX t start and its StartDriver methd must be called fr devices t be recgnized. getdatactrl.startdriver(); T make the cntrls accessible by ther methds f ur GUI class, we will add the Dataray class frm Dataray.m t ur GUI bject which will hld all f the ActiveX cntrls. The reasn fr ding this will becme clearer in the Advanced Tutrial. When the Dataray class is created, the getdatactrl bject is created and the StartDriver methd is called frm its member variable referring t the GetData ActiveX cntrls like s: dobj.getdatactrl.startdriver(); The Dataray class has a useful functin fr setting buttns t the GUI and string their respective ActiveX cntrls int an array: % set buttn n tp f existing uipanel functin setbuttnpanel(dobj,panel_handle,buttnid) % create buttn actxcntrl and place n tp f the panel

4 dobj.btnctrls{+1} = actxcntrl('datarayocx.buttnctrl.1',getpixelpsitin(panel_handle),dobj.currentfi gure); dobj.btnctrls_handles{+1} = panel_handle; % save handle t panel in an array set(dobj.btnctrls{},'buttnid',buttnid); % set the ButtnID member variable The abve methd n the Dataray class des all f the wrk fr adding buttns t the interface. Adding the fllwing t yur GUI s pening functin will create the ActiveX cmpnents fr the interface; make sure t have the handles added after they have been created: functin basic_openingfcn(hobject, eventdata, handles, varargin) % This functin has n utput args, see OutputFcn. % hobject handle t figure % eventdata reserved - t be defined in a future versin f MATLAB % varargin cmmand line arguments t basic (see VARARGIN) % Chse default cmmand line utput fr basic handles.utput = hobject; handles.dataray = Dataray(handles.figure1); % create DATARAY class handles.dataray.setccdpanel(handles.twd) handles.dataray.setbuttnpanel(handles.startbuttn,297); % set start buttn handles.dataray.setbuttnpanel(handles.buttn1,171); handles.dataray.setpalettepanel(handles.palette); % Update handles structure guidata(hobject, handles);

5 Mre ActiveX Cntrls We will nw add mre buttns and prfiles t the interface. Adding prfiles nt nly helps display infrmatin, but als it prvides the functinality t pull data frm the camera. We need t g back t ur GUI and add mre panels. The initializatin cde t initialize this GUI is as fllws: handles.dataray = Dataray(handles.figure1); % create DATARAY class handles.dataray.setccdpanel(handles.twd) handles.dataray.set3dpanel(handles.threed) handles.dataray.setbuttnpanel(handles.startbuttn,297); % set start buttn handles.dataray.setbuttnpanel(handles.buttn1,171); % set start buttn handles.dataray.setbuttnpanel(handles.buttn2,172); % set start buttn handles.dataray.setbuttnpanel(handles.buttn3,177); % set start buttn handles.dataray.setbuttnpanel(handles.buttn4,179); % set start buttn handles.dataray.setprfilespanel(handles.prfile1,22); % set start buttn handles.dataray.setprfilespanel(handles.prfile2,23); % set start buttn handles.dataray.setpalettepanel(handles.palette);

6 Exting the GUI Besides the names f the ActiveX cntrls, yu will need t knw the ID s fr specific buttn and prfiles. In rder t find the crrect Buttn ID# t use fr the buttns, yu need t: 1) Clse yur GUI and pen the DataRay sftware 2) Right click n any buttn, t see the dialg n the right 3) Nte the current Name and ID# fr this result at the tp f the dialg 4) Repeat fr all the results f interest. Clse the DataRay Sftware There are cmplete lists f ID s fr prfiles and buttns available in interface sectin f the DataRay website: Prfiles: Buttns: Finally, there is dcumentatin describing the methds and prperties f all the ActiveX cntrls: This cmpletes the basic tutrial! Prblems/Questins? Please cntact us with the infrmatin listed abve

7 Advanced Tutrial: MATLAB Cntrls MATLAB prvides its wn cntrls and input methds. These can be used t prvide custm functinality t yur GUI. In this case, we will be using them t select data t write t a file. First, we will add ne static text label, ne edit text cntrl (text input), tw radi buttns in a buttn grup, ne pp-up meu (a drpdwn list) and ne buttn t ur GUI with GUIDE: The buttn grup cmpnent is like a panel, but it makes radi buttns perate as a grup; nly ne radi buttn in a buttn grup can be selected. GUI cmpnents can have their prperties set prgrammatically, but in this tutrial, we will use the Prperty Inspectr t set them. String: Fr mst cmpnents, the String prperty will set the text it displays Fr the pp-up menu, we will want t click the list display f the String prperty and enter ne chice per line Value Fr radi buttns, 1 is true and 0 is false Fr pp-up menus, 1 is the first item, 2 is the secnd item, etc

8 Entire tutrials have been written abut events and binding in MATLAB. We will stick t the basics. The GUIDE will create functins which will be called n interactins with the varius GUI cmpnents. Yu can specify mre actins t take when, fr instance, the cmpnent is created r destryed by right-clicking n the element and selecting view callbacks. In this case, we will be wrking with ne which is created autmatically: functin pushbuttn1_callback(hobject, eventdata, handles) % hobject handle t pushbuttn1 (see GCBO) % eventdata reserved - t be defined in a future versin f MATLAB %cntents = cellstr(get(handles.ppupmenu1,'string')); fprintf( 'Optin %d selected \n', get(handles.ppupmenu1,'value')); fprintf('%s \n', handles.dataray.btnctrls{2}.getparameter()); The abve prints ut tw items when the Write buttn is hit. First, it prints ut the item selected in the pp-up menu by its psitin. The secnd item we are printing is the value f the secnd ActiveX buttn cntrl we added t the interface; the first is the start buttn. In general, the syntax t get the value f a GUI cmpnent is get(handles.[cmpnent s tag], Prperty name ). GUIDE als prints ut useful tips near the callbacks f items. Getting Data Nw that we have an understanding f hw MATLAB GUI cmpnents can be set up, we will rewrite the callback methd t utput data t a cmma separated value file with the csvwrite functin. Whenever yu are writing a file it is crucial t make sure yu have write privileges fr the directry by either selecting a public directry r running the prgram as administratr. With the fllwing cde, we can write.csv files t be analyzed in MATLAB r Excel. functin pushbuttn1_callback(hobject, eventdata, handles) % hobject handle t pushbuttn1 (see GCBO) % eventdata reserved - t be defined in a future versin f MATLAB %cntents = cellstr(get(handles.ppupmenu1,'string')); fname = get(handles.edit1,'string') if get(handles.radibuttn1,'value') %this is fr prfiles axis = get(handles.ppupmenu1,'value'); data = handles.dataray.prfilectrls{axis}.getprfiledataasvariant(); csvwrite(fname, data); else % this is fr image data data = handles.dataray.getdatactrl.getwincamdataasvariant(); denm = 2; if handles.dataray.getdatactrl.captureisfullreslutin(); denm = 1; display(denm) m = handles.dataray.getdatactrl.gethrizntalpixels() /denm; n = handles.dataray.getdatactrl.getverticalpixels() /denm; image_data = reshape(data,m,n) csvwrite(fname, image_data);

9 Bth methds return a 1-D matrix f data. Therefre, if yu wish t have all the values f the raw pixels in their prper lcatins frm the GetWinCamDataAsVariant methd, it is necessary t reshape the matrix Events Besides cmmunicating thrugh interfaces t the DataRayOCX, there is a system f events which allw the DataRayOCX t cmmunicate back. One f the mst useful events is the GetData cntrl s SMessage event which is used fr internal cmmunicatin in the DataRay prgram; mst users are interested in the message with ID # 21 as its 3 rd argument which is used whenever a new frame is available. The bject which listens fr events is called a sink. We make a functin and pass it t the GetData cntrl as a callback fr the SMessage event in the Dataray bject: handlermessage dobj.getdatactrl.registerevent({'smessage',handlermessage}); functin eventcallback(dobj,varargin) if varargin{3} == 21 dobj.eventcunter = dobj.eventcunter +1; display(sprintf('%d frames seen', dobj.eventcunter)); This will print ut the ttal number f frames seen by incrementing a cunter. Many custmers have fund this useful fr running data analysis rutines n every x number f frames.

10 BeamMap2 Tutrial: Yu can dwnlad the interface develped in this tutrial as a cllectin f 3 MATLAB files frm the link that is available n the first page f this dcument. Please build and run this example befre yu cntinue. The example shuld be fully functinal and appear like the image displayed belw. This tutrial is brief because it references many f the techniques described in the Basic and Advanced WinCam tutrials; hwever, we will be using Buttn ID#s, Prfile ID#s and functins unique t the BeamMap2. Please make yurself familiar with the ther tutrials befre attempting t recreate this example. Creating DataRay Buttn Cntrls 1) Create a GetData Cntrl and a Status Buttn (ButtnID# = 104) Buttn Cntrl by using the instructins n pages 1-4 f the Basic WinCam Tutrial. 2) Unlike the WinCam tutrials, this example des nt use a ccdimage Cntrl. Instead, this example uses a TwD Cntrl. Fllw the instructins n pages 3-4 f the Basic WinCam tutrial, but create and use the settwdpanel functin (shwn belw) instead f the setccdpanel functin: functin settwdpanel(dobj,panel_handle) % create CCD actxcntrl and place n tp f the panel dobj.twdctrl = actxcntrl('datarayocx.twdctrl.1',getpixelpsitin(panel_handle),dobj.currentfigure); 3) Create the X2c (ButtnID# = 104), Y2c (ButtnID# = 105), and Ellipticity (ButtnID# = 126) Buttn Cntrls by using the same steps yu used t create the Status Buttn, but by substituting in the apprpriate ButtnID#s.

11 4) Create the Wander Display fr tracking the centrid psitin by creating a Buttn Cntrl and assigning it Buttn ID# 197. Creating DataRay Prfile Cntrls 5) Create fur unique Prfile Cntrls by fllwing the instructins n page 5 f the Basic WinCam Tutrial. Instead f using PrfileID#s 22 and 23, which crrespnd t the prfiles alng the WinCamD crsshairs, yu will need t use PrfileID#s that apply t the BeamMap2. The example prgram uses the fllwing cmmands t set the prfiles upn initializatin: handles.dataray.setprfilespanel(handles.uipanelprfile,14); % set U1 prf. handles.dataray.setprfilespanel(handles.uipanelprfile2,16); % set U2 prf. handles.dataray.setprfilespanel(handles.uipanelprfile3,18); % set U3 prf. handles.dataray.setprfilespanel(handles.uipanelprfile4,20); % set U4 prf. Please nte that these PrfileID#s (14, 16, 18, 20) crrespnd t the u-prfiles at each f the fur z-psitins n the BeamMap2 puck. We will create radi buttns that allw the user t tggle between the u and v-prfiles. The v-prfiles have their wn PrfileID#s (15, 17, 19, 21). 6) Create the Radi Buttns that are used t select the u r v-prfiles by using the methds discussed n the first page f the Advanced WinCam tutrial. Make sure the default radi buttn selected crrespnds t the default prfile setting, which is the u-prfile in this example. We assigned the tag radibuttnprfileu t the u-prfiles radi buttn t check its state in the fllwing functin. This functin executes when the user-selected radi is changed in the buttn grup: functin uibuttngrup1_selectinchangedfcn(hobject, eventdata, handles) % hobject handle t the selected bject in uibuttngrup1 % eventdata reserved - t be defined in a future versin f MATLAB prfile_actxcntrl = handles.dataray.getprfilectrl(handles.uipanelprfile); % get activex cntrl variable t directly access its Parameters (r Functins) if get(handles.radibuttnprfileu,'value') == 1 set(prfile_actxcntrl,'myid',14); % set prfile U else set(prfile_actxcntrl,'myid',15); % set Prfile V prfile_actxcntrl = handles.dataray.getprfilectrl(handles.uipanelprfile2); if get(handles.radibuttnprfileu,'value') == 1 set(prfile_actxcntrl,'myid',16); % set prfile U else set(prfile_actxcntrl,'myid',17); % set Prfile V prfile_actxcntrl = handles.dataray.getprfilectrl(handles.uipanelprfile3); if get(handles.radibuttnprfileu,'value') == 1 set(prfile_actxcntrl,'myid',18); % set prfile U else set(prfile_actxcntrl,'myid',19); % set Prfile V prfile_actxcntrl = handles.dataray.getprfilectrl(handles.uipanelprfile4); if get(handles.radibuttnprfileu,'value') == 1 set(prfile_actxcntrl,'myid',20); % set prfile U else set(prfile_actxcntrl,'myid',21); % set Prfile V Using DataRay s GetData Cntrl 7) Next, we will use the GetData Cntrl t pen the M 2 Dialg and prgrammatically extract data. First, we need t create a way t access the GetData Cntrl s methds frm the MATLAB file that cntains all the GUI methds. Since the GetData Cntrl bject belngs t the DataRay class, we will create a functin in the DataRay class that returns access t the GetData Cntrl bject: % get the activex cntrl f a specified panel r panel number t get access t further functins f this cntrl functin actxctrl = getgetdatactrl(dobj) % get activex cntrl t get access t get data ctrl functins actxctrl = dobj.getdatactrl;

12 This functin is used in the callback functins that belng t the Open/Clse M2 Dialg Buttn and GetOCXResult(M^2_u) buttns. 8) Create a Push Buttn using MATLAB s GUIDE. In the example, we assigned this buttn the tag m2buttn and the string Open/Clse M2 Dialg. We use ur functin frm step 7 t gain access t the GetData Cntrl. We use the GetData Cntrl t set change the state f its member IsMSquaredOpen, which effectively pens and clses the M2 Dialg. T use a single buttn t clse and pen the M2 Dialg, the buttn s callback functin shuld be as fllws: % --- Executes n buttn press in m2buttn. functin m2buttn_callback(hobject, eventdata, handles) % hobject handle t m2buttn (see GCBO) % eventdata reserved - t be defined in a future versin f MATLAB getdata_actxcntrl = handles.dataray.getgetdatactrl(); % get activex cntrl variable t directly access its Parameters (r Functins) if (getdata_actxcntrl.ismsquaredopen == 0) getdata_actxcntrl.ismsquaredopen = 1; %pens the M2 dialg else getdata_actxcntrl.ismsquaredopen = 0; %clses the M2 dialg 9) Similarly, we will create anther Push Buttn using MATLAB s GUIDE and use the GetData Cntrl in its callback functin t get the result f the M 2 calculatin at the instant the buttn is clicked. In the example we used getocxresultbuttn as the tag and GetOCXResult(M^2_u) fr the string f the buttn. Use MATLAB s GUIDE t create a Static Text element t display the result. We used textocxresult as the tag fr the Static Text element. The GetData Cntrl s GetOcxResult() functin accepts any ButtnID# as its parameter and returns the value that wuld be calculated and displayed n the crrespnding Buttn Cntrl. This callback functin is used t display the result f the M 2 calculatin in the Static Text: % --- Executes n buttn press in getocxresultbuttn. functin getocxresultbuttn_callback(hobject, eventdata, handles) % hobject handle t getocxresultbuttn (see GCBO) % eventdata reserved - t be defined in a future versin f MATLAB getdata_actxcntrl = handles.dataray.getgetdatactrl(); % get activex cntrl variable t directly access its Parameters (r Functins) result = getdata_actxcntrl.getocxresult(156); %156 is the index/id that applies t m^2_u set(handles.textocxresult,'string', result); Exprting Prfile Data t CSV 10) Next, we will use GUIDE t create a grup f fur Radi Buttns. These elements will allw the user t chse any f the fur prfiles that are currently displayed and exprt the prfile s data. In the example prgram, we used the radi buttn tags radi1, radi2, radi3, and radi4. 11) In additin, we will use the GUIDE t create an Edit Cntrl with the tag editcsvpath and string C:\Users\Public\Dcuments\utput.csv. This string f this edit cntrl cntains the path where the file will be generated and saved when we write t CSV. 12) Finally, we create a Push Buttn with tag writetcsvbuttn and string Write t CSV. This buttn s callback functin will write the selected prfile (identified by the state f the fur radi buttns and the u-prfile / v-prfile radi buttns) t a CSV. Here is the callback functin: % --- Executes n buttn press in writetcsvbuttn. functin writetcsvbuttn_callback(hobject, eventdata, handles) % hobject handle t writetcsvbuttn (see GCBO) % eventdata reserved - t be defined in a future versin f MATLAB path = get(handles.editcsvpath,'string'); if get(handles.radi1,'value') == 1 %1 means it is selected prfile_actxcntrl = handles.dataray.getprfilectrl(handles.uipanelprfile); % get activex cntrl variable t directly access its Parameters (r Functins) if get(handles.radi2,'value') == 1 %1 means it is selected prfile_actxcntrl = handles.dataray.getprfilectrl(handles.uipanelprfile2); % get activex cntrl variable t directly access its Parameters (r Functins) if get(handles.radi3,'value') == 1 %1 means it is selected

13 prfile_actxcntrl = handles.dataray.getprfilectrl(handles.uipanelprfile3); % get activex cntrl variable t directly access its Parameters (r Functins) if get(handles.radi4,'value') == 1 %1 means it is selected prfile_actxcntrl = handles.dataray.getprfilectrl(handles.uipanelprfile4); % get activex cntrl variable t directly access its Parameters (r Functins) data = prfile_actxcntrl.getprfiledataasvariant(); csvwrite(path,data); The Prfile Cntrl s GetPrfileDataAsVariant returns the current prfile data as a variant array. This cmpletes the BeamMap2 tutrial! Prblems/Questins? Please cntact us with the infrmatin listed abve.

INSTALLING CCRQINVOICE

INSTALLING CCRQINVOICE INSTALLING CCRQINVOICE Thank yu fr selecting CCRQInvice. This dcument prvides a quick review f hw t install CCRQInvice. Detailed instructins can be fund in the prgram manual. While this may seem like a

More information

Relius Documents ASP Checklist Entry

Relius Documents ASP Checklist Entry Relius Dcuments ASP Checklist Entry Overview Checklist Entry is the main data entry interface fr the Relius Dcuments ASP system. The data that is cllected within this prgram is used primarily t build dcuments,

More information

Using the Swiftpage Connect List Manager

Using the Swiftpage Connect List Manager Quick Start Guide T: Using the Swiftpage Cnnect List Manager The Swiftpage Cnnect List Manager can be used t imprt yur cntacts, mdify cntact infrmatin, create grups ut f thse cntacts, filter yur cntacts

More information

Using the Swiftpage Connect List Manager

Using the Swiftpage Connect List Manager Quick Start Guide T: Using the Swiftpage Cnnect List Manager The Swiftpage Cnnect List Manager can be used t imprt yur cntacts, mdify cntact infrmatin, create grups ut f thse cntacts, filter yur cntacts

More information

Integrating QuickBooks with TimePro

Integrating QuickBooks with TimePro Integrating QuickBks with TimePr With TimePr s QuickBks Integratin Mdule, yu can imprt and exprt data between TimePr and QuickBks. Imprting Data frm QuickBks The TimePr QuickBks Imprt Facility allws data

More information

Element Creator for Enterprise Architect

Element Creator for Enterprise Architect Element Creatr User Guide Element Creatr fr Enterprise Architect Element Creatr fr Enterprise Architect... 1 Disclaimer... 2 Dependencies... 2 Overview... 2 Limitatins... 3 Installatin... 4 Verifying the

More information

User Guide. Document Version: 1.0. Solution Version:

User Guide. Document Version: 1.0. Solution Version: User Guide Dcument Versin: 1.0 Slutin Versin: 365.082017.3.1 Table f Cntents Prduct Overview... 3 Hw t Install and Activate Custmer Satisfactin Survey Slutin?... 4 Security Rles in Custmer Satisfactin

More information

Faculty Textbook Adoption Instructions

Faculty Textbook Adoption Instructions Faculty Textbk Adptin Instructins The Bkstre has partnered with MBS Direct t prvide textbks t ur students. This partnership ffers ur students and parents mre chices while saving them mney, including ptins

More information

ClubRunner. Volunteers Module Guide

ClubRunner. Volunteers Module Guide ClubRunner Vlunteers Mdule Guide 2014 Vlunteer Mdule Guide TABLE OF CONTENTS Overview... 3 Basic vs. Enhanced Versins... 3 Navigatin... 4 Create New Vlunteer Signup List... 5 Manage Vlunteer Tasks... 7

More information

1on1 Sales Manager Tool. User Guide

1on1 Sales Manager Tool. User Guide 1n1 Sales Manager Tl User Guide Table f Cntents Install r Upgrade 1n1 Page 2 Setting up Security fr Dynamic Reprting Page 3 Installing ERA-IGNITE Page 4 Cnverting (Imprting) Queries int Dynamic Reprting

More information

Dashboard Extension for Enterprise Architect

Dashboard Extension for Enterprise Architect Dashbard Extensin fr Enterprise Architect Dashbard Extensin fr Enterprise Architect... 1 Disclaimer... 2 Dependencies... 2 Overview... 2 Limitatins f the free versin f the extensin... 3 Example Dashbard

More information

Your New Service Request Process: Technical Support Reference Guide for Cisco Customer Journey Platform

Your New Service Request Process: Technical Support Reference Guide for Cisco Customer Journey Platform Supprt Guide Yur New Service Request Prcess: Technical Supprt Reference Guide fr Cisc Custmer Jurney Platfrm September 2018 2018 Cisc and/r its affiliates. All rights reserved. This dcument is Cisc Public

More information

Date: October User guide. Integration through ONVIF driver. Partner Self-test. Prepared By: Devices & Integrations Team, Milestone Systems

Date: October User guide. Integration through ONVIF driver. Partner Self-test. Prepared By: Devices & Integrations Team, Milestone Systems Date: Octber 2018 User guide Integratin thrugh ONVIF driver. Prepared By: Devices & Integratins Team, Milestne Systems 2 Welcme t the User Guide fr Online Test Tl The aim f this dcument is t prvide guidance

More information

istartsmart 3.5 Upgrade - Installation Instructions

istartsmart 3.5 Upgrade - Installation Instructions istartsmart 3.5 Upgrade - Installatin Instructins Minimum System Requirements: Hatch All-In-One istartsmart Cmputer Learning Center v1.0 r v1.1 Internet access - either hard-wired r wireless cnnectin is

More information

Element Creator for Enterprise Architect

Element Creator for Enterprise Architect Element Creatr User Guide Element Creatr fr Enterprise Architect Element Creatr fr Enterprise Architect... 1 Disclaimer... 2 Dependencies... 2 Overview... 2 Limitatins... 3 Installatin... 4 Verifying the

More information

OASIS SUBMISSIONS FOR FLORIDA: SYSTEM FUNCTIONS

OASIS SUBMISSIONS FOR FLORIDA: SYSTEM FUNCTIONS OASIS SUBMISSIONS FOR FLORIDA: SYSTEM FUNCTIONS OASIS SYSTEM FUNCTIONS... 2 ESTABLISHING THE COMMUNICATION CONNECTION... 2 ACCESSING THE OASIS SYSTEM... 3 SUBMITTING OASIS DATA FILES... 5 OASIS INITIAL

More information

BMC Remedyforce Integration with Remote Support

BMC Remedyforce Integration with Remote Support BMC Remedyfrce Integratin with Remte Supprt 2003-2018 BeyndTrust, Inc. All Rights Reserved. BEYONDTRUST, its lg, and JUMP are trademarks f BeyndTrust, Inc. Other trademarks are the prperty f their respective

More information

WorldShip PRE-INSTALLATION INSTRUCTIONS: INSTALLATION INSTRUCTIONS: Window (if available) Install on a Single or Workgroup Workstation

WorldShip PRE-INSTALLATION INSTRUCTIONS: INSTALLATION INSTRUCTIONS: Window (if available) Install on a Single or Workgroup Workstation PRE-INSTALLATION INSTRUCTIONS: This dcument discusses using the WrldShip DVD t install WrldShip. Yu can als install WrldShip frm the Web. G t the fllwing Web page and click the apprpriate dwnlad link:

More information

BANNER BASICS. What is Banner? Banner Environment. My Banner. Pages. What is it? What form do you use? Steps to create a personal menu

BANNER BASICS. What is Banner? Banner Environment. My Banner. Pages. What is it? What form do you use? Steps to create a personal menu BANNER BASICS What is Banner? Definitin Prduct Mdules Self-Service-Fish R Net Lg int Banner Banner Envirnment The Main Windw My Banner Pages What is it? What frm d yu use? Steps t create a persnal menu

More information

Exporting and Importing the Blackboard Vista Grade Book

Exporting and Importing the Blackboard Vista Grade Book Exprting and Imprting the Blackbard Vista Grade Bk Yu can use the Blackbard Vista Grade Bk with a spreadsheet prgram, such as Micrsft Excel, in a number f different ways. Many instructrs wh have used Excel

More information

REFWORKS: STEP-BY-STEP HURST LIBRARY NORTHWEST UNIVERSITY

REFWORKS: STEP-BY-STEP HURST LIBRARY NORTHWEST UNIVERSITY REFWORKS: STEP-BY-STEP HURST LIBRARY NORTHWEST UNIVERSITY Accessing RefWrks Access RefWrks frm a link in the Bibligraphy/Citatin sectin f the Hurst Library web page (http://library.nrthwestu.edu) Create

More information

Dear Milestone Customer,

Dear Milestone Customer, Dear Milestne Custmer, With the purchase f Milestne Xprtect Transact yu have chsen a very flexible ptin t yur Milestne Xprtect Business slutin. Milestne Xprtect Transact enables yu t stre a serial data

More information

ClassFlow Administrator User Guide

ClassFlow Administrator User Guide ClassFlw Administratr User Guide ClassFlw User Engagement Team April 2017 www.classflw.cm 1 Cntents Overview... 3 User Management... 3 Manual Entry via the User Management Page... 4 Creating Individual

More information

Adverse Action Letters

Adverse Action Letters Adverse Actin Letters Setup and Usage Instructins The FRS Adverse Actin Letter mdule was designed t prvide yu with a very elabrate and sphisticated slutin t help autmate and handle all f yur Adverse Actin

More information

ROCK-POND REPORTING 2.1

ROCK-POND REPORTING 2.1 ROCK-POND REPORTING 2.1 AUTO-SCHEDULER USER GUIDE Revised n 08/19/2014 OVERVIEW The purpse f this dcument is t describe the prcess in which t fllw t setup the Rck-Pnd Reprting prduct s that users can schedule

More information

Getting Started with the SDAccel Environment on Nimbix Cloud

Getting Started with the SDAccel Environment on Nimbix Cloud Getting Started with the SDAccel Envirnment n Nimbix Clud Revisin Histry The fllwing table shws the revisin histry fr this dcument. Date Versin Changes 09/17/2018 201809 Updated figures thrughut Updated

More information

These tasks can now be performed by a special program called FTP clients.

These tasks can now be performed by a special program called FTP clients. FTP Cmmander FAQ: Intrductin FTP (File Transfer Prtcl) was first used in Unix systems a lng time ag t cpy and mve shared files. With the develpment f the Internet, FTP became widely used t uplad and dwnlad

More information

BMC Remedyforce Integration with Bomgar Remote Support

BMC Remedyforce Integration with Bomgar Remote Support BMC Remedyfrce Integratin with Bmgar Remte Supprt 2017 Bmgar Crpratin. All rights reserved wrldwide. BOMGAR and the BOMGAR lg are trademarks f Bmgar Crpratin; ther trademarks shwn are the prperty f their

More information

1 Getting and Extracting the Upgrader

1 Getting and Extracting the Upgrader Hughes BGAN-X 9202 Upgrader User Guide (PC) Rev 1.0 (23-Feb-12) This dcument explains hw t use the Hughes BGAN-X Upgrader prgram fr the 9202 User Terminal using a PC. 1 Getting and Extracting the Upgrader

More information

UPGRADING TO DISCOVERY 2005

UPGRADING TO DISCOVERY 2005 Centennial Discvery 2005 Why Shuld I Upgrade? Discvery 2005 is the culminatin f ver 18 mnths wrth f research and develpment and represents a substantial leap frward in audit and decisin-supprt technlgy.

More information

AvePoint Pipeline Pro 2.0 for Microsoft Dynamics CRM

AvePoint Pipeline Pro 2.0 for Microsoft Dynamics CRM AvePint Pipeline Pr 2.0 fr Micrsft Dynamics CRM Installatin and Cnfiguratin Guide Revisin E Issued April 2014 1 Table f Cntents Abut AvePint Pipeline Pr... 3 Required Permissins... 4 Overview f Installatin

More information

Introduction to Mindjet on-premise

Introduction to Mindjet on-premise Intrductin t Mindjet n-premise Mindjet Crpratin Tll Free: 877-Mindjet 1160 Battery Street East San Francisc CA 94111 USA Phne: 415-229-4200 Fax: 415-229-4201 www.mindjet.cm 2012 Mindjet. All Rights Reserved

More information

Graduate Application Review Process Documentation

Graduate Application Review Process Documentation Graduate Applicatin Review Prcess Cntents System Cnfiguratin... 1 Cgns... 1 Banner Dcument Management (ApplicatinXtender)... 2 Banner Wrkflw... 4 Navigatin... 5 Cgns... 5 IBM Cgns Sftware Welcme Page...

More information

Wave IP 4.5. CRMLink Desktop User Guide

Wave IP 4.5. CRMLink Desktop User Guide Wave IP 4.5 CRMLink Desktp User Guide 2015 by Vertical Cmmunicatins, Inc. All rights reserved. Vertical Cmmunicatins and the Vertical Cmmunicatins lg and cmbinatins theref and Vertical ViewPint, Wave Cntact

More information

Frequently Asked Questions

Frequently Asked Questions Frequently Asked Questins Date f Last Update: FAQ SatView 0001 SatView is nt pening and hangs at the initial start-up splash screen This is mst likely an issue with ne f the dependency, SQL LcalDB, missing

More information

HW4 Software version 3. Device Manager and Data Logging LOG-RC Series Data Loggers

HW4 Software version 3. Device Manager and Data Logging LOG-RC Series Data Loggers Page 1 f 18 HW4 Sftware versin 3 Device Manager and Data Lgging LOG-RC Series Data Lggers 2011; Page 2 f 18 Table f cntents 1 ORGANIZATION OF THE HW4 MANUALS... 3 2 OVERVIEW... 4 3 INITIAL SETUP... 4 3.1

More information

Qualtrics Instructions

Qualtrics Instructions Create a Survey/Prject G t the Ursinus Cllege hmepage and click n Faculty and Staff. Click n Qualtrics. Lgin t Qualtrics using yur Ursinus username and passwrd. Click n +Create Prject. Chse Research Cre.

More information

August 22, 2006 IPRO Tech Client Services Tip of the Day. Concordance and IPRO Camera Button / Backwards DB Link Setup

August 22, 2006 IPRO Tech Client Services Tip of the Day. Concordance and IPRO Camera Button / Backwards DB Link Setup Cncrdance and IPRO Camera Buttn / Backwards DB Link Setup When linking Cncrdance and IPRO, yu will need t update the DDEIVIEW.CPL file t establish the camera buttn. Setting up the camera buttn feature

More information

6 Ways to Streamline Your Tasks in Outlook

6 Ways to Streamline Your Tasks in Outlook 6 Ways t Streamline Yur Tasks in Outlk Every jb requires a variety f tasks during a given day. Maybe yurs includes meeting with clients, preparing a presentatin, r cllabrating with team members n an imprtant

More information

I - EDocman Installation EDocman component EDocman Categories module EDocman Documents Module...2

I - EDocman Installation EDocman component EDocman Categories module EDocman Documents Module...2 I - EDcman Installatin...2 1 - EDcman cmpnent...2 2 - EDcman Categries mdule...2 3 - EDcman Dcuments Mdule...2 4 - EDcman Search Plugin...3 5 - SH404 SEF plugin...3 II - Using EDcman extensin...3 I - EDcman

More information

Network Rail ARMS - Asbestos Risk Management System. Training Guide for use of the Import Survey Template

Network Rail ARMS - Asbestos Risk Management System. Training Guide for use of the Import Survey Template Netwrk Rail ARMS - Asbests Risk Management System Training Guide fr use f the Imprt Survey Template The ARMS Imprt Survey Template New Asbests Management Surveys and their Survey Detail reprts can be added

More information

Proper Document Usage and Document Distribution. TIP! How to Use the Guide. Managing the News Page

Proper Document Usage and Document Distribution. TIP! How to Use the Guide. Managing the News Page Managing the News Page TABLE OF CONTENTS: The News Page Key Infrmatin Area fr Members... 2 Newsletter Articles... 3 Adding Newsletter as Individual Articles... 3 Adding a Newsletter Created Externally...

More information

BI Publisher TEMPLATE Tutorial

BI Publisher TEMPLATE Tutorial PepleSft Campus Slutins 9.0 BI Publisher TEMPLATE Tutrial Lessn T2 Create, Frmat and View a Simple Reprt Using an Existing Query with Real Data This tutrial assumes that yu have cmpleted BI Publisher Tutrial:

More information

Single File Upload Guide

Single File Upload Guide Single File Uplad Guide August 15, 2018 Versin 9.6.134.78 Single File Uplad Guide 1 Fr the mst recent versin f this dcument, visit ur dcumentatin website. Single File Uplad Guide 2 Table f Cntents 1 Single

More information

1 Getting and Extracting the Upgrader

1 Getting and Extracting the Upgrader Hughes BGAN-X 9202 Upgrader User Guide (Mac) Rev 1.0 (23-Feb-12) This dcument explains hw t use the Hughes BGAN Upgrader prgram fr the 9202 User Terminal using a Mac Nte: Mac OS X Versin 10.4 r newer is

More information

The UNIVERSITY of NORTH CAROLINA at CHAPEL HILL

The UNIVERSITY of NORTH CAROLINA at CHAPEL HILL Yu will learn the fllwing in this lab: The UNIVERSITY f NORTH CAROLINA at CHAPEL HILL Cmp 541 Digital Lgic and Cmputer Design Spring 2016 Lab Prject (PART A): A Full Cmputer! Issued Fri 4/8/16; Suggested

More information

USER MANUAL. RoomWizard Administrative Console

USER MANUAL. RoomWizard Administrative Console USER MANUAL RmWizard Administrative Cnsle Cntents Welcme... 3 Administer yur RmWizards frm ne lcatin... 3 Abut This Manual... 4 Setup f the Administrative Cnsle... 4 Installatin... 4 The Cnsle Windw...

More information

Extended Traceability Report for Enterprise Architect

Extended Traceability Report for Enterprise Architect Extended Traceability Reprt User Guide Extended Traceability Reprt fr Enterprise Architect Extended Traceability Reprt fr Enterprise Architect... 1 Disclaimer... 2 Dependencies... 2 Overview... 2 Limitatins

More information

Tips For Customising Configuration Wizards

Tips For Customising Configuration Wizards Tips Fr Custmising Cnfiguratin Wizards ver 2010-06-22 Cntents Overview... 2 Requirements... 2 Applicatins... 2 WinSCP and Putty... 2 Adding A Service T An Existing Wizard... 3 Gal... 3 Backup Original

More information

Exercise 4: Working with tabular data Exploring infant mortality in the 1900s

Exercise 4: Working with tabular data Exploring infant mortality in the 1900s Exercise 4: Wrking with tabular data Explring infant mrtality in the 1900s Backgrund Althugh peple tend t think abut GIS as being primarily cncerned with mapping. It is better thught f as a type f database

More information

InformationNOW Letters

InformationNOW Letters InfrmatinNOW Letters Abut this Guide This Quick Reference Guide prvides an verview f letters in InfrmatinNOW. There are three types f letters: Student: May be used t create varius letters, frms, custmized

More information

Gemini Intercom Quick Start Guide

Gemini Intercom Quick Start Guide Gemini Intercm Quick Start Guide 2 Quick Start Guide Cntents Cntents... 1 Overview... 3 First Step unpack and inspect... 3 Netwrk plan and IP addresses... 4 Management PC... 5 Install Sftware... 6 Cnfigure

More information

APPLY PAGE: LOGON PAGE:

APPLY PAGE: LOGON PAGE: APPLY PAGE: Upn accessing the system fr the first time, yu will land n the Apply Page. This page will shw yu any currently pen pprtunities that yu can apply fr, as well as any relevant deadlines r ther

More information

Cntents 1 Intrductin Kit Cntents Requirements Installatin Gesture Sensr Kit Hardware and Jumper Settings De

Cntents 1 Intrductin Kit Cntents Requirements Installatin Gesture Sensr Kit Hardware and Jumper Settings De Thin Film Pyrelectric IR Gesture Sensr Demnstratr Kit Fr lw pwer, high perfrmance gesture cntrl User Guide Versin 1.0 Dcument Revisin 1.00 20 th February 2012 Cntents 1 Intrductin... 3 1.1 Kit Cntents...

More information

The Reporting Tool. An Overview of HHAeXchange s Reporting Tool

The Reporting Tool. An Overview of HHAeXchange s Reporting Tool HHAeXchange The Reprting Tl An Overview f HHAeXchange s Reprting Tl Cpyright 2017 Hmecare Sftware Slutins, LLC One Curt Square 44th Flr Lng Island City, NY 11101 Phne: (718) 407-4633 Fax: (718) 679-9273

More information

UiPath Automation. Walkthrough. Walkthrough Calculate Client Security Hash

UiPath Automation. Walkthrough. Walkthrough Calculate Client Security Hash UiPath Autmatin Walkthrugh Walkthrugh Calculate Client Security Hash Walkthrugh Calculate Client Security Hash Start with the REFramewrk template. We start ff with a simple implementatin t demnstrate the

More information

The UNIVERSITY of NORTH CAROLINA at CHAPEL HILL

The UNIVERSITY of NORTH CAROLINA at CHAPEL HILL Yu will learn the fllwing in this lab: The UNIVERSITY f NORTH CAROLINA at CHAPEL HILL Designing a mdule with multiple memries Designing and using a bitmap fnt Designing a memry-mapped display Cmp 541 Digital

More information

Quick Start Guide for EAB Campus Advisors

Quick Start Guide for EAB Campus Advisors Student Success Cllabrative Quick Start Guide fr EAB Campus Advisrs Clemsn has launched the EAB Campus platfrm fr advisrs and thers, with the gal f helping students explre a path t timely graduatin cmpletin

More information

USER GUIDE. Thanks for purchasing the igate! You ll need to follow these five Configuration Steps to get your igate up and running:

USER GUIDE. Thanks for purchasing the igate! You ll need to follow these five Configuration Steps to get your igate up and running: USER GUIDE Thanks fr purchasing the igate! Yu ll need t fllw these five Cnfiguratin Steps t get yur igate up and running: 1. Cnfigure Yur Hardware 2. Cnfigure Yur Cmputer 3. Cnfigure Yur Internet Cnnectin

More information

Enabling Your Personal Web Page on the SacLink

Enabling Your Personal Web Page on the SacLink 53 Enabling Yur Persnal Web Page n the SacLink *Yu need t enable yur persnal web page nly ONCE. It will be available t yu until yu graduate frm CSUS. T enable yur Persnal Web Page, fllw the steps given

More information

Microsoft Excel Extensions for Enterprise Architect

Microsoft Excel Extensions for Enterprise Architect Excel Extensins User Guide Micrsft Excel Extensins fr Enterprise Architect Micrsft Excel Extensins fr Enterprise Architect... 1 Disclaimer... 2 Dependencies... 2 Overview... 2 Installatin... 4 Verifying

More information

Quick Start Guide. Basic Concepts. DemoPad Designer - Quick Start Guide

Quick Start Guide. Basic Concepts. DemoPad Designer - Quick Start Guide Quick Start Guide This guide will explain the prcess f installing & using the DemPad Designer sftware fr PC, which allws yu t create a custmised Graphical User Interface (GUI) fr an iphne / ipad & embed

More information

RISKMAN REFERENCE GUIDE TO USER MANAGEMENT (Non-Network Logins)

RISKMAN REFERENCE GUIDE TO USER MANAGEMENT (Non-Network Logins) Intrductin This reference guide is aimed at managers wh will be respnsible fr managing users within RiskMan where RiskMan is nt cnfigured t use netwrk lgins. This guide is used in cnjunctin with the respective

More information

Windows Operating System Online Proctoring Guide

Windows Operating System Online Proctoring Guide Windws Operating System Online Prctring Guide ONLINE PROCTORING GUIDE 0 Windws Operating System Online Prctring Guide Cntents CONTENTS... 1 ABOUT ONLINE PROCTORING... 2 PREPARING FOR YOUR ONLINE PROCTORED

More information

Using CppSim to Generate Neural Network Modules in Simulink using the simulink_neural_net_gen command

Using CppSim to Generate Neural Network Modules in Simulink using the simulink_neural_net_gen command Using CppSim t Generate Neural Netwrk Mdules in Simulink using the simulink_neural_net_gen cmmand Michael H. Perrtt http://www.cppsim.cm June 24, 2008 Cpyright 2008 by Michael H. Perrtt All rights reserved.

More information

Sircon User Guide A Guide to Using the Vertafore Sircon Self-Service Portal

Sircon User Guide A Guide to Using the Vertafore Sircon Self-Service Portal Sircn User Guide A Guide t Using the Vertafre Sircn Self-Service Prtal September 2016 Versin 16.8 Cntents Cntents Using the Vertafre Sircn Self-Service Prtal... 3 Lg In... 3 Hme Page... 4 Lg New Cases...

More information

CodeSlice. o Software Requirements. o Features. View CodeSlice Live Documentation

CodeSlice. o Software Requirements. o Features. View CodeSlice Live Documentation CdeSlice View CdeSlice Live Dcumentatin Scripting is ne f the mst pwerful extensibility features in SSIS, allwing develpers the ability t extend the native functinality within SSIS t accmmdate their specific

More information

The following screens show some of the extra features provided by the Extended Order Entry screen:

The following screens show some of the extra features provided by the Extended Order Entry screen: SmartFinder Orders Extended Order Entry Extended Order Entry is an enhanced replacement fr the Sage Order Entry screen. It prvides yu with mre functinality while entering an rder, and fast access t rder,

More information

ONLINE GRANT APPLICATION INSTRUCTIONS

ONLINE GRANT APPLICATION INSTRUCTIONS Overview ONLINE GRANT APPLICATION INSTRUCTIONS This dcument is designed t prvide grant applicants with instructins fr use f the Fundant Grant Lifecycle Manager applicatin fr grants frm the Oberktter Fundatin.

More information

SmartPass User Guide Page 1 of 50

SmartPass User Guide Page 1 of 50 SmartPass User Guide Table f Cntents Table f Cntents... 2 1. Intrductin... 3 2. Register t SmartPass... 4 2.1 Citizen/Resident registratin... 4 2.1.1 Prerequisites fr Citizen/Resident registratin... 4

More information

Access the site directly by navigating to in your web browser.

Access the site directly by navigating to   in your web browser. GENERAL QUESTIONS Hw d I access the nline reprting system? Yu can access the nline system in ne f tw ways. G t the IHCDA website at https://www.in.gv/myihcda/rhtc.htm and scrll dwn the page t Cmpliance

More information

TECHNICAL REQUIREMENTS

TECHNICAL REQUIREMENTS TECHNICAL REQUIREMENTS Table f Cntent PLATFORMS... 2 CONNECTION SPEED... 2 SUPPORTED BROWSERS... 2 ARMENIAN LANGUAGE SUPPORT... 2 Windws XP... 2 Windws Vista... 3 Windws 7... 4 Windws 8... 5 MAC OS...

More information

Because of security on the site, you cannot create a bookmark through the usual means. In order to create a bookmark that will work consistently:

Because of security on the site, you cannot create a bookmark through the usual means. In order to create a bookmark that will work consistently: The CllegeNet URL is: https://admit.applyweb.cm/admit/shibbleth/crnell Lg in with Crnell netid and Kerbers passwrd Because f security n the site, yu cannt create a bkmark thrugh the usual means. In rder

More information

Getting Started with DocuSign

Getting Started with DocuSign Getting Started with DcuSign DcuSign is the electrnic system used t rute, apprve, and execute cnstructin related dcuments at The University f Alabama. While these basic instructins are intended t help

More information

TIBCO Statistica Options Configuration

TIBCO Statistica Options Configuration TIBCO Statistica Optins Cnfiguratin Sftware Release 13.3 June 2017 Tw-Secnd Advantage Imprtant Infrmatin SOME TIBCO SOFTWARE EMBEDS OR BUNDLES OTHER TIBCO SOFTWARE. USE OF SUCH EMBEDDED OR BUNDLED TIBCO

More information

Class Roster. Curriculum Class Roster Step-By-Step Procedure

Class Roster. Curriculum Class Roster Step-By-Step Procedure Imprtant Infrmatin The page prvides faculty and staff a list f students wh are enrlled and waitlisted in a particular class. Instructrs are given access t each class fr which they are listed as an instructr,

More information

mconnect Lead Management System 2.0

mconnect Lead Management System 2.0 mcnnect Lead Management System 2.0 User Manual Updated July 2015 Page 1 f 15 This manual serves as a reference guide fr Mahindra Nrth America s mcnnect lead management system. This dcument serves as a

More information

Outlook Web Application (OWA) Basic Training

Outlook Web Application (OWA) Basic Training Outlk Web Applicatin (OWA) Basic Training Requirements t use OWA Full Versin: Yu must use at least versin 7 f Internet Explrer, Safari n Mac, and Firefx 3.X. (Ggle Chrme r Internet Explrer versin 6, yu

More information

Constituent Page Upgrade Utility for Blackbaud CRM

Constituent Page Upgrade Utility for Blackbaud CRM Cnstituent Page Upgrade Utility fr Blackbaud CRM In versin 4.0, we made several enhancements and added new features t cnstituent pages. We replaced the cnstituent summary with interactive summary tiles.

More information

VMware AirWatch SDK Plugin for Apache Cordova Instructions Add AirWatch Functionality to Enterprise Applicataions with SDK Plugins

VMware AirWatch SDK Plugin for Apache Cordova Instructions Add AirWatch Functionality to Enterprise Applicataions with SDK Plugins VMware AirWatch SDK Plugin fr Apache Crdva Instructins Add AirWatch Functinality t Enterprise Applicatains with SDK Plugins v1.2 Have dcumentatin feedback? Submit a Dcumentatin Feedback supprt ticket using

More information

Aras Innovator 11. Package Import Export Utilities

Aras Innovator 11. Package Import Export Utilities Aras Innvatr 11 Package Imprt Exprt Utilities Dcument #: 11.0.02015040601 Last Mdified: 1/4/2018 Aras Innvatr 11 Package Imprt Exprt Utilities Cpyright Infrmatin Cpyright 2018 Aras Crpratin. All Rights

More information

Firmware Upgrade Wizard v A Technical Guide

Firmware Upgrade Wizard v A Technical Guide Firmware Upgrade Wizard v4.1.1 A Technical Guide Nvember 2015 Intrductin The Firmware Upgrade Wizard prvides the fllwing features: It supprts upgrading the firmware n designated devices, see Supprted devices.

More information

Test Pilot User Guide

Test Pilot User Guide Test Pilt User Guide Adapted frm http://www.clearlearning.cm Accessing Assessments and Surveys Test Pilt assessments and surveys are designed t be delivered t anyne using a standard web brwser and thus

More information

TRAINING GUIDE. Lucity Mobile

TRAINING GUIDE. Lucity Mobile TRAINING GUIDE The Lucity mbile app gives users the pwer f the Lucity tls while in the field. They can lkup asset infrmatin, review and create wrk rders, create inspectins, and many mre things. This manual

More information

Customer Upgrade Checklist

Customer Upgrade Checklist Custmer Upgrade Checklist Getting Ready fr Yur Sabre Prfiles Upgrade Kicking Off the Prject Create a prfiles prject team within yur agency. Cnsider including peple wh can represent bth the business and

More information

TRAINING GUIDE. Overview of Lucity Spatial

TRAINING GUIDE. Overview of Lucity Spatial TRAINING GUIDE Overview f Lucity Spatial Overview f Lucity Spatial In this sessin, we ll cver the key cmpnents f Lucity Spatial. Table f Cntents Lucity Spatial... 2 Requirements... 2 Setup... 3 Assign

More information

WordPress Overview for School Webmasters

WordPress Overview for School Webmasters WrdPress Overview fr Schl Webmasters Cntents 1. Rle f the Schl Webmaster... 2 2. Rle f the District Webmaster... 2 3. Schl Website Standards... 3 Header... 3 Fter... 3 Pages... 4 Sites... 5 4. Hw T...

More information

Trimble Survey GNSS Firmware Version 4.81 (July 2013)

Trimble Survey GNSS Firmware Version 4.81 (July 2013) Handheld Integrated Mdular RELEASE NOTES TRIMBLE SURVEY GNSS FIRMWARE Trimble Survey GNSS Firmware Versin 4.81 (July 2013) Requirements This firmware versin includes imprvements t the Survey Receiver firmware.

More information

Click Studios. Passwordstate. RSA SecurID Configuration

Click Studios. Passwordstate. RSA SecurID Configuration Passwrdstate RSA SecurID Cnfiguratin This dcument and the infrmatin cntrlled therein is the prperty f Click Studis. It must nt be reprduced in whle/part, r therwise disclsed, withut prir cnsent in writing

More information

UiPath Automation. Walkthrough. Walkthrough Calculate Client Security Hash

UiPath Automation. Walkthrough. Walkthrough Calculate Client Security Hash UiPath Autmatin Walkthrugh Walkthrugh Calculate Client Security Hash Walkthrugh Calculate Client Security Hash Start with the REFramewrk template. We start ff with a simple implementatin t demnstrate the

More information

IFSP PDF Upload/Download Guidance

IFSP PDF Upload/Download Guidance IFSP PDF Uplad/Dwnlad Guidance Intr/backgrund The dwnladable IFSP was created t assist FSC s in writing an IFSP r IFSP review n a visit withut the need fr internet cnnectin. Adbe Acrbat is required fr

More information

Campuses that access the SFS nvision Windows-based client need to allow outbound traffic to:

Campuses that access the SFS nvision Windows-based client need to allow outbound traffic to: Summary This dcument is a guide intended t guide yu thrugh the prcess f installing and cnfiguring PepleTls 8.55.27 (r current versin) via Windws Remte Applicatin (App). Remte App allws the end user t run

More information

MOS Access 2013 Quick Reference

MOS Access 2013 Quick Reference MOS Access 2013 Quick Reference Exam 77-424: MOS Access 2013 Objectives http://www.micrsft.cm/learning/en-us/exam.aspx?id=77-424 Create and Manage a Database Create a New Database This bjective may include

More information

InformationNOW Letters

InformationNOW Letters InfrmatinNOW Letters Abut this Guide This Quick Reference Guide prvides an verview f letters in InfrmatinNOW. There are three types f letters: Student: May be used t create varius letters, frms, custmized

More information

TRACK CHAIRS CREATING INVITED SESSIONS AND INVITING SESSION ORGANIZER(S)

TRACK CHAIRS CREATING INVITED SESSIONS AND INVITING SESSION ORGANIZER(S) TRACK CHAIRS CREATING INVITED SESSIONS AND INVITING SESSION ORGANIZER(S) I. Creating Invited Sessins a. After lgin click n the Sessins Bx b. Select yur track frm the drp dwn menu. c. Once yu select the

More information

Scroll down to New and another menu will appear. Select Folder and a new

Scroll down to New and another menu will appear. Select Folder and a new Creating a New Flder Befre we begin with Micrsft Wrd, create a flder n yur Desktp named Summer PD. T d this, right click anywhere n yur Desktp and a menu will appear. Scrll dwn t New and anther menu will

More information

Information on using ChurchApp

Information on using ChurchApp Infrmatin n using ChurchApp 1. Intrductin What is ChurchApp? ChurchApp is an nline system which enables us t d many things at its mst simple level it serves as an nline address bk fr Emmanuel; we are als

More information

Renewal Reminder. User Guide. Copyright 2009 Data Springs Inc. All rights reserved.

Renewal Reminder. User Guide. Copyright 2009 Data Springs Inc. All rights reserved. Renewal Reminder User Guide Cpyright 2009 Data Springs Inc. All rights reserved. Renewal Reminder 2.5 User Guide Table f cntents: 1 INTRODUCTION...3 2 INSTALLATION PROCEDURE...4 3 ADDING RENEWAL REMINDER

More information

AvePoint Timeline Enterprise for Microsoft Dynamics CRM

AvePoint Timeline Enterprise for Microsoft Dynamics CRM AvePint Timeline Enterprise 1.0.2 fr Micrsft Dynamics CRM Installatin and Cnfiguratin Guide Revisin B Issued Nvember 2013 Timeline Enterprise fr Micrsft Dynamics CRM Install and Cnfig 1 Table f Cntents

More information

If you have any questions that are not covered in this manual, we encourage you to contact us at or send an to

If you have any questions that are not covered in this manual, we encourage you to contact us at or send an  to Overview Welcme t Vercity, the ESS web management system fr rdering backgrund screens and managing the results. Frm any cmputer, yu can lg in and access yur applicants securely, rder a new reprt, and even

More information