Version 5 Product Launch Program Examples

Size: px
Start display at page:

Download "Version 5 Product Launch Program Examples"

Transcription

1 The following sample programs correspond to the Product Launch presentation files located at The samples have been reformatted to eliminate word wrapping, and for easier cut-and-paste into a ProvideX session. A few of the programs require the data file smndata, which is included with the Object Oriented Programming presentation files. MEM1 0010! MEM1 - Enhanced Memory Management - Increased String Sizes 0020 set_param 'IZ' 0030 preinput "dim x$( )" 0040 preinput "print len(x$):""###,###,##0""" MC1 The System Parameter MC (Mixed Case) must be set to 1 for this example to work properly. 0010! MC1 - Mixed Case example 0020 clear 0030 gosub SetCustomerDefaults 0040 dump 0050 stop 0100! ^ SetCustomerDefaults: 0120 Customer_Code$="123456" 0130 Customer_Name$="Best Software Canada Ltd." 0140 return OCX1 0010! OCX1 - Call up Shell.Explorer OCX & "Navigate" to a directory with a Jpeg file 0020 print 'CS',@(0,20),; list 0030, 0030 def object explorer,@(0,0,mxc(0)+1,20)="shell.explorer" 0040 explorer'visible= x=explorer'navigate2("file://c:/pvx510/javx/javx.jpg") 0060 escape OCX2 Requires the Web Server to be running on the local machine. 0010! OCX2 - Call up Shell.Explorer OCX & "Navigate" to 0020! the Web Server running on the local machine 0030! 0040 print 'CS',@(0,20),; list 0050, 0050 def object explorer,@(0,0,mxc(0)+1,20)="shell.explorer" 0060 explorer'visible= x=explorer'navigate2(" ") 0080 escape LNO1 0010! LNO1 - Show LNO function 0100! ^ LABEL1: if tcb(4)=lno(0110) then print "this is statement LABEL1" 1

2 ADD1 0010! ADD1 - Add a new Named Key to an existing file 0020 add index ["Name":2:1:10] to table "cstfile" 0030 open (1,iol=*)"cstfile" 0040 read (1,kno="Name",key="",err=*proceed) 0050 count= read (1,end=*end) 0070 print pad(kec(1),10)," ",cust_no$," ",tbl(mod(++count,5)=0,"",'lf'), 0080 goto 0060 SDEV1 Requires AUDIT program listed on the following page. 0010! SDEV1 - Show SETDEV directive 0020 open (1,iol=*)"cstfile" 0030 read (1) 0040 setdev (1) program "Audit" 0050 read (1) 2

3 AUDIT Required for previous SDEV1 example. 0010! AUDIT - Embedded I/O Procedure 1000! ^ open: local oper$,access_mode,key$,index,v$; oper$="open"; gosub no_args; end 1020 post_open: local oper$,access_mode,key$,index,v$; oper$="post-open"; gosub no_args; end 1030! 1040 pre_read: local oper$,access_mode,key$,index,v$; oper$="pre-read"; gosub get_args; end 1050! 1060 post_read: local oper$,access_mode,key$,index,v$; oper$="post-read"; gosub get_args 1070 local a$,b$,c$,value$ 1080 read data from v$ to a$,b$,c$ 1110 end 1120! 1130 pre_write: local oper$,access_mode,key$,index,v$; oper$="pre-write"; gosub get_args; end 1140 post_write: local oper$,access_mode,key$,index,v$; oper$="post-write"; gosub get_args; end 1150 pre_remove: local oper$,access_mode,key$,index,v$; oper$="pre-remove"; gosub get_args; end 1160 post_remove: local oper$,access_mode,key$,index,v$; oper$="post-remove"; gosub get_args; end 1170 pre_close: local oper$,access_mode,key$,index,v$; oper$="pre-close"; gosub no_args; end 1180! 2000! ^ pre_kec: local oper$,access_mode,key$,index,v$; oper$="pre-kec"; gosub get_args; end 2020 pre_kef: local oper$,access_mode,key$,index,v$; oper$="pre-kef"; gosub get_args; end 2030 pre_kel: local oper$,access_mode,key$,index,v$; oper$="pre-kel"; gosub get_args; end 2040 pre_ken: local oper$,access_mode,key$,index,v$; oper$="pre-ken"; gosub get_args; end 2050 pre_key: local oper$,access_mode,key$,index,v$; oper$="pre-key"; gosub get_args; end 2060 pre_ind: local oper$,access_mode,key$,index,v$; oper$="pre-ind"; gosub get_args; end 2070 pre_rno: local oper$,access_mode,key$,index,v$; oper$="pre-rno"; gosub get_args; end 2080! 3000! ^ no_args: 3020 local value$ 3030 access_mode=-1,key$="",index=0,value$="no Arguments"; goto show_args 3100! ^ get_args: 3120 local value$ 3130 enter access_mode,key$,index,v$ 3140 value$=v$; if v$="" then value$="null Value" 3150! 3200! ^ show_args: 3220 if %noshow then goto local x$,title$,d$,x 3240 title$=oper$+": "+pth(lfa) 3250 d$=value$; translate d$,"~",sep 3260 x=access_mode x$=x$+"access_mode ="+str(access_mode)+" (" 3280 x$=x$+tbl(x,"not applicable","next","via KEY","Via IND","Via RNO") 3290 x$=x$+")"+sep 3300 x$=x$+"key$='"+key$+"'"+sep 3310 x$=x$+"index ="+str(index)+sep 3320 x$=x$+"value$='"+d$+"'"+sep 3330 translate x$," ",sep; print 'BR',pad(oper$+":",12),'ER',x$ 3340 x$="",title$="" 3350 return 3

