ProvideX - Beta Release Version April 1998

Size: px
Start display at page:

Download "ProvideX - Beta Release Version April 1998"

Transcription

1 Formatted list boxes: ProvideX - Beta Release Version April 1998 List_boxes can now contain format information which is used to describe columnar data and their respective formatting rules. In addition, formatted list boxes can have foreground and background colours as well as multiple lines. To define a formatted list box the FMT= option is used. The data contained in the FMT= string describes each of the columns and/or lines. Each column is defined by a column format specification character followed by a length in column units. Valid format specifiers are: L = Left Justify R = Right Justify C = Center N = Numeric alignment to the last digit or first decimal point B = Insert Spaces The following two specifiers have no length specified. S = Skip column data (used for hidden fields) / = Start a new line All other characters within the format specification are ignored. For Example: LIST_BOX 10,@(10,10,30,10),FMT="L15 R5 N12 C3 / B5 L25" Defines a list box where: Line one has four columns: Col 1 Left justified 15 characters wide Col 2 Right justified 5 characters wide Col 3 Numeric aligned 12 characters wide Col 4 Centered 3 characters wide Line two has two columns Col 1 consists of 5 blanks Col 2 is left justified 25 characters wide The data for each entry in the list box would consist of the contents of columns separated by a SEP, in other words a typical line for the above format would contain: "1123 Main"+sep+"On"+sep+" "+sep+"*"+sep+"Milton"+sep Such that the first column will display "1123 Main", the second will have "On", the third "123.45", and so on. Note, the widths in the specification string represent the width of the display not the number of characters within the field. The length of data within each column is immaterial. If desired, the separator character between each field can be changed by using the SEP= option on the LIST_BOX definition.

2 To change the colour for any field, simply prefix the data with one of the following Mnemonics: Foreground Background Black 'BLACK' '_BLACK' Red 'RED' '_RED' Green 'GREEN' '_GREEN' Yellow 'YELLOW' '_YELLOW' Blue 'BLUE' '_BLUE' Magenta 'MAGENTA' '_MAGENTA' Cyan 'CYAN' '_CYAN' White 'WHITE' '_WHITE' Normally, all background colours are dimmer than their respective foreground colours. If you desire to use the background colour brightness for foreground text, prefix the colour with 'SB'. If you desire to use foreground colour brightness as a background colour, prefix the colour with 'SF' (NOTE: This is not standard text plane colour handling). To get a light gray background, use 'SF'+'_WHITE' since '_WHITE' yields bright white. All colours are reset to list box standards at the end of each column. Sample programs: 0010 OPEN (1) "INVOICE", (2) "CUST" 0020 LIST_BOX 10,@(10,10,60,10),FMT="L8 B2 L30 C10 N15 C3" 0030 READ (1,END=1000) INV_ID$, INV_CUST$,INV_DATE$, INV_AMT$, INV_STS$ 0040 READ (2,KEY=INV_CUST) CST_NAME$ 0050 L$ = INV_ID$! 1St column 0060 L$ += SEP + CST_NAME$! 2nd column 0070 L$ += SEP + INV_DATE$! 3rd column 0080 X$=STR(INV_AMT$:"$###,##0.00-") 0090 IF INV_AMT < 0 X$ = 'RED'+X$! Column is red if negative 0100 L$ += SEP + X$ 0120 X$ = 'SF'+TBL(POS("ISP"=INV_STS$),"",'_GREEN','_BLUE','_RED')+INV_STS$ 0130 L$ += SEP + X$ 0140 LIST_BOX LOAD 10,0,L$ 0150 GOTO CLOSE (1),(2) 1010 INPUT *; IF CTL<>4 GOTO *SAME - or LIST_BOX 10,@(10,10,35,10),FMT="C8 R2 B1 N12 / B5 L30 ",SEP="/" 0020 CLR_CNT= FOR Z=1 TO COLOUR$=ESC+"F"+STR(CLR_CNT),CLR_CNT=(MOD(CLR_CNT+1,7)) 0050 L$="Row:"+STR(Z)+"/"! 1st column 0060 L$+=STR(Z)+"/"! 2nd column 0070 L$+='SB'+COLOUR$+'BR'+STR(RND*100000:"$###,##0.00-")+"/"! 3rd col 0080 L$+='SF'+COLOUR$+"Long Description for Column "+STR(Z)+"/"! 4th col 0090 LIST_BOX LOAD 10,0,L$ 0100 NEXT Z 0110 INPUT *; IF CTL<>4 THEN GOTO *SAME - or to Load multiple lines with a single List_Box Load LIST_BOX 10,@(10,10,35,10),FMT="C8 R2 B1 N12 / B5 L30 ",SEP="/"

3 0020 CLR_CNT=1,LBOX$="" 0030 FOR Z=1 TO COLOUR$=ESC+"F"+STR(CLR_CNT),CLR_CNT=(MOD(CLR_CNT+1,7)) 0050 L$="Row:"+STR(Z)+"/"! 1st column 0060 L$+=STR(Z)+"/"! 2nd column 0070 L$+='SB'+COLOUR$+'BR'+STR(RND*100000:"$###,##0.00-")+"/"! 3rd col 0080 L$+='SF'+COLOUR$+"Long Description for Column "+STR(Z)+"/"! 4th col 0090 LBOX$+=L$+SEP 0100 NEXT Z 0110 LIST_BOX LOAD 10,LBOX$ 0120 INPUT *; IF CTL<>4 THEN GOTO *SAME Note: The value for Field & Row Separators must be different Coloured Syntax for LIST Version 4.02 now supports Coloured Syntax when using the LIST command. There is a new System parameter called 'CS' (Coloured Syntax) that Enables or Disables this feature. There is also a new Mnemonic called '*H' that is used to control the various Colour Codes for the following: The Default syntax colors are: Variables=Blue Literals=Dark Green Remarks=Dark Cyan Errors=Red Mnemonics=Purple Statement Refs=Brown Operators=Dark Red The command mode scan function will use: Highlite=Yellow There is a Command Line Utility routine called "COLOUR" (or "COLOR") that can be used to display or alter the current settings. Typing COLOUR or COLOR at a ProvideX prompt will display online help for this utility. The LST Function has also been enhanced to return statements with coloured Syntax. i.e. X$=LST(* PGM(10)) X$=LST(EDIT * PGM(10)) Year 2000 Date Improvements The DAY_FORMAT directive now allows the format mask to contain the letters AA (e.g. MM/DD/AA) to assist in Y2K conversions. The AA indicates a packed two character year field where we return in the DAY variable A0 for the year 2000, A1 for 2001, B0 for 2010, etc. up to Z9 for the year The JUL function has also been enhanced to accept a valid DAY string and return the corresponding Julian date. For example: X$="01/01/A0" DAY_FORMAT "MM/DD/AA"

