Lab# 10: Embedded Applications and Location Tracking Applications

Size: px
Start display at page:

Download "Lab# 10: Embedded Applications and Location Tracking Applications"

Transcription

1 Department f Infrmatin Technlgy Faculty f Cmputing and Infrmatin Technlgy King Abdulaziz University Mbile Applicatin Develpment CPIT490 Lab# 10: Embedded Applicatins and Lcatin Tracking Applicatins Objectives: The bjective f this lab is t develp embedded andrid applicatins and lcatin tracking applicatins. Outline f this lab: 1. Embedded Applicatins 2. Lcatin Management Applicatin Activity Outcmes At the end f this lab, the student will be able t develp an embedded Andrid Applicatins and lcatin management applicatins. Task 1: Steps t develp an embedded andrid applicatin: Step 1. Embedding PDFViewer in the Andrid Prject: Create a new Andrid Prject. Dwnlad the PDFViewer.jar file frm Internet r frm Mdle. Add this file in the Prject s build path (this culd be dne by adding the jar file int the libs flder f the Andrid applicatin). Cpy the fllwing drawable resurces frm PdfViewer/res/drawable int YurPrject/res/drawable flder: left_arrw.png right_arrw.png, zm_in.png, zm_ut.png Cpy the fllwing tw layut resurces frm PdfViewer/res/layut int YurPrject/res/layut flder: dialg_pagenumber.xml, pdf_file_passwrd.xml Step 2. Develping the Java cde: In additin t the Main Activity java class, create an additinal activity class called MyPDFViewerActivity.java by extending PdfViewerActivity. This prgram is given belw. imprt net.sf.andpdf.pdfviewer.pdfvieweractivity; public class MyPdfViewerActivity extends PdfViewerActivity { public int getpreviuspageimageresurce() {return R.drawable.left_arrw; public int getnextpageimageresurce() { return R.drawable.right_arrw; public int getzminimageresurce() {return R.drawable.zm_in; public int getzmoutimageresurce() {return R.drawable.zm_ut; public int getpdfpasswrdlayutresurce() {return R.layut.pdf_file_passwrd; public int getpdfpagenumberresurce() { return R.layut.dialg_pagenumber; public int getpdfpasswrdeditfield() {return R.id.etPasswrd; public int getpdfpasswrdokbuttn() {return R.id.btOK; public int getpdfpasswrdexitbuttn() { return R.id.btExit; public int getpdfpagenumbereditfield() {return R.id.pagenum_edit; Create the Main Activity class as belw. imprt net.sf.andpdf.pdfviewer.pdfvieweractivity; imprt andrid.app.activity; imprt andrid.cntent.intent; imprt andrid.s.bundle; 1