4 POPUP1 0010! POPUP1 - Show Popup Menu returning a string value 0020 print 'CS',; list 0030, 0030 check_box 100,@(50,10,10,2)="{}&Popup Menu",opt="P",mnu= obtain * 0050 if ctl=4 then stop 0060 if ctl<>101 then goto popup_menu "[&File,&Edit,E&xit],F:[&Open,&Save],E:[C&ut,&Copy,&Paste]",X$ 0080 print "Selected: ",X$ 0090 goto 0040 POPUP2 0010! POPUP2 - Show Popup Menu returning an index into the Menu Bar definition 0020 print 'CS',; list 0030, 0030 check_box 100,@(50,10,10,2)="{}&Popup Menu",opt="P",mnu= obtain * 0050 if ctl=4 then stop 0060 if ctl<>101 then goto popup_menu "[&File,&Edit,E&xit],F:[&Open,&Save],E:[C&ut,&Copy,&Paste]",X 0080 print "Selected: ",X 0090 goto 0040 POPUP3 0010! POPUP3 - Show Popup Menu returning a numeric value assigned by the Menu Bar definition 0020 print 'CS',; list 0030, 0030 check_box 100,@(50,10,10,2)="{}&Popup Menu",opt="P",mnu= obtain * 0050 if ctl=4 then stop 0060 if ctl<>101 then goto mdef$="[&file,&edit,e&xit=4],f:[&open=10,&save=d20],e:[c&ut=30,&copy=40,&paste=50]" print "Selected: ",x 0100 if x=4 then stop 0110 goto 0040 DROP1 0010! DROP1 - Show Drag & Drop 0020 print 'CS',@(0,12),; list 0030, 0030 list_box 100,@(10,1,20,10); list_box load 100,"A/B/C/D/E/F/G/" 0040 list_box 200,@(35,1,20,10); list_box load 200,"a/b/c/d/e/f/g/" 0050 drop 100 on 200 return obtain * 0070 print "CTL =",ctl, 0080 if ctl=4 then stop 0090 if ctl=300 then X=200; print " Dropped on #",X'DROPPEDON, 0100 print ""; goto

5 DROPDEMO.GUI 0010! DROPDEMO.GUI - Using 2 treeviews 0020 DEFINE_TREES: 0030 print 'CS', 0040 clear 0050 list_box 10,@(5,4,30,20),opt="e qa",sep=sep 0060 list_box 20,@(40,4,30,20),opt="e qa",sep=sep 0100! ^ LOAD_TREE: 0120 select * from "SMNDATA" 0130 list_box load 10,0,sdt_smn_id$+sep+sdt_month$+sep+str(sdt_sales) 0140 next record 0200! ^ SET_DROP_SIGNAL: 0220 drop 10 on 20 return 30! set up drop ctl signal 0230 drop 20 on 10 return 40! set up drop ctl signal 0300! ^ GET_INPUT: 0320 obtain (0,siz=1)'ME',*,'MN', 0330 switch ctl 0340 case drag_ctl=10,drop_ctl= gosub READ_TREES; gosub DROP_IT; goto GET_INPUT 0370 break 0380 case drag_ctl=20,drop_ctl= gosub READ_TREES; gosub DROP_IT; goto GET_INPUT 0410 break 0420 case end 0440 break 0450 end switch 0460 goto GET_INPUT 1000! ^ Drop entries from tree1 to tree2 or tree2 to tree DROP_IT: 1020 drag_sel$=drag_sel$+sep 1030 if drop_on$<>"" then sep$=sep else sep$="" 1040 x1=drag_ctl'currentitem,x2=x x3=pos(sep=drag_sel$,-1); if x3<>0 then x1$=drag_sel$(1,x3-1) 1100! ^ NEXT_LEVEL: 1120 list_box find drag_ctl,x2,xx$,err=remove_level 1130 if mid(xx$,q+1,len(x1$))<>x1$ then goto REMOVE_LEVEL 1140 x2=x2+1; list_box load drop_ctl,0,stp(drop_on$+sep$,2)+xx$(q+1) 1150 goto NEXT_LEVEL 1200! ^ REMOVE_LEVEL: 1220 list_box load drag_ctl,x1,*,err=*next 1230 return 1300! ^ READ_TREES: 1320 drag_sel$="",drop_on$="",q= list_box read drag_ctl,drag_sel$,err=*next 1340 list_box read drop_ctl,drop_on$,err=*next 1350 if drop_on$<>"" then goto q=pos(sep=drag_sel$,-1); if q<>0 then drag_sel$=drag_sel$(q+1) 1370 return 5

6 CHART1 0010! CHART1 - display available Chart types 0020 print 'CS', 0030 dim x$[8] 0040 x$[1]="area",x$[2]="bar",x$[3]="column",x$[4]="line" 0050 x$[5]="pie",x$[6]="ribbon",x$[7]="scatter",x$[8]="stack" 0060 cols=int(mxc(0)/8)-1,lines=int(mxl(0)/2) set1$="1234,34344,22432,12343,34543,12345,35823,29874,22433,0,0,0/" 0080 set2$="32232,43421,23212,12343,23232,43212,22313,34232,37432,37432,0,0,0/" 0090 for z=2 to for y=1 to x=100+(z-2)*10+y,x$=obj(x,err=*next); chart remove x 0120 c=(y-1)*(cols+1),l=(z-2)*(lines+1) 0130 x$=str(z)+"d"+x$[y] 0140 chart x,@(c,l,cols,lines),fmt=x$,sep="," 0150 chart load x,set1$+set2$ 0160 x'title1$=x$ 0170 wait next 0190 next 0200 Enter ",* 6