4 PRINT JUL(X$) PRINT DTE(10957 : "%Y %Ml %D") 2000 January 1 The DTE function will also support a valid DAY formatted string value. For example: PRINT DTE("01/01/A0" : "%Y %Ml %D") 2000 January 1 PRINT DTE("01/01/A0" : "%Dz/%Mz/%Y") 01/01/2000 The Date & Time functions in ProvideX were also enhanced to compensate for Operating Systems that are not Y2K compliant. European Decimal Changes Version 4.02 has altered the handling of the 'DP' and 'TH' system parameters as follows: 1) The output of a STR() function without a format mask will ignore 'DP' and 'TH' setting 2) The output of a STR() function with a format mask will always use 'DP' and 'TH' setting 3) Numeric data converted during a PRINT directive without a format mask will ignore the 'DP' and 'TH' setting where output with a format mask will use the 'DP' and 'TH' settings. 4) Numeric data converted during a WRITE directive does not use 'DP'/'TH' 5) Numeric data converted during an INPUT/OBTAIN directive without a format mask ignores the 'DP' and 'TH' settings whereas input with a format mask uses the 'DP' and 'TH' settings. 6) Numeric data converted during a READ/FIND/EXTRACT directive does not use the 'DP'/'TH' settings 7) The NUM function will always ignore the 'DP'/'TH' settings In short only formatted input/output uses the 'DP'/'TH' settings. In addition we have added two hidden new system parameters: '!D' - if this parameter is set the system reverts back to the original method of handling 'DP' and 'TH'. '!T' - if this parameter is set then when inputting numeric data either the 'DP' or the true decimal point character (. ) can be entered and will be treated as a decimal point. These parameters are only displayed in the PRM function if set otherwise they are hidden. New *CMD Command Line Routines: Command Line Shortcuts allow a programmer to effectively create new "Directives". These Shortcuts are simple PVX Programs stored in a Directory called "*CMD" (or /pvx/lib/_cmd). The Name of the program/shortcut cannot match any Directive in the language (ie. READ or LIST). It must also start with a letter. When the Name of the Shortcut is entered in console mode, ProvideX compiles the line. If the line would normally generate an Error 20, ProvideX will check the *CMD Directory for a program of the same name as the command which caused the Error 20. Any arguments typed after the Program Name will get passed down into a Single Variable.

5 For example: DELETE 0010 ENTER X$,ERR=*NEXT 0020 IF X$="" THEN X$=STK(0), X$=X$(6) 0030 PRINT "Okay -- I ruined ",X$ 0040 END SAVE "*CMD/RUIN" Now when you type: RUIN "PROGRAM" The response will be: "Okay -- I ruined PROGRAM" Starting with Version 4.02, ProvideX will include the following Shortcuts: CLIP COLOR / COLOUR F JOIN LL VER Take one or more line of code from the current program & Copy them to the Clipboard Routines to change or view the current program LIST colours Find a string in the current program Append two lines together List Labels Report Version info on current program These routines are stored in a Directory called "*CMD/SYSTEM" so they won't conflict with anyone currently using Command Line Shortcuts. When one of these commands is entered, ProvideX will first search the *CMD Directory & then check SYSTEM. Dynamic/Scrolling Window improvements The Mnemonics 'MINSIZE' & 'MAXSIZE' have been added to control the Minimum & Maximum Size of a Scrollable Window. The following example will create a Scrollable Window 80 columns wide by 25 rows high with the initial viewable area set to 30 columns by 10 rows. The Minimum scroll size will be set to 5 columns by 5 rows & the Maximum size will be 40 Columns by 15 rows: PRINT 'DIALOGUE'(1,1,80,25,"Title",'CS',OPT="Z") PRINT 'SIZE'(30,10), PRINT 'MINSIZE'(5,5), PRINT 'MAXSIZE'(40,15), SETTRACE/Trace Windows extensions The ability to display information while tracing a program has been added using the format: SETTRACE PRINT <String Expression> The value generated by the <String Expression> will be displayed in the Debugging Environment Trace Window and/or Printed to the channel being used to capture the SETTRACE output (usually FID(0)). The SETTRACE PRINT <String Expression> is treated like a Remark when no Trace Window or SETTRACE is active. WindX Get_File_Box improvements