2 imprt andrid.view.menu; public class MainActivity extends Activity public vid ncreate(bundle savedinstancestate) { super.ncreate(savedinstancestate); setcntentview(r.layut.activity_main); // CODE FOR FILE ACCESS COMES HERE refer t step 4 Step 3. Updating the manifest file: a. Yu need t mdify the Manifest file t include bth activities. <applicatin andrid:icn="@drawable/ic_launcher" andrid:label="@string/app_name" andrid:theme="@style/apptheme" > <activity andrid:name=".mainactivity" andrid:label="@string/title_activity_main" > <intent-filter> <actin andrid:name="andrid.intent.actin.main" /> <categry andrid:name="andrid.intent.categry.launcher" /> </intent-filter> </activity> <activity andrid:name="mypdfvieweractivity"></activity> </applicatin> b. If yu want t access the lcal SD Card t play sme vide r audi, yu need t prvide READ_EXTERNAL_STORAGE permissin. <uses-permissin andrid:name="andrid.permissin.read_external_storage"> </uses-permissin> Step 4. Different methds t access PDF files present at different lcatins 1. In rder t access the internal and external strage present in the mbile device r emulatr, varius methds culd be used. The prblem with these methds is that they culd perfrm differently n different emulatrs and devices. Using the fllwing methds in the ncreate() methd f MainActivity class, please identify the directry which is accessed n yur mbile device. Lg.d("TESTING", Envirnment.getExternalStrageDirectry().tString()); // returns /strage/emulated/legacy which is the internal strage Lg.d("TESTING", System.getenv("EXTERNAL_STORAGE").tString()); // returns /strage/extsdcard which is the external strage Lg.d("TESTING", System.getenv("SECONDARY_STORAGE").tString()); 2. Based n the abve, mdify the cde t access the file present in yur internal and external strage. Yu need nly ne f these entries. File file = new File(Envirnment.getExternalStrageDirectry().getPath() +"/test.pdf"); File file = new File("/strage/extSdCard/test.pdf"); 3. Opening the PDF frm the default PDF Viewer. Intent target = new Intent(Intent.ACTION_VIEW); 2

3 target.setdataandtype(uri.frmfile(file),"applicatin/pdf"); target.setflags(intent.flag_activity_no_history); // Intent intent = Intent.createChser(target, "Open File"); 4. Opening the PDF frm the embedded PDF Viewer. Intent intent = new Intent(this, MyPdfViewerActivity.class); // accessing a file present in the SD card // Change the file path and file name accrding t yur file details intent.putextra(pdfvieweractivity.extra_pdffilename,"/strage/sdcard/test.pdf"); Task 2: Develping an andrid applicatin fr lcatin Tracking: In rder t develp Ggle API based andrid applicatins, make sure the fllwing are available: G t SDK Manager in Eclipse: Select the respective Ggle Maps API that matches the andrid versin and install it; if yu want t upgrade yur Andrid API level, yu need t use help Install New Sftware Under Extras, select Ggle Play Services and install it a. Obtain the SHA1 key: i. T btain the SHA1 key, use the fllwing: C:\<jdk-flder>\bin>keytl.exe -list -alias andriddebugkey -keystre C:\<yurHmeFlder>\.andrid\debug.keystre -strepass andrid -keypass andrid v OR ii. Yu culd use the Eclipse t btain the SHA1 key. This is pssible using Windw Preferences Andrid Build b. Obtain the API key: i. Register yur client ID and btain Ggle API key at ii. Yu will need t use yur gmail lgin iii. Under services, enable Ggle Maps Andrid API v2. Yu culd click n Create New Andrid key t generate the key. Yu need yur SHA1 key and the package name fr this. Enter the values f SHA1 key and package name, separated with a semi-cln. iv. Yur new API key will be a 40 character string Nte the API key btain frm the previus step. Als, nte its validity perid. Add the Ggle Play Services prject int yur Eclipse wrkspace. Click File Imprt, select Andrid Existing Andrid Cde int Wrkspace Brwse t and select <andrid-sdk-flder>/extras/ggle/ggle_play_services/libprject/ggle-playservices_lib Yu dn t need t enable the ptin t cpy the library int yur wrkspace In yur new prject file: T add the dependency t Ggle Play Services int yur prject Prject Prperties Andrid Library, Add ggle-play-services_lib Update MainActivity.java t extend FragmentActivity instead f Activity Nte: If there is an errr with regard t a missing library, yu need t right click n the prject and g t Build Path and cnfigure Build Path. In the libraries tab, remve the wrngly added libraries. Add the fllwing tag int yur AndridManifest.xml just befre the clsing </applicatin> tag 3

4 <meta-data andrid:name="cm.ggle.andrid.maps.v2.api_key" andrid:value="yur_api_key"/> Yur applicatin nw als needs the fllwing permissins in the AndridManifest.xml <permissin andrid:name="yur_package_name.permissin.maps_receive" andrid:prtectinlevel="signature"/> <uses-permissin andrid:name="yur_package_name.permissin.maps_receive"/> <uses-permissin andrid:name="andrid.permissin.internet"/> <uses-permissin andrid:name="andrid.permissin.write_external_storage"/> <uses-permissin andrid:name="cm.ggle.andrid.prviders.gsf.permissin.read_gservices"/> Optinally yu can include ne r bth f these permissins t enable aut-lcatin <uses-permissin andrid:name="andrid.permissin.access_coarse_location"/> <uses-permissin andrid:name="andrid.permissin.access_fine_location"/> Maps v2 uses OpenGl s the fllwing uses-feature is als required <uses-feature andrid:glesversin="0x " andrid:required="true"/> The layut file is like this: <?xml versin="1.0" encding="utf-8"?> <fragment xmlns:andrid=" xmlns:map=" andrid:id="@+id/the_map" andrid:layut_width="match_parent" andrid:layut_height="match_parent" andrid:name="cm.ggle.andrid.gms.maps.mapfragment" map:cameratilt="45" map:camerazm="14" /> In rder t run the applicatin n an Andrid device, whse andrid versin is less that andrid versin 12, use <fragment andrid:name="cm.ggle.andrid.gms.maps.supprtmapfragment" /> Instead f <fragment andrid:name="cm.ggle.andrid.gms.maps.mapfragment" /> Make sure Target build is Ggle API. Yu culd check that n Right-click n Prject Preferences Andrid Prject Build Target Yu need t check whether yur prject has ggle-play-services_lib as a library. Ding this prcess includes the ggle-play-services_lib.jar file int Andrid Dependencies fr the current prject. This is pssible nly after imprting the ggle-play-services_lib int Eclipse. Example prgram fr lcatin management: public class MyMapActivity extends FragmentActivity { LcatinClient prtected vid ncreate(bundle savedinstancestate) { super.ncreate(savedinstancestate); setcntentview(r.layut.activity_my_map); GglePlayServicesUtil.isGglePlayServicesAvailable(this); // Get a handle t the Map Fragment GgleMap map = ((SupprtMapFragment) getsupprtfragmentmanager().findfragmentbyid(r.id.the_map)).getmap(); // Map settings // Other supprted types include: MAP_TYPE_NORMAL, // MAP_TYPE_TERRAIN, MAP_TYPE_HYBRID and MAP_TYPE_NONE //map.setmaptype(map.map_type_satellite); map.setmaptype(map.map_type_normal); map.getuisettings().setzmcntrlsenabled(false); // shwfixedlcatin(map); shwcurrentlcatin(map); 4

5 private vid shwfixedlcatin(gglemap map) { LatLng kau = new LatLng( , ); map.setmylcatinenabled(true); map.mvecamera(cameraupdatefactry.newlatlngzm(kau, 13)); map.addmarker(new MarkerOptins().title("KAU").snippet("Our university in Jeddah.") //.icn(bitmapdescriptrfactry.frmresurce(r.drawable.huse_flag)) // Flat markers will rtate when the map is rtated, // and change perspective when the map is tilted. //.flat(true).psitin(kau)); // fr flat(true) CameraPsitin camerapsitin = CameraPsitin.builder().target(kau).zm(13).bearing(90).build(); // Animate the change in camera view ver 2 secnds map.animatecamera(cameraupdatefactry.newcamerapsitin(camerapsitin), 2000, null); // Plylines are useful fr marking paths and rutes n the map. map.addplyline(new PlylineOptins().gedesic(true).add(new LatLng( , 40.35)) // Taif.add(new LatLng( , 39.6)) // Madinah.add(new LatLng( , )) // Makkah.add(new LatLng( , )) // KAU ); private vid shwcurrentlcatin(gglemap map) { LcatinManager service = (LcatinManager) getsystemservice(location_service); blean enabledgps = service.isprviderenabled(lcatinmanager.gps_provider); blean enabledwifi = service.isprviderenabled(lcatinmanager.network_provider); // Check if enabled and if nt send user t the GPS settings // Better slutin wuld be t display a dialg and suggesting t // g t the settings if (!enabledgps) { Tast.makeText(this, "GPS signal nt fund", Tast.LENGTH_LONG).shw(); Intent intent = new Intent(Settings.ACTION_LOCATION_SOURCE_SETTINGS); if (enabledgps) { // service.requestlcatinupdates(lcatinmanager.gps_provider, 0, 0, lcatinlistenergps); // lcatinmanager.requestlcatinupdates( // LcatinManager.GPS_PROVIDER, // MIN_TIME_BW_UPDATES, // MIN_DISTANCE_CHANGE_FOR_UPDATES, this); Lg.d("GPS Enabled", "GPS Enabled"); if (service!= null) { Lcatin lcatin = service.getlastknwnlcatin(lcatinmanager.gps_provider); if (lcatin!= null) { duble latitude = lcatin.getlatitude(); duble lngitude = lcatin.getlngitude(); Tast.makeText(this, "Selected Prvider " + lcatin.getlatitude() + "," + lcatin.getlngitude(), Tast.LENGTH_SHORT).shw(); LcatinManager lcatinmanager = (LcatinManager) getsystemservice(cntext.location_service); // Define the criteria hw t select the lcatin prvider -> use default Criteria criteria = new Criteria(); String prvider = lcatinmanager.getbestprvider(criteria, false); Lcatin lcatin = lcatinmanager.getlastknwnlcatin(prvider); if (lcatin!= null) { Tast.makeText(this, "Selected Prvider " + prvider, Tast.LENGTH_SHORT).shw(); 5

6 // nlcatinchanged(lcatin); LatLng current = new LatLng(lcatin.getLatitude(), lcatin.getlngitude()); map.mvecamera(cameraupdatefactry.newlatlngzm(current, 13)); map.addmarker(new MarkerOptins().psitin(current).title("Current Lcatin")); //.icn(bitmapdescriptrfactry //.frmresurce(r.drawable.ic_launcher))); else { Tast.makeText(this, "GPS Signal is nt available", Tast.LENGTH_SHORT).shw(); Pssible errrs and slutins: NOTE: Ggle Andrid API cdes wrk nly n Andrid device and nt n the emulatr. In the emulatr, yu get nly the grids and n maps. ClassNtFundExceptin: This errr indicates that respective class is nt fund in the apk file. T slve this, yu need t include the ggle-play-services_lib as a library t yur prject. Prgram pens and clses immediately: Happens in the emulatr: There might be prblems with the target SDK versin r there is a mistake in the manifest file Yu need t have yur netwrk cnnectin enabled Happens in the device: Check the minimum and Target SDK versin prvided in the Manifest file alng with that f the mbile device itself. A mismatch in this will cause the prgram t crash Crashing f eclipse is pssible with.metadata/.lg indicating as belw: Plug-in cm.andrid.ide.eclipse.adt was cm.andrid.ide.eclipse.adt.internal.welcme unable t lad class G t.metadata/.plugins flder and rename.metadata/.plugins/rg.eclipse.e4.wrkbench t.metadata/.plugins/rg.eclipse.e4.wrkbench.temp and restart eclipse andrid.view.inflateexceptin: Binary XML file line #2: Errr inflating class fragment Make sure this entry is present in layut file andrid:name="cm.ggle.andrid.gms.maps.supprtmapfragment Make sure t add the belw in manifest file under <applicatin> tag <meta-data andrid:name="cm.ggle.andrid.gms.versin" andrid:value="@integer/ggle_play_services_versin" /> <meta-data andrid:name="cm.ggle.andrid.maps.v2.api_key" andrid:value="api-key" /> Ggle Maps Andrid API v2 nly supprts devices with OpenGL ES 2.0 and abve This errr is pssible if yur emulatr selected des nt supprt OpenGL ES 2.0 and als if the device des nt supprt OpenGL ES 2.0. Library is missing while cmpiling the prgram. Als, imprt andrid.supprt.v4.app.fragmentactivity; has an errr Right click n the prject and chse prperties. Then in Java Build Path, add andridsupprt-v4.jar (ADT-Flder\sdk\extra\andrid\supprt\v4)as an external jar 6

7 Exercises: 1. Using the inbuilt PDF Viewer d the fllwing: a. Open a PDF file present in a Web Server ( b. Open a PDF file present in the assets r raw flder f the apk file. i. Direct access f the files present in the assets r raw flder might nt wrk prperly n all mbile phnes r emulatrs. Thus, yu need t cpy the files int a separate lcatin in the SD card and then access it. ii. Accessing the files present in the raw r assets flder. cpyfile(this.getresurces().penrawresurce(r.raw.test), new FileOutputStream(new File("/strage/extSdCard/", "test1.pdf"))); // fr file in raw flder cpyfile(this.getassets().pen("test.pdf"), new FileOutputStream(new File("/strage/extSdCard/", "test1.pdf"))); // fr file in assets flder // returns /data/data/cm.pdftesting.pdftesting/files flder Lg.d("TESTING",getFilesDir().tString()); private vid cpyfile(inputstream in, OutputStream ut) thrws IOExceptin { byte[] buffer = new byte[1024]; int read; while((read = in.read(buffer))!= -1){ ut.write(buffer, 0, read); c. The fllwing cde is used t list nly the pdf files in a flder and when clicked pen, the respective file will be pened. File images = Envirnment.getExternalStrageDirectry(); imagelist = images.listfiles(new FilenameFilter() { public blean accept(file dir, String name) { return ((name.endswith(".pdf"))); ); pdflist = new String[imagelist.length]; fr (int i = 0; i < imagelist.length; i++) { pdflist[i] = imagelist[i].getname(); this.setlistadapter(new ArrayAdapter<String>(this, andrid.r.layut.simple_list_item_1, pdflist)); prtected vid nlistitemclick(listview l, View v, int psitin, lng id) { super.nlistitemclick(l, v, psitin, id); String path = imagelist[(int) id].getabslutepath(); penpdfintent(path); private vid penpdfintent(string path) { try { final Intent intent = new Intent(this, PdfActivity.class); intent.putextra(pdfvieweractivity.extra_pdffilename, path); catch (Exceptin e) { e.printstacktrace(); References: 7

CS5530 Mobile/Wireless Systems Using Google Map in Android

CS5530 Mobile/Wireless Systems Using Google Map in Android Mbile/Wireless Systems Using Ggle Map in Andrid Yanyan Zhuang Department f Cmputer Science http://www.cs.uccs.edu/~yzhuang UC. Clrad Springs Setup Install the Ggle Play services SDK Tls > Andrid > SDK

More information

Andrid prgramming curse Data strage Sessin bjectives Internal Strage Intrductin By Võ Văn Hải Faculty f Infrmatin Technlgies Andrid prvides several ptins fr yu t save persistent applicatin data. The slutin

More information

Guide to getting started in J2ME for the Motorola A780 phone

Guide to getting started in J2ME for the Motorola A780 phone Guide t getting started in J2ME fr the Mtrla A780 phne This guide will take yu thrugh setting up a build envirnment fr J2ME in Windws and in writing a few sample applicatins fr the A780 phne. There are

More information

CROWNPEAK DESKTOP CONNECTION (CDC) INSTALLATION GUIDE VERSION 2.0

CROWNPEAK DESKTOP CONNECTION (CDC) INSTALLATION GUIDE VERSION 2.0 TECHNICAL DOCUMENTATION CROWNPEAK DESKTOP CONNECTION (CDC) INSTALLATION GUIDE VERSION 2.0 AUGUST 2012 2012 CrwnPeak Technlgy, Inc. All rights reserved. N part f this dcument may be reprduced r transmitted

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

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

CaseWare Working Papers. Data Store user guide

CaseWare Working Papers. Data Store user guide CaseWare Wrking Papers Data Stre user guide Index 1. What is a Data Stre?... 3 1.1. When using a Data Stre, the fllwing features are available:... 3 1.1.1.1. Integratin with Windws Active Directry... 3

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

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

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

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

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

Paraben s Phone Recovery Stick

Paraben s Phone Recovery Stick Paraben s Phne Recvery Stick v. 3.0 User manual Cntents Abut Phne Recvery Stick... 3 What s new!... 3 System Requirements... 3 Applicatin User Interface... 4 Understanding the User Interface... 4 Main

More information

Automatic imposition version 5

Automatic imposition version 5 Autmatic impsitin v.5 Page 1/9 Autmatic impsitin versin 5 Descriptin Autmatic impsitin will d the mst cmmn impsitins fr yur digital printer. It will autmatically d flders fr A3, A4, A5 r US Letter page

More information

HPE AppPulse Mobile. Software Version: 2.1. IT Operations Management Integration Guide

HPE AppPulse Mobile. Software Version: 2.1. IT Operations Management Integration Guide HPE AppPulse Mbile Sftware Versin: 2.1 IT Operatins Management Integratin Guide Dcument Release Date: Nvember 2015 Cntents Overview: The IT Operatins Management Integratin 3 System Requirements 3 Hw t

More information

Manual for installation and usage of the module Secure-Connect

Manual for installation and usage of the module Secure-Connect Mdule Secure-Cnnect Manual fr installatin and usage f the mdule Secure-Cnnect Page 1 / 1 5 Table f Cntents 1)Cntents f the package...3 2)Features f the mdule...4 3)Installatin f the mdule...5 Step 1: Installatin

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

Asset Panda Web Application Release 12.02

Asset Panda Web Application Release 12.02 Asset Panda Web Applicatin Release 12.02 User Cnfiguratin Permissins Several changes have been made t this page including the fllwing. Page Design The layut has been changed s that all Edit and Misc Cnfiguratins

More information

Paraben s Phone Recovery Stick

Paraben s Phone Recovery Stick Paraben s Phne Recvery Stick v. 4.3 User Manual Cntents Abut Phne Recvery Stick... 3 What s New!... 3 Getting Started... 4 System Requirements... 4 Hw t Use the Phne Recvery Stick... 4 Applicatin User

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

Max 8/16 and T1/E1 Gateway, Version FAQs

Max 8/16 and T1/E1 Gateway, Version FAQs Frequently Asked Questins Max 8/16 and T1/E1 Gateway, Versin 1.5.10 FAQs The FAQs have been categrized int the fllwing tpics: Calling Calling Cmpatibility Cnfiguratin Faxing Functinality Glssary Q. When

More information

IT Essentials (ITE v6.0) Chapter 5 Exam Answers 100% 2016

IT Essentials (ITE v6.0) Chapter 5 Exam Answers 100% 2016 IT Essentials (ITE v6.0) Chapter 5 Exam Answers 100% 2016 1. What are tw functins f an perating system? (Chse tw.) cntrlling hardware access managing applicatins text prcessing flw chart editing prgram

More information

Kaltura MediaSpace TM Enterprise 2.0 Requirements and Installation

Kaltura MediaSpace TM Enterprise 2.0 Requirements and Installation Kaltura MediaSpace TM Enterprise 2.0 Requirements and Installatin Updated Aug 30, 2011 Server Requirements Hardware The hardware requirements are mstly dependent n the number f cncurrent users yu expect

More information

Getting Started with the Web Designer Suite

Getting Started with the Web Designer Suite Getting Started with the Web Designer Suite The Web Designer Suite prvides yu with a slew f Dreamweaver extensins that will assist yu in the design phase f creating a website. The tls prvided in this suite

More information

Andrid prgramming curse Sessin bjectives Intrductin URL & HttpCnnectin Netwrking APIs Using URL t read data Using HttpCnnectin pst data Reading netwrk state Web Service SOAP REST By Võ Văn Hải Faculty

More information

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

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

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

Definiens XD Release Notes

Definiens XD Release Notes Definiens XD 1.1.2 Release Ntes Errr! N text f specified style in dcument. Definiens XD 1.1.2 - Release Ntes Imprint and Versin Dcument Versin XD 1.1.2 Cpyright 2009 Definiens AG. All rights reserved.

More information

NiceLabel LMS. Installation Guide for Single Server Deployment. Rev-1702 NiceLabel

NiceLabel LMS. Installation Guide for Single Server Deployment. Rev-1702 NiceLabel NiceLabel LMS Installatin Guide fr Single Server Deplyment Rev-1702 NiceLabel 2017. www.nicelabel.cm 1 Cntents 1 Cntents 2 2 Architecture 3 2.1 Server Cmpnents and Rles 3 2.2 Client Cmpnents 3 3 Prerequisites

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

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

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

Installing Photran with Eclipse (MinGW or Cygwin)

Installing Photran with Eclipse (MinGW or Cygwin) Installing Phtran with Eclipse (MinGW r Cygwin) Phtran is an integrated develpment envirnment (IDE) and refactring tl fr Frtran. Phtran is a cmpnent f Eclipse, an pen-surce develpment platfrm fr building,

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

Announcing Veco AuditMate from Eurolink Technology Ltd

Announcing Veco AuditMate from Eurolink Technology Ltd Vec AuditMate Annuncing Vec AuditMate frm Eurlink Technlgy Ltd Recrd any data changes t any SQL Server database frm any applicatin Database audit trails (recrding changes t data) are ften a requirement

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

CS5530 Mobile/Wireless Systems Android UI

CS5530 Mobile/Wireless Systems Android UI Mbile/Wireless Systems Andrid UI Yanyan Zhuang Department f Cmputer Science http://www.cs.uccs.edu/~yzhuang UC. Clrad Springs cat annunce.txt_ Assignment 2 will be psted sn Due after midterm I will be

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

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

Welcome to Remote Access Services (RAS) Virtual Desktop vs Extended Network. General

Welcome to Remote Access Services (RAS) Virtual Desktop vs Extended Network. General Welcme t Remte Access Services (RAS) Our gal is t prvide yu with seamless access t the TD netwrk, including the TD intranet site, yur applicatins and files, and ther imprtant wrk resurces -- whether yu

More information

INSERTING MEDIA AND OBJECTS

INSERTING MEDIA AND OBJECTS INSERTING MEDIA AND OBJECTS This sectin describes hw t insert media and bjects using the RS Stre Website Editr. Basic Insert features gruped n the tlbar. LINKS The Link feature f the Editr is a pwerful

More information

Andrid Develpment Intrductin Sessin bjectives What s Andrid http://vvanhai.wrdpress.cm/ 3 What s Andrid Andrid architecture Andrid sftware develpment Hell Wrld n Andrid Mre Andrid Phnes 2 4 1 OHA and Andrid

More information

Table of Contents. WipeDrive Enterprise Logging, March Logging Settings... 3 Log Format Types Audit Log Destination Options...

Table of Contents. WipeDrive Enterprise Logging, March Logging Settings... 3 Log Format Types Audit Log Destination Options... WipeDrive Enterprise Lgging, March 2018 Table f Cntents Lgging Settings... 3 Lg Frmat Types... 4 Plain Text Lg File Optin... 4 Extensible Markup Language (XML) Lg File Optin... 6 Cmma Delimited (CSV) Lg

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

Uploading Files with Multiple Loans

Uploading Files with Multiple Loans Uplading Files with Multiple Lans Descriptin & Purpse Reprting Methds References Per the MHA Handbk, servicers are required t prvide peridic lan level data fr activity related t the Making Hme Affrdable

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

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

Please contact technical support if you have questions about the directory that your organization uses for user management.

Please contact technical support if you have questions about the directory that your organization uses for user management. Overview ACTIVE DATA CALENDAR LDAP/AD IMPLEMENTATION GUIDE Active Data Calendar allws fr the use f single authenticatin fr users lgging int the administrative area f the applicatin thrugh LDAP/AD. LDAP

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

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

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

Backup Operator Mode User Manual

Backup Operator Mode User Manual Backup Operatr Mde User Manual Fr Server Editin Fr Micrsft Windws Intrductin Frm V7.0.3, the Attix5 Pr Server Editin (SE) Backup Client supprts Backup Operatr (BO) mde. This mde enables the backup and

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

Summary. Server environment: Subversion 1.4.6

Summary. Server environment: Subversion 1.4.6 Surce Management Tl Server Envirnment Operatin Summary In the e- gvernment standard framewrk, Subversin, an pen surce, is used as the surce management tl fr develpment envirnment. Subversin (SVN, versin

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

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

HPE LoadRunner Best Practices Series. LoadRunner Upgrade Best Practices

HPE LoadRunner Best Practices Series. LoadRunner Upgrade Best Practices HPE LadRunner Best Practices Series LadRunner 12.50 Upgrade Best Practices Dcument publicatin date: Nvember 2015 Cntents 1. Intrductin... 3 Overview... 3 Audience... 3 2. Preparatin... 3 Backup assets...

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

Sonic PDF Server 3.0. User Guide

Sonic PDF Server 3.0. User Guide Snic PDF Server 3.0 User Guide Snic PDF Server 3.0 TABLE OF CONTENTS: 1 INTRODUCTION... 5 1.1 System Requirements... 5 2 BEFORE INSTALLING SONIC PDF SERVER... 6 2.1 Required Sftware Updates... 6 2.2 Additinal

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

Lab 4. Name: Checked: Objectives:

Lab 4. Name: Checked: Objectives: Lab 4 Name: Checked: Objectives: Learn hw t test cde snippets interactively. Learn abut the Java API Practice using Randm, Math, and String methds and assrted ther methds frm the Java API Part A. Use jgrasp

More information

VMware AirWatch Certificate Authentication for Cisco IPSec VPN

VMware AirWatch Certificate Authentication for Cisco IPSec VPN VMware AirWatch Certificate Authenticatin fr Cisc IPSec VPN Fr VMware AirWatch Have dcumentatin feedback? Submit a Dcumentatin Feedback supprt ticket using the Supprt Wizard n supprt.air-watch.cm. This

More information

LiveEngage and Microsoft Dynamics Integration Guide Document Version: 1.0 September 2017

LiveEngage and Microsoft Dynamics Integration Guide Document Version: 1.0 September 2017 LiveEngage and Micrsft Dynamics Integratin Guide Dcument Versin: 1.0 September 2017 Cntents Intrductin... 3 Step 1: Sign Up... 3 CRM Widget Signing Up... 3 Step 2: Cnfiguring the CRM Widget... 4 Accessing

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

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

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

Create Your Own Report Connector

Create Your Own Report Connector Create Yur Own Reprt Cnnectr Last Updated: 15-December-2009. The URS Installatin Guide dcuments hw t cmpile yur wn URS Reprt Cnnectr. This dcument prvides a guide t what yu need t create in yur cnnectr

More information

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

Network Rail ARMS - Asbestos Risk Management System. Training Guide for use of the Import Asset Template Netwrk Rail ARMS - Asbests Risk Management System Training Guide fr use f the Imprt Asset Template The ARMS Imprt Asset Template New assets can be added t the Asbests Risk Management System (ARMS) using

More information

Programming Project: Building a Web Server

Programming Project: Building a Web Server Prgramming Prject: Building a Web Server Submissin Instructin: Grup prject Submit yur cde thrugh Bb by Dec. 8, 2014 11:59 PM. Yu need t generate a simple index.html page displaying all yur grup members

More information

IBM SPSS Interviewer Setting up Data Entry Supervisor machines for Synchronization

IBM SPSS Interviewer Setting up Data Entry Supervisor machines for Synchronization IBM SPSS Interviewer 6.0.1 Setting up Data Entry Supervisr machines fr Synchrnizatin V e r s i n 1. 1 P a g e 1 Table f Cntents 1 Overview... 3 2 Create Data Entry Supervisr s ISA (aka DimensinNet) User

More information

Exosoft Backup Manager

Exosoft Backup Manager Exsft Backup Manager 2018 Exsft Backup Manager Ensuring databases are backed up regularly is a critical part f any cmpany data recvery prcess. Mst mnth end as well as end f financial year prcesses shuld

More information

Secure File Transfer Protocol (SFTP) Interface for Data Intake User Guide

Secure File Transfer Protocol (SFTP) Interface for Data Intake User Guide Secure File Transfer Prtcl (SFTP) Interface fr Data Intake User Guide Cntents Descriptin... 2 Steps fr firms new t batch submissin... 2 Acquiring necessary FINRA accunts... 2 SFTP Access t FINRA... 2 SFTP

More information

Project #1 - Fraction Calculator

Project #1 - Fraction Calculator AP Cmputer Science Liberty High Schl Prject #1 - Fractin Calculatr Students will implement a basic calculatr that handles fractins. 1. Required Behavir and Grading Scheme (100 pints ttal) Criteria Pints

More information

Telkom VPN-Lite router setup User Manual Billion 810VGTX

Telkom VPN-Lite router setup User Manual Billion 810VGTX Telkm VPN-Lite ruter setup User Manual Billin 810VGTX Cntents Intrductin... 3 Befre yu start... 4 VPN-Lite Setup Using Windws Utility... 5 VPN-Lite Setup using yur web brwser... 7 VPN-Lite Manual Setup

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

Banner Document Management Suite Using Application Xtender Web Access

Banner Document Management Suite Using Application Xtender Web Access Getting Access... Page 1 Setup... Page 1 Passwrds... Page 2 Navigating t webxtender... Page 3 webxtender Settings... Page 5 Using webxtender... Page 7 Please nte: The sftware Applicatin Xtender Web Access

More information

Introduction to Adobe Premiere Pro for Journalists:

Introduction to Adobe Premiere Pro for Journalists: Intrductin t Adbe Premiere Pr fr Jurnalists: News editing at the Schl f Jurnalism ***It is highly recmmended if yu plan n ding any multimedia prductin, yu purchase an external USB strage device.*** 1.

More information

Copyrights and Trademarks

Copyrights and Trademarks Cpyrights and Trademarks Sage One Accunting Cnversin Manual 1 Cpyrights and Trademarks Cpyrights and Trademarks Cpyrights and Trademarks Cpyright 2002-2014 by Us. We hereby acknwledge the cpyrights and

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

To start your custom application development, perform the steps below.

To start your custom application development, perform the steps below. Get Started T start yur custm applicatin develpment, perfrm the steps belw. 1. Sign up fr the kitewrks develper package. Clud Develper Package Develper Package 2. Sign in t kitewrks. Once yu have yur instance

More information

Extended Vendors lets you: Maintain vendors across multiple Sage 300 companies using the Copy Vendors functionality. o

Extended Vendors lets you: Maintain vendors across multiple Sage 300 companies using the Copy Vendors functionality. o Extended Vendrs Extended Vendrs is an enhanced replacement fr the Sage Vendrs frm. It prvides yu with mre infrmatin while entering a PO and fast access t additinal PO, Vendr, and Item infrmatin. Extended

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

WinEst 15.2 Installation Guide

WinEst 15.2 Installation Guide WinEst 15.2 Installatin Guide This installatin guide prvides yu with step-by-step instructins n hw t install r upgrade WinEst. Fr a successful installatin, ensure that all machines meet the requirements.

More information

Telkom VPN-Lite router setup User Manual Billion 800VGT

Telkom VPN-Lite router setup User Manual Billion 800VGT Telkm VPN-Lite ruter setup User Manual Billin 800VGT Cntents 1. Intrductin... 3 2. Befre yu start... 4 3. VPN-Lite Setup Using Windws Utility... 5 4. VPN-Lite Setup using yur web brwser... 7 5. VPN-Lite

More information

Refreshing Axiom TEST with a Current Copy of Production Axiom EPM June 20, 2014

Refreshing Axiom TEST with a Current Copy of Production Axiom EPM June 20, 2014 Refreshing Axim TEST with a Current Cpy f Prductin Axim EPM June 20, 2014 Refreshing Axim TEST If yu maintain an Axim TEST envirnment yu will want t refresh it with a current cpy f yur PROD database when

More information

Oracle Universal Records Management Oracle Universal Records Manager Adapter for Documentum Installation Guide

Oracle Universal Records Management Oracle Universal Records Manager Adapter for Documentum Installation Guide Oracle Universal Recrds Management Oracle Universal Recrds Manager Adapter fr Dcumentum Installatin Guide December 2009 Universal Recrds Manager Adapter fr Dcumentum Installatin Guide, Cpyright 2009, Oracle.

More information

Upgrade Guide. Medtech Evolution General Practice. Version 1.9 Build (March 2018)

Upgrade Guide. Medtech Evolution General Practice. Version 1.9 Build (March 2018) Upgrade Guide Medtech Evlutin General Practice Versin 1.9 Build 1.9.0.312 (March 2018) These instructins cntain imprtant infrmatin fr all Medtech Evlutin users and IT Supprt persnnel. We suggest that these

More information

Kaltura MediaSpace User Manual. Version: 3.0

Kaltura MediaSpace User Manual. Version: 3.0 Kaltura MediaSpace User Manual Versin: 3.0 Kaltura Business Headquarters 200 Park Avenue Suth, New Yrk, NY. 10003, USA Tel.: +1 800 871 5224 Cpyright 2012 Kaltura Inc. All Rights Reserved. Designated trademarks

More information

Skype Meetings

Skype Meetings http://www.jeffersnstate.edu/resurces-fr-instructrs-de/ Skype Meetings Skype-t-Skype is used fr cmmunicatin thrugh vice, vide, chat (Instant Messaging) and/r desktp sharing fr ne-n-ne cnferences, meetings,

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

OO Shell for Authoring (OOSHA) User Guide

OO Shell for Authoring (OOSHA) User Guide Operatins Orchestratin Sftware Versin: 10.70 Windws and Linux Operating Systems OO Shell fr Authring (OOSHA) User Guide Dcument Release Date: Nvember 2016 Sftware Release Date: Nvember 2016 Legal Ntices

More information

STIDistrict AL Rollover Procedures

STIDistrict AL Rollover Procedures 2009-2010 STIDistrict AL Rllver Prcedures General Infrmatin abut STIDistrict Rllver IMPORTANT NOTE! Rllver shuld be perfrmed between June 25 and July 25 2010. During this perid, the STIState applicatin

More information

TechSmith Relay 5.1.5

TechSmith Relay 5.1.5 TechSmith Relay 5.1.5 WHAT END USERS NEED TO KNOW This upgrade cmes with new features that will be available t yu. Fr all f these feature t be installed n yur cmputer few steps will need t be taken. After

More information

Aras Innovator 11. Client Settings for Internet Explorer on Windows

Aras Innovator 11. Client Settings for Internet Explorer on Windows Client Settings fr Internet Explrer n Windws Dcument #: 11.0.02015040601 Last Mdified: 1/10/2018 Client Setup fr Internet Explrer n Windws Cpyright Infrmatin Cpyright 2018 Aras Crpratin. All Rights Reserved.

More information

1 Getting and Extracting the Upgrader

1 Getting and Extracting the Upgrader Hughes BGAN-X 9211 Upgrader User Guide (Mac) Rev 1.2 (6-Jul-17) This dcument explains hw t use the Hughes BGAN Upgrader prgram fr the 9211 User Terminal using a Mac Nte: Mac OS X Versin 10.4 r newer is

More information

FollowMe. FollowMe. Q-Server Quick Integration Guide. Revision: 5.4 Date: 11 th June Page 1 of 26

FollowMe. FollowMe. Q-Server Quick Integration Guide. Revision: 5.4 Date: 11 th June Page 1 of 26 Q-Server Quick Integratin Guide Revisin: 5.4 Date: 11 th June 2009 Page 1 f 26 Cpyright, Disclaimer and Trademarks Cpyright Cpyright 1997-2009 Ringdale UK Ltd. All rights reserved. N part f this publicatin

More information

Entering an NSERC CCV: Step by Step

Entering an NSERC CCV: Step by Step Entering an NSERC CCV: Step by Step - 2018 G t CCV Lgin Page Nte that usernames and passwrds frm ther NSERC sites wn t wrk n the CCV site. If this is yur first CCV, yu ll need t register: Click n Lgin,

More information

Yes. If you are an iphone user, you can download a free application via the App Store in itunes. Download the BSP iphone app.

Yes. If you are an iphone user, you can download a free application via the App Store in itunes. Download the BSP iphone app. Frequently Asked Questins General 1. What is BSP Mbile Banking App? BSP Mbile Banking App, is a smartphne applicatin that allws yu t securely access yur bank accunt (s) anywhere, anytime at yur cnvenience

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