7 CHARTDMO.GUI 0010! Chartdmo.gui - Demo all chart types and directives 0020! 0030 MAIN: 0040 begin 0050 print 'CS','C0', 0060 months$="jan,,mar,,may,,jul,,sep,,nov,," 0070 sv_data$="",chart_types$="" 0080 sv_data$+="1,2,3,4,5,6,7,8,9,10,11,12/" 0090 sv_data$+="13,14,15,16,17,18,19,20,21,22,23,24/" 0100 sv_data$+="25,26,27,28,29,30,31,32,33,34,35,36/" 0110 chart_types$+="2darea/2dbar/2dcolumn/2dline/2dpie/" 0120 chart_types$+="2dribbon/2dscatter/2dstack/2darea/" 0130 chart_types$+="3dbar/3dcolumn/3dline/3dpie/3dribbon" 0140 chart_types$+="/3dscatter/3dstack/" 0150 upd_set=1,upd_pt=0,end_it= gosub CREATE_CONTROLS 0170 gosub LOAD_CHARTS 0180 list_box write 200,"3DLINE",err=*next 0190 POLLING_LOOP: 0200 obtain (0,siz=1)'ME',c$,'MN' 0210 switch ctl 0220 case 10; gosub WRITE_VALUE; break 0230 case 11; gosub CHANGE_PROPERTY_VALUE; break 0240 case 12; gosub ADD_TITLES; break 0250 case 13; gosub HIDE_SHOW_CHARTS; break 0260 case 4,14; end_it=1; break 0270 case 200; gosub CHANGE_CHART_TYPE; break 0280 case 100; chart read 100,x; msgbox "DATASET IS "+str(x),"fyi"; break 0290 end switch 0300 if not(end_it) then goto POLLING_LOOP 0310 print 'CS', 0320 end 0400! ^100 - Create label, dropbox, chart and buttons 0410 CREATE_CONTROLS: 0420 CREATE_DROPBOX: 0430 print 'font'("ms Sans Serif",1),'DF','GF', 0440 print 'font'("times New Roman",2,"IB"), 0450 print 'SF','red','text'(@x(0),@y(0),"Chart Types"),'black', 0460 list_box 200,@(2,3,15,12),opt="A" 0470 list_box load 200,chart_types$ 0480 chart_ctl= chart_fmt$="3dline" 0500 CREATE_CHART: 0510 chart chart_ctl,@(20,1,56,min(22,mxl(0)-5)),fmt=chart_fmt$,sep="," 0520 hide_flg= CREATE_BUTTONS: 0540 xx=chart_ctl'col+chart_ctl'cols button 10,@(20,mxl(0)-3,7,3.2)="&Write Update" 0560 button 11,@(27,mxl(0)-3,7,3.2)="&Property Update" 0570 button 12,@(34,mxl(0)-3,7,3.2)="&Add Titles" 0580 button 13,@(41,mxl(0)-3,7,3.2)="&Hide / Show" 0590 button 14,@(xx,mxl(0)-3,7,3.2)="E&xit" 0600 return 0700! ^ Load data for the year 2000 from the Smndata file 0710 LOAD_CHARTS: 0720 chart_year$="2000" 0730 max_slsmn=10; dim smn_data[1:max_slsmn,1:12]! allow max of 10 salesmen 0740 chart_data$="",smn_id$="",total_datasets= sdat=hfn; open (sdat,iol=*)"smndata" 0760 k$=chart_year$; read (sdat,kno=1,key=k$,dom=*next)! position file 0770 NEXT_DATA: k$=key(sdat,kno=1,end=data_done) 0780 if k$(1,4)>chart_year$ then goto DATA_DONE 0790 read (sdat,key=k$) 0800 p=pos(pad(sdt_smn_id$,3)+"/"=smn_id$); if p>0 then p=(p+3)/4; goto p=len(smn_id$)/4+1,smn_id$+=pad(sdt_smn_id$,3)+"/",total_datasets+= smn_data(p,num(sdt_month$))=sdt_sales

8 0830 goto NEXT_DATA 0840 DATA_DONE: 0850 close (sdat) 0860 gosub CREATE_DATA_STRING 0870 chart load chart_ctl,chart_data$ 0880 GET_MAXIMUMS: 0890 max_points=chart_ctl'numpoints,max_sets=chart_ctl'numsets 0900 return 1000! ^100 - Create the data string to load the chart 1010 CREATE_DATA_STRING: 1020 for data_set=1 to total_datasets 1030 for month=1 to chart_data$+=str(smn_data[data_set,month]) 1050! column sep is ',' delimiter is '/' 1060 if month<12 then chart_data$+="," else chart_data$+="/" 1070 next month 1080 next data_set 1090 return 1100! ^100 - Find point value and increase it by 2x using CHART FIND/WRITE 1110 WRITE_VALUE: 1120 gosub NEXT_POINT 1130 chart find chart_ctl,upd_set,upd_pt,x 1140 x=x* chart write chart_ctl,upd_set,upd_pt,x 1160 return 1200! ^100 - Increase the value of point by 2x using properties 1210 CHANGE_PROPERTY_VALUE: 1220 gosub NEXT_POINT 1230 chart_ctl'currentset=upd_set 1240 chart_ctl'currentpoint=upd_pt 1250 x=chart_ctl'value* chart_ctl'value=x 1270 return 1300! ^100 - Get the next data point 1310 NEXT_POINT: 1320 upd_pt if upd_pt<=max_points then goto upd_pt=1; upd_set++; if upd_set>max_sets then upd_set= return 1400! ^100 - Add titles using properties 1410 ADD_TITLES: 1420 chart_ctl'title1$="sales Data" 1430 chart_ctl'title2$="year 2000" 1440 chart_ctl'footer$="primary Footer" 1450 chart_ctl'xaxistitle$="x-axis Title" 1460 chart_ctl'zaxistitle$="z-axis Title" 1470 _c=chart_ctl! Use '_C' to prevent word wrap on example 1480 _c'currentset=1,_c'currentpoint=0,_c'legendtext$="wendy Giltenan" 1490 _c'currentset=2,_c'currentpoint=0,_c'legendtext$="jack Wrycraft" 1500 _c'currentset=3,_c'currentpoint=0,_c'legendtext$="mike King" 1510 _c'pointtext$=months$ 1520 return 1600! ^100 - Hide/show charts 1610 HIDE_SHOW_CHARTS: 1620 hide_flg=(hide_flg+1) if hide_flg then chart hide chart_ctl else chart show chart_ctl 1640 return 1700! ^100 - Change chart type 1710 CHANGE_CHART_TYPE: 1720 list_box read 200,x$ 1730 chart_ctl'fmt$=x$ 1740 return 8

9 PUSH1 0010! PUSH1 - Show "Sticky" check box 0020 print '3D','B?','DF','CS',; list 0030, 0030 check_box 100,@(10,10,20,2)="&Sticky Button",opt="P" 0040 escape CHM1 0010! CHM1 - Using CHM Help files 0020 system_help "notepad.chm" 0030 system_help "notepad.chm","?word wrap" incidental consequential damages in connection with the use of this material. 9

ProvideX. Embedded IO Procedures

ProvideX. Embedded IO Procedures ProvideX Embedded IO Procedures Introduction 1 Implementation 1 Pre-Defined Entry Points 2 Execution Environment 3 Changing Return Values 4 Possible Applications 5 Sample Code 5 ProvideX is a trademark

More information

1.1 - Added support for FORMATTED MULTI_LINEs; e.g., MULTI_LINE

1.1 - Added support for FORMATTED MULTI_LINEs; e.g., MULTI_LINE JavX SE Version 3.0 - README File - September 2009 Release Notes Sage ProvideX 8920 Woodbine Avenue Suite 400 Markham, Ontario L3R 9W9 Tel. 905-470-1025 www.pvx.com *** NOTES *** The JavX SE thin-client

More information

Using JavX Running Applications in a Web Browser or WinCE Device. Presented by: Jarett Smith Eric Vanpaeschen

Using JavX Running Applications in a Web Browser or WinCE Device. Presented by: Jarett Smith Eric Vanpaeschen Using JavX Running Applications in a Web Browser or WinCE Device Presented by: Jarett Smith Eric Vanpaeschen Presentation Outline Rich Internet Applications (RIA) Examples of Java Applets ProvideX JavX

More information

ProvideX V6 Features & Enhancements