6 A new graphical Get_File_Box routine for WindX Clients originally written by Edias International has been added to ProvideX. This routine is not the standard Windows Get_File_Box but rather a ProvideX program called **wdxopn.fle. Windows 32-bit Task/Thread Priority Three new System Parameters have been added to better control the Priority of a Task using the 32-bit version of ProvideX for Windows. The primary purpose of these parameters is too balance the load in a Client/Server environment. The Parameters are as follows: 'Q_' - Lowest Task Priority (default=0) 'Q^' - Highest Task Priority (default=2) 'QF' - Factor (default=1) PVXWIN32.EXE supports five levels of Task/Thread Priority that range from 0 being the lowest through 4 being the highest. By default, all applications run at Level 2 which is set by default using the 'Q^' Parameter. When an application exceeds the Windows Instruction Count (System Parameter 'WI'), its Priority Level is decremented until it reaches the value of the 'Q_' Parameter. The Priority Level is always reset to the 'Q^' value anytime a WAIT is executed or when Terminal Input is requested. The 'QF' Parameter is used to control how frequently the Priority Level is decremented. Setting the 'QF' Parameter to a higher value will force the application to run for a longer duration at the given Priority Level before switching to the next lower Priority Level or until the 'Q_' Parameter is reached. The overall # of instructions between Priority switching is based on an exponential formula using the value of the Windows Instruction Counter (Param 'WI') and the 'QF' Parameter setting. The current Priority Level is stored in TCB(91). Other Enhancements/Corrections: - The EXECUTE directive now supports an ERR= option - The MENU_BAR command has been extended to allow the Menu Bar to be Removed from the screen altogether by issuing a MENU_BAR REMOVE - Added support for Ctrl+Tab & Ctrl+Shift+Tab for switching between Folders in Nomads - The 'TEXT' and 'FONT' Mnemonics now support an attribute of 'N' for Decimal alignment - Formatted IOLISTs now support LEN(0) - Command Line Recall has been enhanced to provide a warning prior to leaving the Edited line when using Up & Down Arrows - Added support for DEFPRT on TCP Files - Added the ability to suppress the Windows Debugging Environment by specifying Debug=-1 in the PVX.INI file - Enhanced WHO & UID System Variables to return Network User Login Name for the 32 bit version of ProvideX for Windows - Allowed a BSZ=n to be used in conjunction with an ISZ=-1 for Binary Files - Corrected an Error 13 while attempting a Multi_line Read 0 - Changed XFA Function to be case insensitive when checking user parameters for BBx compatibility - Extended SORT key size to a maximum of Corrected problems with the 'SL' & 'EL' Mnemonics for WindX connected Printers - Improved support for Purging files on a WindX Client - Resolved issues Purging files immediately after Writing or Removing records - Prevented a GPF when the FID(0) value exceeded 12 characters - Corrected a problem issuing a BEGIN in a program that was PERFORMed from a CALLed program - Enhanced 'IMAGE'(DISABLE X$) to also hide Pictures - Resolved an problem with a SELECT followed immediately by a NEXT RECORD - Adjusted Check Boxes/Radio Buttons to not exceed button size

7 - Enhanced MID("abcde",-2,-4) to yield "abc" not "abcd" - Corrected a Menu Bar re-display issue - Resolved a Print positioning problem on the 1st page of a *winprt* report (Note: This only effected PVXWIN32.EXE) - Forced a 'CR' when Printing to [wdx]*winprt* when the requested column is less than the current column - Increased the # of files to 245 for PVXWIN32.EXE - Corrected a problem printing a Window Title longer than 80 characters - Forced a Buffer Flush for TCP files prior to the Close - Changed the FIN format returned for TCP Files from a Disk style FIN to a Device type FIN - Corrected a problem opening files local to a WindX Client when the Host application has more than 60 files open - Enhanced Check Boxes & Tristate Boxes to Dim the Text when the object is Disabled - Reading a Directory with the 'SD' parameter set no longer returns an Error #12 when a broken Unix Link file is read - Improved handling of lines ending with a ";" for Line Numberless Text Programs - Corrected the FID name returned for *WINPRT* or *WINDEV* - Improved error detection when executing a NEXT RECORD - Improved clean-up of a disconnected WindX station in Client/Server Mode - Corrected Escape sequence handling when using positioning while in Begin Output Transparency Mode ('BO') - Added support for a LEN= option in conjunction with an FMT= on a MULTI_LINE to limit the # of characters allowed after a program issues a Multi_Line Write that violates the Format Mask System Parameters: - Added the 'OL' Parameter to limit the # of Keyed Buffers for OPEN LOADed Files - Added the 'CS' Parameter to Enable/Disable Coloured Syntax - Added the 'IR' Parameter to Reset Insert Mode upon entry of a Decimal during Formatted Numeric Entry - Added Priority Adjust Parameters for the 32 bit version of ProvideX for Windows ('QF'/'Q^'/'Q_'). The current Priority Level is stored in TCB(91). - The '!D' & '!T' Parameters were added to improve handling of European Decimal issues NOMADS Release Notes Block Paste: The Block Paste program now allows you to select the individual controls, menu bar and User controls to be pasted from a selected panel to the current panel. Query: All query screens have been redesigned by using folders. The Fixed/Expression option has been added through out. New options: Name: Auto Tab Place: Header Function: If selected, the query will automatically put focus on the next control upon exit (this is accomplished by the pre-input of a tab on exit) User Defined Controls: A Drop box containing the most common user controls has been added. External Tools:

8 The properties for the selected VBX are now sorted alphabetically in the list box. File Maintenance: You can now generate CUSTOM File Maintenance programs for specific files by selecting the 'Custom' program type option and entering a program name in the 'Parameter Selection' folder of the File Maintenance definition. New Panel Header Attributes: Maximize - This will place the Windows maximize icon in the top right corner of the panel Close Box - This will place the close box or X in the top right corner of the panel Resizeable - When the panel is created you can drag the edges to resize it Resizeable/Auto Scroll- Not only can you resize the panel by dragging the edges, but if the panel is resized smaller horizontal and/or vertical scrollbars are automatically drawn New Attributes on All Controls: Enable Scrolling - Allows the control to scroll within a 'Resizeable/Auto scroll' dialogue box New Multi-line Attributes: Separator - A Drop box of possible separators has been added if you choose to have the contents of a multi-line written to the file with something other than the standard $8A$ New ListBox/DropBox Attributes: Signal on Exit - If this option is selected, the 'ON SELECT' logic will be executed each time Focus leaves the object Other Enhancements/Corrections: Spinner control - Folder Control - System Defaults - Menu Bars - All Controls - Folders - Tabs - Change Directory - Data Classes - Allow numeric entry only and is disabled for a list box or drop box control Query panels have been removed from the list of panels that can be selected Default path, case and grid options are now initially turned on If the help option is enabled on a customized menu bar, Nomads will invoke the help file defined in the Panel header rather than the program help 'ON FOCUS' logic issues have been addressed Timing issues with Title expressions have been corrected Only controls with 'Tab Stop' enabled are displayed in the Tab List Will prompt the user with a Message Box if the directory does not exist and resets focus to the name input field Changed the query file name from PROVIDEX.DCL to providex.dcl for Unix compatibility

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