ProvideX V6 Features & Enhancements ProvideX V6 Features & Enhancements Presented by: Mike King What s new this release? Overview Core Language Visual Enhancements Improved Graphical Controls File System Database Interfaces Thin Client Services

More information

Event Handling in ProvideX

Event Handling in ProvideX Event Handling in ProvideX Presented by: Brett Condy Overview OOP and COM Objects Properties and Methods How does the COM Interface work? COM Events Additional TCB Values ProvideX Type Library Browser

More information

ProvideX. NOMADS Smart Lists. Introduction. Defining Smart Lists. Formatting Smart Lists. Using Smart Lists Outside of NOMADS. Creating a Smart File

ProvideX. NOMADS Smart Lists. Introduction. Defining Smart Lists. Formatting Smart Lists. Using Smart Lists Outside of NOMADS. Creating a Smart File ProvideX Version 5.10 NOMADS Smart Lists Introduction Defining Smart Lists Formatting Smart Lists Using Smart Lists Outside of NOMADS Creating a Smart File ProvideX is a trademark of Best Software Canada

More information

Microsoft Office Excel 2010: Basic. Course Overview. Course Length: 1 Day. Course Overview

Microsoft Office Excel 2010: Basic. Course Overview. Course Length: 1 Day. Course Overview Microsoft Office Excel 2010: Basic Course Length: 1 Day Course Overview This course teaches the basic functions and features of Excel 2010. After an introduction to spreadsheet terminology and Excel's

More information

Microsoft Office Excel 2007: Basic. Course Overview. Course Length: 1 Day. Course Overview

Microsoft Office Excel 2007: Basic. Course Overview. Course Length: 1 Day. Course Overview Microsoft Office Excel 2007: Basic Course Length: 1 Day Course Overview This course teaches the basic functions and features of Excel 2007. After an introduction to spreadsheet terminology and Excel's

More information

Use an OPT="i" on the Dialogue / Window definition to create a window that does not have an Icon in its upper left corner.

Use an OPT=i on the Dialogue / Window definition to create a window that does not have an Icon in its upper left corner. JavX Version 2.5 - README File - May 2006 Release Notes for JavX SE/AE/LE Sage Software Canada Ltd 8920 Woodbine Avenue Suite 400 Markham, Ontario L3R 9W9 Tel. 905-470-1025 www.pvx.com *** NOTES *** As

More information

PERFORMANCE This version of JavX focuses on improving the performance of list text controls.

PERFORMANCE This version of JavX focuses on improving the performance of list text controls. -------------------------------------------------------------------------------- JavX Version 2.0 - README File - May 2004 Best Software Canada Ltd. --------------------------------------------------------------------------------

More information

Section 2 - New Functionality:

Section 2 - New Functionality: JavX Version 2.2 - README File - March 2005 Best Software Canada Ltd 8920 Woodbine Avenue Suite 400 Markham, Ontario L3R 9W9 Tel. 905-470-1025 www.pvx.com -------------------------------------------------------------------------------

More information

There are two ways to launch Graphical User Interface (GUI). You can either

There are two ways to launch Graphical User Interface (GUI). You can either How to get started? There are two ways to launch Graphical User Interface (GUI). You can either 1. Click on the Guide icon 2. Type guide at the prompt Just follow the instruction below: To start GUI we

More information

Microsoft Excel 2016 Level 1

Microsoft Excel 2016 Level 1 Microsoft Excel 2016 Level 1 One Day Course Course Description You have basic computer skills such as using a mouse, navigating through windows, and surfing the Internet. You have also used paper-based

More information

ProvideX. NOMADS Enhancements

ProvideX. NOMADS Enhancements ProvideX VERSION 8.0 NOMADS Enhancements Introduction 3 Panel Designer Enhancements 5 Properties Window 7 New Format Definition for Grids/List Boxes 12 Bulk Edit Utility 14 Drag and Drop Utility 16 Dependency

More information

Microsoft Excel 2010 Level 1

Microsoft Excel 2010 Level 1 Microsoft Excel 2010 Level 1 One Day Course Course Description You have basic computer skills such as using a mouse, navigating through windows, and surfing the Internet. You have also used paper-based

More information

Contents. Introduction 15. How to use this course 18. Session One: Basic Skills 21. Session Two: Doing Useful Work with Excel 65

Contents. Introduction 15. How to use this course 18. Session One: Basic Skills 21. Session Two: Doing Useful Work with Excel 65 Contents Introduction 15 Downloading the sample files... 15 Problem resolution... 15 The Excel version and locale that were used to write this book... 15 Typographical Conventions Used in This Book...

More information

Object Oriented Programming

Object Oriented Programming Object Oriented Programming (OOP) is a different approach to application development. In OOP, an Object is an entity that consists of properties and functions. Properties are the data portion of an Object,

More information

SAMPLE. Excel 2010 Advanced. Excel 2010 Advanced. Excel 2010 Advanced Page 1

SAMPLE. Excel 2010 Advanced. Excel 2010 Advanced. Excel 2010 Advanced Page 1 Excel 2010 Advanced Excel 2010 Advanced Page 1 Excel 2010 Advanced 2010 Cheltenham Courseware Pty. Ltd. www.cheltenhamcourseware.com.au Excel 2010 Advanced Page 2 2010 Cheltenham Courseware Pty. Ltd. All

More information

Contents. Introduction 13. Putting The Smart Method to Work 16. Session One: Basic Skills 23

Contents. Introduction 13. Putting The Smart Method to Work 16. Session One: Basic Skills 23 Contents Introduction 13 Feedback... 13 Downloading the sample files... 13 Problem resolution... 13 Typographical Conventions Used In This Book... 14 Putting The Smart Method to Work 16 Excel version and

More information

Flexcel Reports Designers Guide

Flexcel Reports Designers Guide Flexcel Reports Designers Guide Documentation: May, 2010 Copyright 2010 by tmssoftware.com bvba Web: http://www.tmssoftware.com Email : info@tmssoftware.com 1 P a g e Table of contents Introduction...

More information

MCS 2 USB Software for OSX

MCS 2 USB Software for OSX for OSX JLCooper makes no warranties, express or implied, regarding this software s fitness for a particular purpose, and in no event shall JLCooper Electronics be liable for incidental or consequential

More information

Layout and display. STILOG IST, all rights reserved

Layout and display. STILOG IST, all rights reserved 2 Table of Contents I. Main Window... 1 1. DEFINITION... 1 2. LIST OF WINDOW ELEMENTS... 1 Quick Access Bar... 1 Menu Bar... 1 Windows... 2 Status bar... 2 Pop-up menu... 4 II. Menu Bar... 5 1. DEFINITION...