Debugging Techniques

Debugging Techniques Partners in Success Debugging Techniques Using ProvideX Debugging Tools Presented by: Brett Condy Copyright 2002 Best Software Canada Ltd. All rights reserved. No part of this publication may be reproduced,

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

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

Excel Tools Features... 1 Comments... 2 List Comments Formatting... 3 Center Across... 3 Hide Blank Rows... 3 Lists... 3 Sheet Links...

Excel Tools Features... 1 Comments... 2 List Comments Formatting... 3 Center Across... 3 Hide Blank Rows... 3 Lists... 3 Sheet Links... CONTEXTURES EXCEL TOOLS FEATURES LIST PAGE 1 Excel Tools Features The following features are contained in the Excel Tools Add-in. Excel Tools Features... 1 Comments... 2 List Comments... 2 Comments...

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

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

Introduction to the Visual Studio.NET Integrated Development Environment IDE. CSC 211 Intermediate Programming

Introduction to the Visual Studio.NET Integrated Development Environment IDE. CSC 211 Intermediate Programming Introduction to the Visual Studio.NET Integrated Development Environment IDE CSC 211 Intermediate Programming Visual Studio.NET Integrated Development Environment (IDE) The Start Page(Fig. 1) Helpful links

More information

button Double-click any tab on the Ribbon to minimize it. To expand, click the Expand the Ribbon button

button Double-click any tab on the Ribbon to minimize it. To expand, click the Expand the Ribbon button PROCEDURES LESSON 1: CREATING WD DOCUMENTS WITH HEADERS AND FOOTERS Starting Word 1 Click the Start button 2 Click All Programs 3 Click the Microsoft Office folder icon 4 Click Microsoft Word 2010 1 Click

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

Trio Motion Technology 4-2. Motion Perfect v3

Trio Motion Technology 4-2. Motion Perfect v3 MOTION PERFECT V3 4 Trio Motion Technology 4-2 Software Reference Manual Introduction to Motion Perfect 3 Motion Perfect 3 is an Microsoft Windows based application for the PC, designed to be used in conjunction

More information

Learning Worksheet Fundamentals

Learning Worksheet Fundamentals 1.1 LESSON 1 Learning Worksheet Fundamentals After completing this lesson, you will be able to: Create a workbook. Create a workbook from a template. Understand Microsoft Excel window elements. Select

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

Stamina Software Pty Ltd. TRAINING MANUAL Viságe BIT VIEWER

Stamina Software Pty Ltd. TRAINING MANUAL Viságe BIT VIEWER Stamina Software Pty Ltd TRAINING MANUAL Viságe BIT VIEWER Version: 3 31 st October 2011 Viságe BIT Viewer TABLE OF CONTENTS VISÁGE BIT VIEWER... 2 ELEMENTS OF THE VISÁGE BIT VIEWER SCREEN... 3 TITLE...

More information

Using Microsoft Word. Working With Objects

Using Microsoft Word. Working With Objects Using Microsoft Word Many Word documents will require elements that were created in programs other than Word, such as the picture to the right. Nontext elements in a document are referred to as Objects

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

MICROSOFT WORD 2010 BASICS

MICROSOFT WORD 2010 BASICS MICROSOFT WORD 2010 BASICS Word 2010 is a word processing program that allows you to create various types of documents such as letters, papers, flyers, and faxes. The Ribbon contains all of the commands

More information

Customize the Navigation Pane

Customize the Navigation Pane Page 1 of 7 Microsoft Office Outlook Home > Products > Outlook > Outlook 2007 Help and How-to > Search and navigation > Navigation pane Customize the Navigation Pane Applies to: Microsoft Office Outlook

More information

Microsoft Excel 2010 Basics

Microsoft Excel 2010 Basics Microsoft Excel 2010 Basics Starting Word 2010 with XP: Click the Start Button, All Programs, Microsoft Office, Microsoft Excel 2010 Starting Word 2010 with 07: Click the Microsoft Office Button with the

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

PracticeMaster Report Writer Guide

PracticeMaster Report Writer Guide Copyright 2014-2015 Software Technology, Inc. 1621 Cushman Drive Lincoln, NE 68512 (402) 423-1440 Tabs3.com Tabs3, PracticeMaster, and the "pinwheel" symbol ( ) are registered trademarks of Software Technology,

More information

Table Visualizer (TV)

Table Visualizer (TV) Table Visualizer (TV) Copyright 1997-2012 Ericsson AB. All Rights Reserved. Table Visualizer (TV) 2.1.4.9 November 27 2012 Copyright 1997-2012 Ericsson AB. All Rights Reserved. The contents of this file

More information

Excel 2016 Basics for Windows

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

More information

Application of Skills: Microsoft Excel 2013 Tutorial

Application of Skills: Microsoft Excel 2013 Tutorial Application of Skills: Microsoft Excel 2013 Tutorial Throughout this module, you will progress through a series of steps to create a spreadsheet for sales of a club or organization. You will continue to

More information

WebVisit User course

WebVisit User course WebVisit 6.01.02 User course 1 Project creation and the user interface WebVisit User course 2 Getting started with visualization creation 3 Access to structures and fields 4 Macros in WebVisit Pro 5 Language

More information

Microsoft Excel XP. Intermediate