More information

Getting Started. Ohm Portal. v2_ec01b38. Buddy Platform, Limited Ltd.

Getting Started. Ohm Portal. v2_ec01b38. Buddy Platform, Limited Ltd. Getting Started Ohm Portal v2_ec01b38 Buddy Platform, Limited Ltd. GU/US/18/09 Ohm Portal Get Started Guide Workspace Basics Workspace Basics Navigation Hierarchy An Organization is the top level in the

More information

How to Create Happy End-Users

How to Create Happy End-Users How to Create Happy End-Users Presented by: Jane Raymond Presentation Outline Widgets SpellCheck AutoComplete Query Enhancements Listbox & Grid Enhancements And More For the Developer Widgets Create different

More information

SAS (Statistical Analysis Software/System)

SAS (Statistical Analysis Software/System) SAS (Statistical Analysis Software/System) Clinical SAS:- Class Room: Training Fee & Duration : 23K & 3 Months Online: Training Fee & Duration : 25K & 3 Months Learning SAS: Getting Started with SAS Basic

More information

Microsoft Dynamics GP. Extender User s Guide Release 9.0

Microsoft Dynamics GP. Extender User s Guide Release 9.0 Microsoft Dynamics GP Extender User s Guide Release 9.0 Copyright Copyright 2005 Microsoft Corporation. All rights reserved. Complying with all applicable copyright laws is the responsibility of the user.

More information

COMPUTERIZED OFFICE SUPPORT PROGRAM

COMPUTERIZED OFFICE SUPPORT PROGRAM NH108 Excel Level 1 16 Total Hours COURSE TITLE: Excel Level 1 COURSE OVERVIEW: This course provides students with the knowledge and skills to create spreadsheets and workbooks that can be used to store,

More information

Corporate essentials

Corporate essentials Microsoft Office Excel 2016, Corporate essentials A comprehensive package for corporates and government organisations Knowledge Capital London transforming perfomance through learning MS OFFICE EXCEL 2016

More information

WORD (2010) TIPS & TRICKS. Gail Weiss

WORD (2010) TIPS & TRICKS. Gail Weiss WORD (2010) TIPS & TRICKS Gail Weiss Word (2010) Tips & Tricks Overview: Here are some tips and tricks to use in WORD to make you more productive. TABLE OF CONTENTS CUSTOMIZING THE QUICK ACCESS TOOLBAR...

More information

you choose and by the roles the users are allowed to fulfill within the system. Finances Enter the monthly savings and costs for the project.

you choose and by the roles the users are allowed to fulfill within the system. Finances Enter the monthly savings and costs for the project. Oracle Instantis EnterpriseTrack Quick Reference Guide for Release 8.5 Create a Proposal From the Top Navigation Bar, click Create Proposals/Charters. Enter all the required fields and click Save to save

More information

San Jacinto College. Secure SSL VPN Instruction Manual. Contents

San Jacinto College. Secure SSL VPN Instruction Manual. Contents 1 San Jacinto College Secure SSL VPN Instruction Manual The new Secure SSL VPN provides a more secure and convenient method of accessing San Jacinto College resources remotely. This document provides an

More information

ProvideX. Conversion Handbook

ProvideX. Conversion Handbook ProvideX Conversion Handbook Introduction 3 BBx Conversion 4 Open BASIC Conversion 18 Thoroughbred Conversion 20 MicroShare Conversion 22 Syntax Unique to ProvideX 24 ProvideX is a trademark of Sage Software

More information

Excel on Steroids Tips Booklet

Excel on Steroids Tips Booklet Excel on Steroids Tips Booklet EXCLUSIVE TO PASTEL BUSINESS INTELLEGENCE CUSTOMERS CONTENTS Toolbars pg 2 Navigating pg 2 PivotTable pg 3 Functions pg 4 Charts pg 8 Filtering pg 8 Formatting pg 9 Conditional

More information

ProvideX - Beta Release Version April 1998

ProvideX - Beta Release Version April 1998 Formatted list boxes: ProvideX - Beta Release Version 4.02 - April 1998 List_boxes can now contain format information which is used to describe columnar data and their respective formatting rules. In addition,

More information

Ms excel. The Microsoft Office Button. The Quick Access Toolbar

Ms excel. The Microsoft Office Button. The Quick Access Toolbar Ms excel MS Excel is electronic spreadsheet software. In This software we can do any type of Calculation & inserting any table, data and making chart and graphs etc. the File of excel is called workbook.

More information

Features List. Updated on 27-September-2018 (Hiddime-1.8.3)

Features List. Updated on 27-September-2018 (Hiddime-1.8.3) Features List Updated on 27-September-2018 (Hiddime-1.8.3) 1. Introduce D3 Scatter chart instead of R-Graph Scatter chart in sessions and dashboards. - - 2 2. Zooming option for line Chart in Sessions(Cube

More information

ECDL Full Course Content

ECDL Full Course Content ECDL Full Course Content Module 1 1. Getting Started 1.1. Computer Terms 1.2. Computer Hardware 1.3. Computer Accessories 1.4. Memory and Storage 1.5. Computer Software 2. Using Information Technology

More information

ProvideX NOMADS Reference ProvideX Ver. 4.20

ProvideX NOMADS Reference ProvideX Ver. 4.20 Welcome to the ProvideX NOMADS Reference ProvideX Ver. 4.20 Introduction: NOMADS is Sage Canada s acronym for the ProvideX Non-Procedural Object Module Application Development System which is bundled with

More information

CenterStone. Reports User Guide. Manhattan Software Inc. World Leading Real Estate, Asset & Facilities Management Software.

CenterStone. Reports User Guide. Manhattan Software Inc. World Leading Real Estate, Asset & Facilities Management Software. CenterStone Reports User Guide Version 1 Manhattan Software Inc. World Leading Real Estate, Asset & Facilities Management Software The information contained herein is the property of Manhattan Software,

More information

Getting Started. Custom Reports Software

Getting Started. Custom Reports Software Getting Started Custom Reports Software Custom Reports software Custom reporting The Custom Reports software lets you transfer quantitative results from Data Analysis into the Custom Reports spreadsheet

More information

Jennifer Clegg and Carol Rigsbee, SAS Institute Inc., Cary, NC

Jennifer Clegg and Carol Rigsbee, SAS Institute Inc., Cary, NC OLE and the SAS System for Windows Release 6.12 Jennifer Clegg and Carol Rigsbee, SAS Institute Inc., Cary, NC ABSTRACT This paper describes the OLE support within the SAS System for Windows Release 6.12.

More information

Excel 2010 Advanced. Excel 2010 Advanced SAMPLE

Excel 2010 Advanced. Excel 2010 Advanced SAMPLE Excel 2010 Advanced Excel 2010 Advanced Excel 2010 Advanced Page 2 2010 Cheltenham Courseware Pty. Ltd. All trademarks acknowledged. E&OE. No part of this document may be copied without written permission

More information

How to Install, Configure and Use sftp (Windows Version)

How to Install, Configure and Use sftp (Windows Version) How to Install, Configure and Use sftp (Windows Version) The sftp secure File Transfer Protocol allows you to transfer patient datasets to and from IDT s server securely. All data transfers are encrypted

More information

Keysight TAP Training Lab 2 TAP Results Viewer

Keysight TAP Training Lab 2 TAP Results Viewer Keysight TAP Training Lab 2 TAP Results Viewer Notices DFARS/Restricted Rights Notice If software is for use in the performance of a U.S. Government prime contract or subcontract, Software is delivered

More information

Microsoft Office Excel 2013 Courses 24 Hours

Microsoft Office Excel 2013 Courses 24 Hours Microsoft Office Excel 2013 Courses 24 Hours COURSE OUTLINES FOUNDATION LEVEL COURSE OUTLINE Getting Started With Excel 2013 Starting Excel 2013 Selecting the Blank Worksheet Template The Excel 2013 Cell

More information

Monitor load balancer performance in a dashboard

Monitor load balancer performance in a dashboard Monitor load balancer performance in a dashboard Published: 2017-11-22 During times of high demand on an application or service, you can configure a load balancer to help with service reliability and hardware

More information

Laboratory 1. Part 1: Introduction to Spreadsheets

Laboratory 1. Part 1: Introduction to Spreadsheets Laboratory 1 Part 1: Introduction to Spreadsheets By the end of this laboratory session you should be familiar with: Navigating around a worksheet. Naming sheets and cells. Formatting. The use of formulae.

More information

Changing Worksheet Views

Changing Worksheet Views PROCEDURES LESSON 1: TOURING EXCEL Starting Excel 1 Click the Start button 2 Click All Programs 3 Click the Microsoft Office folder icon 4 Click Microsoft Excel 2010 Naming and Saving (Ctrl+S) a Workbook

More information

Numbers Basics Website:

Numbers Basics Website: Website: http://etc.usf.edu/te/ Numbers is Apple's new spreadsheet application. It is installed as part of the iwork suite, which also includes the word processing program Pages and the presentation program

More information

DMS Integration Guide

DMS Integration Guide DMS Integration Guide Contents Introduction 2 Install the Infomedia DMSi 3 Set up a new DMS connection 3 Add a preconfigured DMS connection 3 Add a custom DMS connection 4 Configure the DMSi for multiple

More information

v5.1 NOMADS Enhancements

v5.1 NOMADS Enhancements Partners in Success v5.1 NOMADS Enhancements Presented by: Yvonne Sampson Copyright 2002 Best Software Canada Ltd. All rights reserved. No part of this publication may be reproduced, or transmitted in

More information

Microsoft Excel is a spreadsheet tool capable of performing calculations, analyzing data and integrating information from different programs.

Microsoft Excel is a spreadsheet tool capable of performing calculations, analyzing data and integrating information from different programs. About the Tutorial Microsoft Excel is a commercial spreadsheet application, written and distributed by Microsoft for Microsoft Windows and Mac OS X. At the time of writing this tutorial the Microsoft excel

More information

Computer Applications Final Exam Study Guide

Computer Applications Final Exam Study Guide Name: Computer Applications Final Exam Study Guide Microsoft Word 1. To use -and-, position the pointer on top of the selected text, and then drag the selected text to the new location. 2. The Clipboard

More information

Introducing Gupta Report Builder

Introducing Gupta Report Builder Business Reporting Chapter 1 Introducing Gupta Report Builder You can use Report Builder to design reports. This chapter describes: Our approach to building reports. Some of the reports you can build.

More information

STZUE STEEZWARE ULTRAEDIT TOOLKIT

STZUE STEEZWARE ULTRAEDIT TOOLKIT STZUE STEEZWARE ULTRAEDIT TOOLKIT 14 June 2013 by Scott McDonell CONTENTS Overview...2 Tools...2 Requirements...2 Chapter 1 / Installation...3 PxPlus Interpreter...3 UltraEdit...3 Install stzue...3 stzuepvx

More information

Excel 2013 Advanced. Excel 2013 Advanced SAMPLE

Excel 2013 Advanced. Excel 2013 Advanced SAMPLE Excel 2013 Advanced Excel 2013 Advanced Excel 2013 Advanced Page 2 2013 Cheltenham Group Pty. Ltd. All trademarks acknowledged. E&OE. No part of this document may be copied without written permission from

More information

Excel 2016 Advanced. North American Edition SAMPLE

Excel 2016 Advanced. North American Edition SAMPLE Excel 2016 Advanced Excel 2016 Advanced North American Edition Excel 2016 Advanced Page 2 2015 Cheltenham Group Pty. Ltd. All trademarks acknowledged. E&OE. No part of this document may be copied without

More information

Copyright & License Notes 3 Introduction 13 Chapter 1 - Excel Basics 14. Chapter 2 - Working with Data 32

Copyright & License Notes 3 Introduction 13 Chapter 1 - Excel Basics 14. Chapter 2 - Working with Data 32 TABLE OF CONTENTS Copyright & License Notes 3 Introduction 13 Chapter 1 - Excel Basics 14 Creating an Excel Workbook 14 Examining the Excel Environment 15 Opening an Existing Workbook 19 Navigating a Worksheet

More information

Excel 2016 Advanced SAMPLE

Excel 2016 Advanced SAMPLE Excel 2016 Advanced Excel 2016 Advanced Excel 2016 Advanced Page 2 2015 Cheltenham Group Pty. Ltd. All trademarks acknowledged. E&OE. No part of this document may be copied without written permission from

More information

Excel 2013 Advanced. Excel 2013 Advanced SAMPLE

Excel 2013 Advanced. Excel 2013 Advanced SAMPLE Excel 2013 Advanced Excel 2013 Advanced Excel 2013 Advanced Page 2 2013 Cheltenham Group Pty. Ltd. All trademarks acknowledged. E&OE. No part of this document may be copied without written permission from

More information

OXE Free desktop Guide

OXE Free desktop Guide OXE Free desktop Guide The below telephone screen examples are for a 4038/4068 handset, the Free Desktop IP- Touch Interface works in the same manner with a 4028 extension. The only difference is that

More information

NOMADS Enhancements v7.50 & v8.00. Presented by: Yvonne Sampson

NOMADS Enhancements v7.50 & v8.00. Presented by: Yvonne Sampson NOMADS Enhancements v7.50 & v8.00 Presented by: Yvonne Sampson Presentation Outline V7.50 & v8.00 Enhancements Preserve Folder Controls File Maintenance Objects Embedded Panels Enhancements Library Default

More information

Reporter Tutorial: The Basics

Reporter Tutorial: The Basics Reporter Tutorial: The Basics Refer to the following sections for guidance on using the Reporter: Lesson 1: Overview and Finding Reports Lesson 2: Create Tutorial Training Report and Report Group Lesson

More information

SAS (Statistical Analysis Software/System)

SAS (Statistical Analysis Software/System) SAS (Statistical Analysis Software/System) SAS Analytics:- Class Room: Training Fee & Duration : 23K & 3 Months Online: Training Fee & Duration : 25K & 3 Months Learning SAS: Getting Started with SAS Basic

More information

What s New in IQ4.1 rev6

What s New in IQ4.1 rev6 General User Can Set Own Start Page You now have the ability to set your own start page in IQ. It can be the IQ Home Page or a List View. Navigate to the page you like, then open the Name link in the upper

More information

Excel Boot Camp PIONEER TRAINING, INC.

Excel Boot Camp PIONEER TRAINING, INC. Excel Boot Camp Dates and Times: Cost: $250 1/22, 2-4 PM 1/29, 2-4 PM 2/5, 2-4 PM 2/12, 2-4 PM Please register online or call our office. (413) 387-1040 This consists of four-part class is aimed at students

More information

About Boxoft All to AMR Converter

About Boxoft All to AMR Converter Note: This product is distributed on a try-before-you-buy basis. All features described in this documentation are enabled. The registered version does not have time limit About Boxoft All to AMR Converter

More information

C-LANGUAGE CURRICULAM

C-LANGUAGE CURRICULAM C-LANGUAGE CURRICULAM Duration: 2 Months. 1. Introducing C 1.1 History of C Origin Standardization C-Based Languages 1.2 Strengths and Weaknesses Of C Strengths Weaknesses Effective Use of C 2. C Fundamentals

More information

Excel 2016 Basics for Mac

Excel 2016 Basics for Mac Excel 2016 Basics for Mac Excel 2016 Basics for Mac Training Objective To learn the tools and features to get started using Excel 2016 more efficiently and effectively. What you can expect to learn from

More information

Index. borders adding to cells, 184 draw border line tool, using to add, 185

Index. borders adding to cells, 184 draw border line tool, using to add, 185 Index A A4 size paper, 305 absolute references, 140 accounting number format style, 168 alignment horizontal, of cell contents, 172 vertical, of cell contents, 176 android. See operating system apple OS

More information

FXCC MetaTrader 4 User Guide

FXCC MetaTrader 4 User Guide FXCC MetaTrader 4 User Guide 1. Installing MetaTrader 4 Once you have downloaded the MT4 executable program and saved this to your desktop, installation is fast and simple. 1. Double-click the MetaTrader

More information

BASIC EXCEL SYLLABUS Section 1: Getting Started Section 2: Working with Worksheet Section 3: Administration Section 4: Data Handling & Manipulation

BASIC EXCEL SYLLABUS Section 1: Getting Started Section 2: Working with Worksheet Section 3: Administration Section 4: Data Handling & Manipulation BASIC EXCEL SYLLABUS Section 1: Getting Started Unit 1.1 - Excel Introduction Unit 1.2 - The Excel Interface Unit 1.3 - Basic Navigation and Entering Data Unit 1.4 - Shortcut Keys Section 2: Working with

More information

Lesson 1 using Dreamweaver CS3. To get started on your web page select the link below and copy (Save Picture As) the images to your image folder.

Lesson 1 using Dreamweaver CS3. To get started on your web page select the link below and copy (Save Picture As) the images to your image folder. Lesson 1 using Dreamweaver CS3 To get started on your web page select the link below and copy (Save Picture As) the images to your image folder. Click here to get images for your web page project. (Note:

More information

MCS3 USB Software for OSX

MCS3 USB Software for OSX MCS3 USB Software for OSX JLCooper makes no warranties, express or implied, regarding this software s fitness for a particular purpose, and in no event shall JLCooper Electronics be liable for incidental

More information

DO NOT update the utilities and toolkits of a version 4 system with the utilities and toolkits of a Version 5 release.

DO NOT update the utilities and toolkits of a version 4 system with the utilities and toolkits of a Version 5 release. ProvideX Version 5.11 - README File - Jun 2003 Release Notes for Version 5.11 (CVSChngs^20030619) Maintenance Release Best Software Canada Ltd 8920 Woodbine Avenue Suite 204 Markham, Ontario L3R 9W9 Tel.

More information

Contents Part I: Background Information About This Handbook... 2 Excel Terminology Part II: Advanced Excel Tasks...

Contents Part I: Background Information About This Handbook... 2 Excel Terminology Part II: Advanced Excel Tasks... Version 3 Updated November 29, 2007 Contents Contents... 3 Part I: Background Information... 1 About This Handbook... 2 Excel Terminology... 3 Part II:... 4 Advanced Excel Tasks... 4 Export Data from

More information

Lesson 19 Organizing and Enhancing Worksheets

Lesson 19 Organizing and Enhancing Worksheets Organizing and Enhancing Worksheets Computer Literacy BASICS: A Comprehensive Guide to IC 3, 5 th Edition 1 Objectives Hide, show, and freeze columns and rows. Create, rename, and delete worksheets. Change

More information

PowerPoint 2016 Advanced SAMPLE

PowerPoint 2016 Advanced SAMPLE PowerPoint 2016 Advanced PowerPoint 2016 Advanced PowerPoint 2016 Advanced Page 2 2015 Cheltenham Group Pty. Ltd. All trademarks acknowledged. E&OE. No part of this document may be copied without written

More information

Mobile MOUSe EXCEL 2013 ONLINE COURSE OUTLINE

Mobile MOUSe EXCEL 2013 ONLINE COURSE OUTLINE Mobile MOUSe EXCEL 2013 ONLINE COURSE OUTLINE COURSE TITLE Excel 2013 Course DURATION 14 Hours of Interactive Training COURSE OVERVIEW If you are looking to start a career in business or finance, having

More information

Notices. DFARS/Restricted Rights Notice. Warranty. Technology Licenses. Document History

Notices. DFARS/Restricted Rights Notice. Warranty. Technology Licenses. Document History Notices DFARS/Restricted Rights Notice If software is for use in the performance of a U.S. Government prime contract or subcontract, Software is delivered and licensed as Commercial computer software as

More information

Excel 2010 Level 1: The Excel Environment

Excel 2010 Level 1: The Excel Environment Excel 2010 Level 1: The Excel Environment Table of Contents The Excel 2010 Environment... 1 The Excel Window... 1 File Tab... 1 The Quick Access Toolbar... 4 Access the Customize the Quick Access Toolbar

More information

Tutorial 1: Getting Started with Excel

Tutorial 1: Getting Started with Excel Tutorial 1: Getting Started with Excel Microsoft Excel 2010 Objectives Understand the use of spreadsheets and Excel Learn the parts of the Excel window Scroll through a worksheet and navigate between worksheets

More information

OEE Studio Release Note

OEE Studio Release Note OEE Studio Release Note Version 4.0 Deb-Tech Systems, Inc. & Production Improvement Systems Ltd. Debbie.Olk@DebTechSystems.com Russell@ProductionImprovement.com 1-800.975.3181 ext. 2 What s New in 4.0

More information

ProvideX Report Writer

ProvideX Report Writer ProvideX Report Writer Presented by: Jane Raymond Presentation Overview ProvideX Report Writer System Requirements Designing a Report Generating a Report Object-Oriented Interace ProvideX Report Writer

More information

New Perspectives on Microsoft Excel Module 1: Getting Started with Excel

New Perspectives on Microsoft Excel Module 1: Getting Started with Excel New Perspectives on Microsoft Excel 2016 Module 1: Getting Started with Excel 1 Objectives, Part 1 Open and close a workbook Navigate through a workbook and worksheet Select cells and ranges Plan and create

More information

Logging Into Your Site

Logging Into Your Site This training document is meant as a step-by-step guide to creating and delivering a UW-Madison site in the current UW-Madison theme. In this training class, you will learn how to log in to access your

More information

MockupScreens - User Guide

MockupScreens - User Guide MockupScreens - User Guide Contents 1. Overview...4 2. Getting Started...5 Installing the software... 5 Registering... 9 3. Understanding the Interface...11 Menu Bar... 11 Tool bar... 14 Elements... 14

More information

Client Server Technologies

Client Server Technologies Client Server Technologies Presented by: Gord Davey Copyright 2005 Best Software Canada Ltd. All rights reserved. No part of this publication may be reproduced, or transmitted in any form or by any means,

More information

1/26/2017 Autochartist - MetaTrader Plugin. MetaTrader Plugin.

1/26/2017 Autochartist - MetaTrader Plugin. MetaTrader Plugin. MetaTrader Plugin http://www.autochartist.com/metatrader-plugin/index.jsp?download=true 1/10 1. Installation Step 1 The first window will ask you to select the language you wish to display during the rest

More information

Bar Graphs with One Grouping Variable 1

Bar Graphs with One Grouping Variable 1 Version 4.0 Step-by-Step Examples Bar Graphs with One Grouping Variable 1 The following techniques are demonstrated in this article: Creating graphs of data organized by one grouping variable, including

More information

for Adobe InDesign Version 2.0 User Manual PLEASE NOTE:

for Adobe InDesign Version 2.0 User Manual PLEASE NOTE: for Adobe InDesign Version 2.0 User Manual PLEASE NOTE: The only difference between FOLDRite Template Master version 1.0 and version 2.0 is compatibility with Adobe InDesign CS4. If you are not running

More information

AN Interfacing RSView with Mint Controllers

AN Interfacing RSView with Mint Controllers AN00138-001 - Interfacing RSView with Mint Controllers Overview ActiveX controls, formerly known as OLE controls or OCX controls, are components (or objects) that can be inserted into an application to

More information

Excel 2003 Tutorials - Video File Attributes

Excel 2003 Tutorials - Video File Attributes Using Excel Files 18.00 2.73 The Excel Environment 3.20 0.14 Opening Microsoft Excel 2.00 0.12 Opening a new workbook 1.40 0.26 Opening an existing workbook 1.50 0.37 Save a workbook 1.40 0.28 Copy a workbook

More information

Introduction to 9.0. Introduction to 9.0. Getting Started Guide. Powering collaborative online communities.

Introduction to 9.0. Introduction to 9.0. Getting Started Guide. Powering collaborative online communities. Introduction to 9.0 Introduction to 9.0 Getting Started Guide Powering collaborative online communities. TABLE OF CONTENTS About FirstClass...3 Connecting to your FirstClass server...3 FirstClass window

More information

The Fleet page provides you with the tools needed to display, find, and manage your equipment. The page views and elements include:

The Fleet page provides you with the tools needed to display, find, and manage your equipment. The page views and elements include: Using the Fleet Page The Fleet page provides you with the tools needed to display, find, and manage your equipment. The page views and elements include: Assets tab Components tab Asset Details view Add/Modify

More information

Business Insight Authoring

Business Insight Authoring Business Insight Authoring Getting Started Guide ImageNow Version: 6.7.x Written by: Product Documentation, R&D Date: August 2016 2014 Perceptive Software. All rights reserved CaptureNow, ImageNow, Interact,

More information

3. Prepare all your graphs, illustrations and text by cutting them to size. For straight lines use a guillotine.

3. Prepare all your graphs, illustrations and text by cutting them to size. For straight lines use a guillotine. Infographic Production Introduction There are multiple ways of making an infographic. Professional designers commonly use graphical illustration packages to compile the various components but a Data Scientist

More information

I, J. text boxes, 51 Word, Excel and PowerPoint, Gridlines, 155, ,

I, J. text boxes, 51 Word, Excel and PowerPoint, Gridlines, 155, , Index A Accepting and rejecting tracked changes, 141 143 Adding comment, documents, 135 Adding headers and footers, documents, 125 AirPlay device, 269 Area chart type, Excel application, 235 Auto-capitalization,

More information

Business Process Procedures

Business Process Procedures Business Process Procedures 14.40 MICROSOFT EXCEL TIPS Overview These procedures document some helpful hints and tricks while using Microsoft Excel. Key Points This document will explore the following:

More information

NOMADS Introduction File Formats Outline Screen Library

NOMADS Introduction File Formats Outline Screen Library ProvideXVersion 8.30 NOMADS File Layouts Introduction 3 File Formats Outline 4 Screen Library 5 Data Dictionary 114 System Defaults Record Layout 119 DATA CLASS Record Layout 120 User Defined Colours Layout

More information