Microsoft Excel XP. Intermediate Microsoft Excel XP Intermediate Jonathan Thomas March 2006 Contents Lesson 1: Headers and Footers...1 Lesson 2: Inserting, Viewing and Deleting Cell Comments...2 Options...2 Lesson 3: Printing Comments...3

More information

Quick & Simple Imaging. User Guide

Quick & Simple Imaging. User Guide Quick & Simple Imaging User Guide The Quick & Simple Imaging software package provides the user with a quick and simple way to search and find their documents, then view, print, add notes, or even e- mail

More information

DATABASE VIEWER PLUS FOR IPAD: USER GUIDE PRODUCT VERSION: 4.1

DATABASE VIEWER PLUS FOR IPAD: USER GUIDE PRODUCT VERSION: 4.1 DATABASE VIEWER PLUS FOR IPAD: USER GUIDE PRODUCT VERSION: 4.1. CONTENTS User Guide 1 INTRODUCTION...5 1.1 FEATURES...5 2 INSTALLATION...6 2.1 DESKTOP INSTALLATION...6 2.2 IPAD INSTALLATION:...10 3 USING

More information

Contact Center Advisor. Genesys Performance Management Advisor TM. User Manual Release 3.3

Contact Center Advisor. Genesys Performance Management Advisor TM. User Manual Release 3.3 Genesys Performance Management Advisor TM User Manual Release 3.3 Informiam Browser, Contact Center Advisor, Workforce Advisor, Frontline Advisor, Agent Advisor, and Genesys Performance Management Suite

More information

Contents. Launching Word

Contents. Launching Word Using Microsoft Office 2007 Introduction to Word Handout INFORMATION TECHNOLOGY SERVICES California State University, Los Angeles Version 1.0 Winter 2009 Contents Launching Word 2007... 3 Working with

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

Quick Guide for Photoshop CC Basics April 2016 Training:

Quick Guide for Photoshop CC Basics April 2016 Training: Photoshop CC Basics Creating a New File 1. Click File > New 2. Keep Default Photoshop Size selected in the Preset drop-down list. 3. Click OK. Showing Rulers 1. On the Menu bar, click View. 2. Click Rulers.

More information

7/14/2009. Chapters Autocad Multi Line Text Tools. Multi Line Text Tool Ribbon. Multi Line Text Tool. July 14, 2009

7/14/2009. Chapters Autocad Multi Line Text Tools. Multi Line Text Tool Ribbon. Multi Line Text Tool. July 14, 2009 Chapters 9-11 July 14, 2009 Chapter 9 Learning Objectives Describe and use proper text standards. Calculate drawing scale and text height. Develop and use text styles. Make multiple lines of text with

More information

Keynote 08 Basics Website:

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

More information

Introduction to Microsoft PowerPoint 2000

Introduction to Microsoft PowerPoint 2000 Introduction to Microsoft PowerPoint 2000 TABLE OF CONTENTS Accessing PowerPoint 2000... 3 Starting a Presentation... 3 About the Editing Screen in Normal Screen View... 4 About Menu Displays in PowerPoint

More information

NOMADS Enhancements. Folder Object 22

NOMADS Enhancements. Folder Object 22 ProvideXVERSION 7 NOMADS Enhancements Introduction 3 Menu Colours 5 Numeric Check Boxes 9 Multiple Character Translation Values 10 COM Control Enhancements 12 Embedded Panels 14 Alternate Screen Layouts

More information

GNOME Terminal Manual i. GNOME Terminal Manual

GNOME Terminal Manual i. GNOME Terminal Manual i Manual ii Copyright 2002, 2003, 2004 Sun Microsystems Copyright 2000 Miguel de Icaza Copyright 2000 Michael Zucchi Copyright 2000 Alexander Kirillov Copyright 2008 Christian Persch Copyright 2009 Paul

More information

Microsoft Office Excel

Microsoft Office Excel Microsoft Office 2007 - Excel Help Click on the Microsoft Office Excel Help button in the top right corner. Type the desired word in the search box and then press the Enter key. Choose the desired topic

More information

Lesson 4 - Creating a Text Document Using WordPad

Lesson 4 - Creating a Text Document Using WordPad Lesson 4 - Creating a Text Document Using WordPad OBJECTIVES: To learn the basics of word processing programs and to create a document in WordPad from Microsoft Windows. A word processing program is the

More information

Program and Graphical User Interface Design

Program and Graphical User Interface Design CHAPTER 2 Program and Graphical User Interface Design OBJECTIVES You will have mastered the material in this chapter when you can: Open and close Visual Studio 2010 Create a Visual Basic 2010 Windows Application

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

PDF Printing & Print Preview

PDF Printing & Print Preview PDF Printing & Print Preview Presented by: Gord Davey Presentation Overview PDF Printing Syntax, Options, Usage Customizable Form Handling Customizable File Selection Dialogue Print Preview Capabilities

More information

Microsoft Excel 2010 Basic

Microsoft Excel 2010 Basic Microsoft Excel 2010 Basic Introduction to MS Excel 2010 Microsoft Excel 2010 is a spreadsheet software in the new Microsoft 2010 Office Suite. Excel allows you to store, manipulate and analyze data in

More information

BusinessObjects Frequently Asked Questions

BusinessObjects Frequently Asked Questions BusinessObjects Frequently Asked Questions Contents Is there a quick way of printing together several reports from the same document?... 2 Is there a way of controlling the text wrap of a cell?... 2 How

More information

Sending image(s) to report Click Send Snapshot on any screen in Dolphin3D and choose the Send to Report option

Sending image(s) to report Click Send Snapshot on any screen in Dolphin3D and choose the Send to Report option Dolphin 3D Reports Sending image(s) to report Click Send Snapshot on any screen in Dolphin3D and choose the Send to Report option Creating a report step by step 1. Generate the desired images in Dolphin3D

More information

Microsoft Excel Important Notice

Microsoft Excel Important Notice Microsoft Excel 2013 Important Notice All candidates who follow an ICDL/ECDL course must have an official ICDL/ECDL Registration Number (which is proof of your Profile Number with ICDL/ECDL and will track

More information

Screen Designer. The Power of Ultimate Design. 43-TV GLO Issue 2 01/01 UK

Screen Designer. The Power of Ultimate Design. 43-TV GLO Issue 2 01/01 UK Screen Designer The Power of Ultimate Design 43-TV-25-13 GLO Issue 2 01/01 UK 43-TV-25-13 GLO Issue 2 01/01 UK Table of Contents Table of Contents Honeywell Screen Designer - The Power of Ultimate Design

More information

FastTrack Schedule 10. Tutorials. Copyright 2010, AEC Software, Inc. All rights reserved.

FastTrack Schedule 10. Tutorials. Copyright 2010, AEC Software, Inc. All rights reserved. FastTrack Schedule 10 Tutorials FastTrack Schedule Tutorials Version 10.0.0 by Carol S. Williamson AEC Software, Inc. With FastTrack Schedule 10, the new version of the award-winning project manager,

More information

Basic Millennium INTRODUCTION

Basic Millennium INTRODUCTION Basic Millennium INTRODUCTION Welcome to the Basic Millennium tutorial. Navigation tools, such as the Continue button, will display as you progress through the presentation, while playback functions are

More information

MICROSOFT EXCEL BIS 202. Lesson 1. Prepared By: Amna Alshurooqi Hajar Alshurooqi

MICROSOFT EXCEL BIS 202. Lesson 1. Prepared By: Amna Alshurooqi Hajar Alshurooqi MICROSOFT EXCEL Prepared By: Amna Alshurooqi Hajar Alshurooqi Lesson 1 BIS 202 1. INTRODUCTION Microsoft Excel is a spreadsheet application used to perform financial calculations, statistical analysis,

More information

Word 2013 Beginning. Technology Integration Center

Word 2013 Beginning. Technology Integration Center Word 2013 Beginning Getting Started... 2 Quick Access Toolbar... 3 The Ribbon... 3 Help... 4 Compatibility Mode... 4 Document Views... 4 Navigating the Document... 5 Moving Around in the Document... 5

More information

Bridgeware Systems War Board Documentation

Bridgeware Systems War Board Documentation Introduction Temps Plus War Board Help Bridgeware Systems War Board Documentation Version date 2/3/2006 WarBoard.chm Version 4 Please visit www.bridgeware.net/webhelp for ideas, examples, and further education

More information

The American University in Cairo. Academic Computing Services. Excel prepared by. Maha Amer

The American University in Cairo. Academic Computing Services. Excel prepared by. Maha Amer The American University in Cairo Excel 2000 prepared by Maha Amer Spring 2001 Table of Contents: Opening the Excel Program Creating, Opening and Saving Excel Worksheets Sheet Structure Formatting Text

More information

KODAK Software User s Guide. Software Version 9.0

KODAK Software User s Guide. Software Version 9.0 KODAK Create@Home Software User s Guide Software Version 9.0 Table of Contents 1 Welcome to KODAK Create@Home Software Features... 1-1 Supported File Formats... 1-1 System Requirements... 1-1 Software

More information

This Tutorial is for Word 2007 but 2003 instructions are included in [brackets] after of each step.

This Tutorial is for Word 2007 but 2003 instructions are included in [brackets] after of each step. This Tutorial is for Word 2007 but 2003 instructions are included in [brackets] after of each step. Table of Contents Just so you know: Things You Can t Do with Word... 1 Get Organized... 1 Create the

More information

User manual CORRIGO E Tool

User manual CORRIGO E Tool User manual CORRIGO E Tool Revision B Oct 2004 This user manual covers the CORRIGO E Tool for both heating and.ventilation This user manual is published by AB REGIN without guarantee. AB REGIN can at any

More information

CowBoss User Guide 1. How to Enter Data: File Save as Birth Information: Tab Weaning Information: 1.8. Warning: NEVER Cut Copy

CowBoss User Guide 1. How to Enter Data: File Save as Birth Information: Tab Weaning Information: 1.8. Warning: NEVER Cut Copy CowBoss User Guide 1. How to Enter Data: 1.1. Open a blank CowBoss file. 1.2. Use File, Save as to save this CowBoss file under another name, such as CowBoss Spring 2002. Use a name that describes the

More information

Using Microsoft Excel

Using Microsoft Excel About Excel Using Microsoft Excel What is a Spreadsheet? Microsoft Excel is a program that s used for creating spreadsheets. So what is a spreadsheet? Before personal computers were common, spreadsheet

More information

Microsoft Excel 2010 Part 2: Intermediate Excel

Microsoft Excel 2010 Part 2: Intermediate Excel CALIFORNIA STATE UNIVERSITY, LOS ANGELES INFORMATION TECHNOLOGY SERVICES Microsoft Excel 2010 Part 2: Intermediate Excel Spring 2014, Version 1.0 Table of Contents Introduction...3 Working with Rows and

More information

Copyright 2015 Integrated Environmental Solutions Limited. All rights reserved.

Copyright 2015 Integrated Environmental Solutions Limited. All rights reserved. Tabular Room Data User Guide IES Virtual Environment Copyright 2015 Integrated Environmental Solutions Limited. All rights reserved. No part of the manual is to be copied or reproduced in any form without

More information

Exploring Microsoft Office Word 2007

Exploring Microsoft Office Word 2007 Exploring Microsoft Office Word 2007 Chapter 3: Enhancing a Document Robert Grauer, Keith Mulbery, Michelle Hulett Objectives Insert a table Format a table Sort and apply formulas to table data Convert

More information

TSM Report Designer. Even Microsoft Excel s Data Import add-in can be used to extract TSM information into an Excel spread sheet for reporting.

TSM Report Designer. Even Microsoft Excel s Data Import add-in can be used to extract TSM information into an Excel spread sheet for reporting. TSM Report Designer The TSM Report Designer is used to create and modify your TSM reports. Each report in TSM prints data found in the databases assigned to that report. TSM opens these databases according

More information

IPTV Middleware Remote Control & DVR User Guide

IPTV Middleware Remote Control & DVR User Guide IPTV Middleware Remote Control & DVR User Guide Version 12 The information presented in this document is written for the default settings of the system. The IPTV Middleware Remote Control & DVR User Guide

More information

Using Microsoft Excel

Using Microsoft Excel Using Microsoft Excel Formatting a spreadsheet means changing the way it looks to make it neater and more attractive. Formatting changes can include modifying number styles, text size and colours. Many

More information

Computer Application Practical

Computer Application Practical Computer Application Practical Periods / week-04 Total Mark :50 Total periods-60 Sessional : 25, Exam:25 Sl. No. Topic No. of periods 1 Basic Computer Operation 15 2 Word Processing 08 3 SPREADSHEET AND

More information

50) Which of the following statement temporarily stops the execution of a program?

50) Which of the following statement temporarily stops the execution of a program? FFC MODEL SCHOOL 1) Which one option is not in Edit Menu? (a) Undo (b) Redo (c) Find (d) Font 2) Which Keyboard shortcut is used to make the selected word bold? (a) Ctrl+Shift+B (b) Shift+B (c) Alt+B (d)

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

Full file at Excel Chapter 2 - Formulas, Functions, Formatting, and Web Queries

Full file at   Excel Chapter 2 - Formulas, Functions, Formatting, and Web Queries Excel Chapter 2 - Formulas, Functions, Formatting, and Web Queries MULTIPLE CHOICE 1. To start a new line in a cell, press after each line, except for the last line, which is completed by clicking the

More information

Remote Control & PVR User Guide Version 12

Remote Control & PVR User Guide Version 12 Remote Control & PVR User Guide Version 12 Some features described in this guide may not be available depending on the setup of your system. If you have any questions, contact WTC Technical Support at

More information

EXCEL 2003 DISCLAIMER:

EXCEL 2003 DISCLAIMER: EXCEL 2003 DISCLAIMER: This reference guide is meant for experienced Microsoft Excel users. It provides a list of quick tips and shortcuts for familiar features. This guide does NOT replace training or

More information

Thermo Scientific. GRAMS Envision. Version 2.0. User Guide. Revision A

Thermo Scientific. GRAMS Envision. Version 2.0. User Guide. Revision A Thermo Scientific GRAMS Envision Version 2.0 User Guide Revision A 2010 Thermo Fisher Scientific Inc. All rights reserved. Thermo Fisher Scientific Inc. provides this document to its customers with a product

More information

COMPUTING AND DATA ANALYSIS WITH EXCEL

COMPUTING AND DATA ANALYSIS WITH EXCEL COMPUTING AND DATA ANALYSIS WITH EXCEL Lesson 1: Introduction to the Excel Environment 1 Scheme Introduction to spreadsheets The Excel Interface Menus Toolbars Built-in Help tool Workbooks, Worksheets,

More information

CPM-200 User Guide For Lighthouse for MAX

CPM-200 User Guide For Lighthouse for MAX CPM-200 User Guide For Lighthouse for MAX Contents Page Number Opening the software 2 Altering the page size & Orientation 3-4 Inserting Text 5 Editing Text 6 Inserting Graphics 7-8 Changing the Colour

More information

WINDEV 23 - WEBDEV 23 - WINDEV Mobile 23 Documentation version

WINDEV 23 - WEBDEV 23 - WINDEV Mobile 23 Documentation version WINDEV 23 - WEBDEV 23 - WINDEV Mobile 23 Documentation version 23-1 - 04-18 Summary Part 1 - Report editor 1. Introduction... 13 2. How to create a report... 23 3. Data sources of a report... 43 4. Describing

More information

Software User's Guide

Software User's Guide Software User's Guide Page 1 of 29 APEX Firing System Software User's Guide Software User's Guide Page 2 of 29 Table of Contents 1 Introduction... 3 1.1 Software Features... 3 1.2 System Requirements...

More information

Matrox MuraControl for Windows

Matrox MuraControl for Windows Matrox MuraControl for Windows User Guide (for software version 6.00) 20179-301-0600 2017.09.25 Contents About this user guide... 6 Using this guide... 6 More information... 6 Overview... 7 Supported Matrox

More information

MATLAB Introduction to MATLAB Programming

MATLAB Introduction to MATLAB Programming MATLAB Introduction to MATLAB Programming MATLAB Scripts So far we have typed all the commands in the Command Window which were executed when we hit Enter. Although every MATLAB command can be executed

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

Guide to Editing Map Legends

Guide to Editing Map Legends Guide to Editing Map Legends Map legends explain map symbols and are crucial to the communication of a map s message. Effective legends are created with careful consideration of labels and text, classes,

More information

Roxen Content Provider

Roxen Content Provider Roxen Content Provider Generation 3 Templates Purpose This workbook is designed to provide a training and reference tool for placing University of Alaska information on the World Wide Web (WWW) using the

More information

R&R Report Librarian tm. Version 3.3 User Manual. R&R ReportWorks V12.x

R&R Report Librarian tm. Version 3.3 User Manual. R&R ReportWorks V12.x Version 3.3 R&R ReportWorks V12.x October, 2008 Table of Contents Introduction... 3 Getting Started with Librarian... 5 Librarian Main Menu... 6 Maintenance Menu... 8 Report Catalog...18 Related Tables...27

More information

Introduction to Microsoft Excel

Introduction to Microsoft Excel Create it Introduction to Microsoft Excel It's the beginning of the year (or you just got your new computer) and you want to create an electronic grade book to keep track of student achievement and do

More information

ezimagex2 User s Guide Version 1.0

ezimagex2 User s Guide Version 1.0 ezimagex2 User s Guide Version 1.0 Copyright and Trademark Information The products described in this document are copyrighted works of AVEN, Inc. 2015 AVEN, Inc. 4595 Platt Rd Ann Arbor, MI 48108 All

More information

INTRODUCTION... 1 UNDERSTANDING CELLS... 2 CELL CONTENT... 4

INTRODUCTION... 1 UNDERSTANDING CELLS... 2 CELL CONTENT... 4 Introduction to Microsoft Excel 2016 INTRODUCTION... 1 The Excel 2016 Environment... 1 Worksheet Views... 2 UNDERSTANDING CELLS... 2 Select a Cell Range... 3 CELL CONTENT... 4 Enter and Edit Data... 4

More information

Advanced Excel. Click Computer if required, then click Browse.

Advanced Excel. Click Computer if required, then click Browse. Advanced Excel 1. Using the Application 1.1. Working with spreadsheets 1.1.1 Open a spreadsheet application. Click the Start button. Select All Programs. Click Microsoft Excel 2013. 1.1.1 Close a spreadsheet

More information

User Guide. Version Exago Inc. All rights reserved.

User Guide. Version Exago Inc. All rights reserved. User Guide Version 2016.2 2016 Exago Inc. All rights reserved. Exago Reporting is a registered trademark of Exago, Inc. Windows is a registered trademark of Microsoft Corporation in the United States and

More information

OpenForms360 Validation User Guide Notable Solutions Inc.

OpenForms360 Validation User Guide Notable Solutions Inc. OpenForms360 Validation User Guide 2011 Notable Solutions Inc. 1 T A B L E O F C O N T EN T S Introduction...5 What is OpenForms360 Validation?... 5 Using OpenForms360 Validation... 5 Features at a glance...

More information

Service Minder Plus Features/Helpful Hints

Service Minder Plus Features/Helpful Hints Service Minder Plus Features/Helpful Hints This manual covers helpful hints and use of features. Note: These items will be addressed during the training sessions. This document is meant to be used as an

More information

course notes quick reference guide

course notes quick reference guide course notes quick reference guide Microsoft Excel 2010 Welcome to Excel 2010 Excel 2010 is the premier spreadsheet application from Microsoft. Excel 2010 makes it easier to analyze data quickly with new

More information

BASIC MICROSOFT POWERPOINT

BASIC MICROSOFT POWERPOINT BASIC MICROSOFT POWERPOINT PART ONE PHONE: 504-838-1144 IT Training Team Jefferson Parish Library EMAIL: jpltrain@jplibrary.net In this class you will learn to: Launch, close, and interact with Microsoft

More information

Document Editor Basics

Document Editor Basics Document Editor Basics When you use the Document Editor option, either from ZP Toolbox or from the Output option drop-down box, you will be taken to the Report Designer Screen. While in this window, you

More information

4) Study the section of a worksheet in the image below. What is the cell address of the cell containing the word "Qtr3"?

4) Study the section of a worksheet in the image below. What is the cell address of the cell containing the word Qtr3? Choose The Correct Answer: 1) Study the highlighted cells in the image below and identify which of the following represents the correct cell address for these cells: a) The cell reference for the selected

More information

Lesson 1: Creating and formatting an Answers analysis

Lesson 1: Creating and formatting an Answers analysis Lesson 1: Creating and formatting an Answers analysis Answers is the ad-hoc query environment in the OBIEE suite. It is in Answers that you create and format analyses to help analyze business results.

More information

1. Fixed a bug in processing doubley defined tables (where both DD and INI are given in a DSN) when a relative path is used.

1. Fixed a bug in processing doubley defined tables (where both DD and INI are given in a DSN) when a relative path is used. ProvideX Client/Server ODBC 3.21 Driver - README.TXT Oct 2001 ProvideX ODBC 3.21 Driver - Changes/Corrections/Enhancements ***IMPORTANT*** Use of the 3.21 ODBC Server, requires that you use at least a

More information

IGSS 13 Configuration Workshop - Exercises

IGSS 13 Configuration Workshop - Exercises IGSS 13 Configuration Workshop - Exercises Contents IGSS 13 Configuration Workshop - Exercises... 1 Exercise 1: Working as an Operator in IGSS... 2 Exercise 2: Creating a new IGSS Project... 28 Exercise

More information

Harvard Phone. Introduction to Contact Center CONTACT CENTER CLIENT QUICK REFERENCE QUIDE

Harvard Phone. Introduction to Contact Center CONTACT CENTER CLIENT QUICK REFERENCE QUIDE Introduction to Contact Center Interaction Desktop is an interaction and communications manager for desktop or laptop PCs, and offers more functionality than your office telephone. Use it to manage all

More information

Excel Select a template category in the Office.com Templates section. 5. Click the Download button.

Excel Select a template category in the Office.com Templates section. 5. Click the Download button. Microsoft QUICK Excel 2010 Source Getting Started The Excel Window u v w z Creating a New Blank Workbook 2. Select New in the left pane. 3. Select the Blank workbook template in the Available Templates

More information

Microsoft Access 2003 Quick Tutorial

Microsoft Access 2003 Quick Tutorial 1 Starting Access: 1. If there is no Access shortcut on the desktop, select Start, then Programs, then Microsoft Office, and then Access. 2. When access is open select File and then click on Blank Database

More information

StatTrak Address Manager Business Edition User Manual

StatTrak Address Manager Business Edition User Manual StatTrak Address Manager Business Edition User Manual Overview... 2 Frequently Asked Questions... 5 Toolbar... 7 Address Listings... 9 Update Main & Details... 11 Update Individual... 12 Back Up Database...

More information

Access: Printing Data with Reports

Access: Printing Data with Reports Access: Printing Data with Reports Reports are a means for displaying and summarizing data from tables or queries. While forms are primarily for on-screen viewing, reports are for presenting your data

More information