Textadept Quick Reference

Size: px
Start display at page:

Download "Textadept Quick Reference"

Transcription

1

2

3 THIRD EDITION Textadept Quick Reference Mitchell

4 Textadept Quick Reference by Mitchell Copyright 2013, 2015, 2016 Mitchell. All rights reserved. Contact the author at Although great care has been taken in preparing this book, the author assumes no responsibility for errors or omissions, or for damages resulting from the use of the information contained herein. All product names mentioned in this book are trademarks of their respective owners. Editor: Ana Balan Cover Designer: Mitchell Interior Designer: Mitchell Indexer: Mitchell Printing history: December 2013: First Edition May 2015: Second Edition October 2016: Third Edition ISBN:

5 Preface to the Third Edition This book is an updated version of the second edition of Textadept Quick Reference. It includes many of the new features introduced in the Textadept 8.x releases, and covers the backwards-incompatible changes made for Textadept 9.x. This edition also has updated examples that demonstrate the power and flexibility of the editor. In a nutshell, this book covers the following new topics: Regular expressions in searches instead of Lua patterns. Textadept s new snippet placeholders and the ability to insert snippets from individual files. Compile, run, and build commands can specify custom working directories and error patterns. All newly renamed and simplified preferences. For a comprehensive list of changes between Textadept versions, please refer to the editor s CHANGELOG.md or doc/ CHANGELOG.html files, which are distributed with the application. The online version is located at adept/changelog.html.

6

7 Contents Introduction 1 Download 2 Conventions 2 Terminology 2 Environment Variables 3 Important Files and Directories 3 Command Line Options 8 Define Custom Options 9 Global Variables 9 Platform Variables 10 Handle Events 10 Create Buffers and Views 11 Query View Information 12 Handle Buffer and View Events 13 Work with Files and Projects 13 Detect or Change File Encodings 15 Query File Information 16 Handle Input and Output Events 17 Work with Sessions 18 Configure Session Settings 18 Move Around 18 Move Within Lines 18 Move Between Lines 19 Move Between Pages 20 Move Between Buffers and Views 20 Contents vii

8 Other Movements 21 Handle Movement Events 21 Manipulate Text 22 Retrieve Text 22 Set Text 23 Delete Text 25 Transform Text 26 Undo and Redo 28 Employ the Clipboard 29 Handle Text Events 30 Select Text 30 Make Simple Selections 30 Make Multiple Selections 34 Make Rectangular Selections 35 Query Selection Information 36 Search for Text 38 Simple Search 40 Search and Replace 41 Interact with the Find & Replace Pane 42 Incremental Search 44 Handle Find & Replace Events 44 Query Buffer Information 45 Query Position Information 45 Query Line and Line Number Information 46 Query Measurement Information 47 Configure Line Margins 47 Query Margin Information 49 Handle Margin Events 49 viii Contents

9 Mark Lines with Markers 50 Bookmark Lines 53 Query Marker Information 54 Annotate Lines 54 Query Annotated Lines 55 Mark Text with Indicators 55 Highlight Words 57 Query Indicator Information 58 Handle Indicator Events 58 Show an Interactive List 58 Display an Autocompletion List 59 Display a User List 60 Configure List Behavior and Display 61 Display Images in Lists 62 Query Interactive List Information 64 Handle Interactive List Events 65 Show a Call Tip 65 Configure Call Tip Display 66 Query Call Tip Information 67 Handle Call Tip Events 67 Fold or Hide Lines 67 Query Folded or Hidden Line Information 68 Scroll the View 69 Prompt for Input with Dialogs 70 Prompt with Messagebox Dialogs 70 Prompt with Inputbox Dialogs 72 Prompt with File Selection Dialogs 74 Prompt with a Textbox Dialog 75 Contents ix

10 Prompt with Dropdown Dialogs 76 Prompt with a Filtered List Dialog 78 Prompt with an Option Dialog 80 Manipulate the Command Entry 82 Issue Lua Commands 83 Compile and Run Code 83 Configure Compile and Run Settings 84 Handle Compile and Run Events 85 Spawn Processes 85 Configure Textadept 87 Configure Indentation and Line Endings 88 Configure Character Settings 89 Configure the Color Theme 90 Create or Modify a Color Theme 91 Configure the Display Settings 97 Configure File Types 106 Configure Key Bindings 107 Configure Key Settings 111 Configure Snippets 111 Configure Miscellaneous Settings 114 Define a Lexer 114 Declare the Lexer Configuration 114 Construct Patterns 115 Define Tokens 119 Define Rules 119 Assign Styles 120 Specify Fold Points 121 Embed Lexers 121 x Contents

11 Query Lexer Properties and Rules 122 Handle Lexer Events 122 Manually Style Text 123 Refresh Styling 123 Assign Plain Text Styles 123 Style Plain Text 124 Query Style Information 125 Miscellaneous 125 Handle Miscellaneous Events 126 Appendix: Image Formats 129 XPM Image Format 129 RGBA Image Format 130 Index of Key and Mouse Bindings 131 Lua API Index 140 Concept Index 152 Contents xi

12

13 To Jeff Elkner

14

15 Introduction Textadept is a fast, minimalist, and remarkably extensible cross-platform text editor for programmers. Written in a combination of C and Lua 1 and relentlessly optimized for speed and minimalism for over nine years, Textadept is an ideal editor for programmers who want endless extensibility without sacrificing speed or succumbing to code bloat and featuritis. Textadept runs in both graphical and text-based user interface environments. The text-based version of the editor is referred to as the terminal version, since it executes within a terminal emulator. Textadept also supports the standard Lua and LuaJIT 2 environments. The version that utilizes LuaJIT is referred to as the LuaJIT version. Textadept Quick Reference is designed to help the user get things done when it comes to scripting and configuring Textadept. Its pragmatic approach assumes the user has a working knowledge of both Lua and Textadept. This book is broken up into a number of descriptive sections with conveniently grouped tasks that cover nearly every aspect of Textadept s Application Programming Interface (API). For the most part, the contents of each task are not listed in conceptual order. They are listed in procedural order, an order the user would likely follow when writing Lua scripts. This quick reference serves as a complement to Textadept s comprehensive Manual and extensive API documentation. While this book aims to be a complete reference, it does omit some of the less useful features of Textadept s API. For example, although many of Textadept s table fields are both readable and writable, this reference sometimes chooses to cover only one of those operations. (Unless a field is marked Readonly or Write-only, it is readable and writable.) This book also does not cover Lua s standard libraries. Finally, the facilities in this book are designed to be used primarily in user-written Lua scripts and in the occasional oneshot Lua command. If the user keeps this in mind, he or she can realize Textadept s full potential Introduction 1

16 Download Textadept binary packages for Windows, Mac OSX, and Linux platforms are available from Each package is self-contained and need not be installed. Textadept s source code is also included in each archive. The user may compile the application manually by following the instructions in the editor s Manual. Conventions This book uses the following conventions. Italic Used for filenames and for introducing new terms. Constant width Used for environment variables, command line options, and Lua code, including functions, tables, and variables. Constant width italic Used for user-specified parameters. [] Used for optional function arguments, except in code examples that index Lua tables. Unless otherwise specified, optional arguments default to nil. Terminology This book uses the following terminology. Buffer An object that contains editable text. View An object that contains a single buffer. Caret Either the visual that represents the text insertion point or the end point of a text selection. Anchor The start point of a text selection or search. 2 Textadept Quick Reference

17 Virtual Space The space past the ends of lines. Lexer A Lua module that highlights the syntax of source code written in a particular programming language. Textadept refers to a programming language by its lexer s name. Style A collection of display settings specific to source code comments, strings, keywords, and other ranges of text. Language Module A Lua module automatically loaded by Textadept when editing source code in a particular programming language. The module s name matches the language s lexer name. Not all languages have language modules. Environment Variables Textadept utilizes the following environment variables. HOME or USERHOME The user s home directory. Textadept s user data and preferences exist in a.textadept/ sub-directory, denoted as ~/.textadept/ throughout this book. LANG The user s default locale. Textadept will display localized text and messages in it if possible. TEXTADEPTJIT (Mac OSX only) When set, Textadept.app runs its LuaJIT version. TA_LUA_PATH TA_LUA_CPATH The Textadept equivalent of LUA_PATH and LUA_CPATH. Used by Lua s require() function for finding modules. Important Files and Directories Textadept allows the user to configure and customize the editor using several important files and directories contained within his or her ~/.textadept/ directory. Important Files and Directories 3

18 Mark Lines with Markers Textadept offers 32 markers, numbered from 0 to 31, to mark lines with. Each marker has an assigned symbol that is displayed in properly configured margins. For lines with multiple markers, markers are drawn over one another in ascending order. Tables 4 and 6 list all available marker symbols. The section Configure Line Margins on page 47 describes how to set up margins to display marker symbols. Markers move in sync with the lines they were added to as text is inserted and deleted. When a line that has a marker on it is deleted, that marker moves to the previous line. Textadept uses marker numbers 25 to 31 internally for the fold markers listed in Table 5, leaving marker numbers 0 through 24 at the user s disposal. Table 4. Marker symbols Marker Symbol buffer.mark_circle buffer.mark_smallrect buffer.mark_roundrect buffer.mark_leftrect buffer.mark_fullrect buffer.mark_shortarrow buffer.mark_arrow Visual or Description A rounded rectangle. A small, right-facing arrow. buffer.mark_arrows buffer.mark_dotdotdot buffer.mark_bookmark buffer.mark_pixmap buffer.mark_rgbaimage A horizontal bookmark flag. An XPM image. An RGBA image. buffer.mark_character + i The character whose ASCII value is i. buffer.mark_empty buffer.mark_background buffer.mark_underline Changes a line s background color. Underlines an entire line. 50 Textadept Quick Reference

19 Table 5. Fold marker numbers Marker Number buffer.marknum_folderopen buffer.marknum_foldersub buffer.marknum_foldertail buffer.marknum_folder buffer.marknum_folderopenmid buffer.marknum_foldermidtail buffer.marknum_folderend Description The first line of an expanded fold. A line within an expanded fold. The last line of an expanded fold. The first line of a collapsed fold. The first line of an expanded fold within an expanded fold. The last line of an expanded fold within an expanded fold. The first line of a collapsed fold within an expanded fold. Table 6. Fold marker symbols Fold Marker Symbol buffer.mark_arrow buffer.mark_arrowdown buffer.mark_minus buffer.mark_boxminus buffer.mark_boxminusconnected buffer.mark_circleminus Visual or Description A boxed minus sign connected to a vertical line. buffer.mark_circleminusconnected A circled minus sign connected to a vertical line. buffer.mark_plus + buffer.mark_boxplus buffer.mark_boxplusconnected buffer.mark_circleplus buffer.mark_circleplusconnected buffer.mark_vline A boxed plus sign connected to a vertical line. A circled plus sign connected to a vertical line. Mark Lines with Markers 51

20 Fold Marker Symbol buffer.mark_tcorner buffer.mark_lcorner buffer.mark_tcornercurve buffer.mark_lcornercurve Visual or Description A curved, T-shaped corner. A curved, L-shaped corner. _SCINTILLA.next_marker_number() Returns a unique marker number. buffer:marker_define(marker, symbol) Assigns marker symbol symbol to marker number marker. symbol is shown in marker symbol margins next to lines marked with marker. Tables 4 and 6 list the available marker symbols. The section Assign Marker Colors on page 95 describes how to change the color and alpha values of marker. The terminal version does not support image or underline marker symbols. It draws all other symbols as individual UTF-8 characters, which may not be completely accurate and may not render correctly in all terminals. TIP The user should define markers in either his or her ~/.textadept/properties.lua file or within an events.view_ NEW handler, so subsequent views can recognize them. buffer:marker_define_pixmap(marker, pixmap) Associates marker number marker with XPM image pixmap. The buffer.mark_pixmap marker symbol must be assigned to marker. The Appendix on page 129 describes the XPM image format. The terminal version cannot display images. buffer.rgba_image_width = width buffer.rgba_image_height = height Indicates that the pixel width and height of the RGBA image to be defined using buffer:marker_define_rgba_ image() are width and height, respectively. 52 Textadept Quick Reference

21 buffer.rgba_image_scale = factor Indicates that the scale factor percentage of the RGBA image to be defined using buffer:marker_define_rgba_ image() is factor. buffer:marker_define_rgba_image(marker, pixels) Associates marker number marker with RGBA image pix els. The dimensions for pixels (buffer.rgba_image_width and buffer.rgba_image_height) must have already been defined. The buffer.mark_rgbaimage symbol must be assigned to marker. The Appendix on page 129 describes the RGBA image format. The terminal version cannot display images. buffer:marker_add(line, marker) Adds marker number marker to line number line, returning the added marker s handle or 0 if line is invalid. buffer:marker_add_set(line, mask) Adds the markers specified in marker bit-mask mask to line number line. mask is a 32-bit value whose bits correspond to Textadept s 32 markers, buffer:marker_delete_handle(handle) Deletes the marker with handle handle. buffer:marker_delete(line, marker) Deletes marker number marker from line number line. If marker is -1, deletes all markers from line. buffer:marker_delete_all(marker) Deletes marker number marker from any line that has it. If marker is -1, deletes all markers from all lines. Bookmark Lines The user can toggle bookmarks on individual lines. textadept.bookmarks.toggle([on[, line]]) Toggles the bookmark on line number line or the current line, unless on is given. If on is true or false, adds or removes the bookmark, respectively. textadept.bookmarks.clear() Clears all bookmarks in the current buffer. Mark Lines with Markers 53

22 Concept Index Symbols ~/.textadept/, 3, 8, 10 A annotations, 54 autocompleting code, 59 autocompletion list configuring, 61 displaying, 59 images in, displaying, information, 64 autopaired characters, 25 B block comments, 28 bookmarks, 21, 53, 95 brace matching, 21, 96, 104 buffers creating, 12 line information in, 46 list of open, 9 manipulating text in (see manipulating text) measurements, 47 moving around in (see moving around) moving between, 20 position information in, 45 searching and replacing in (see searching for text) selecting text in (see selecting text) C call tip configuring, 66, 92, 97 displaying, 65 information, 67 character classifications, 89 clipboard operations, 29 code autocompletion, 59 code folding, 67, 104, 121 color theme bookmarks, 95 carets, 93 changing, 90 color definitions, 91, 93 highlighted words, 96 indicators, 96 location of, 6 long lines, 97 margins, 94 markers, 95 matching braces, 96 selections, 94 styles for, 92 whitespace, 97 Command Entry, 82 Lua commands with, issuing, 83 command line options, 8-10 commenting code, 27 compiling and running code, configuring Textadept ~/.textadept/, 8 autopaired characters, 25 block comments, 28 character classifications, 89 color theme (see color theme) compile and run code, 84 display settings (see display settings) file types, 107 Index 153

23 configuring Textadept (continued) key bindings (see key bindings) line endings, 88 line indentation, 88 locale, 6 matching braces, 104 sessions, 8, 18 snippets (see snippets) typeover characters, 25 D deleting text, 25 dialogs dropdown, file selection, 74 filtered list, inputbox, 72 messagebox, option, 80 textbox, 75 display settings carets, indentation guides, 104 long lines, 103 matching braces, 104 mouse cursor, 101 scrollbars, 100 selections, 99 whitespace, 99 window, 105 wrapped lines, 102 zoom, 103 downloading Textadept, 2 dropdown dialog, E encodings converting between, 28 for files, 15 of filesystem, 10 supported, list of, 15 end of lines, 88 environment variables, 3 events autocompletion list, 65 buffer and view, 13 call tip, 67 compile and run, 85 connecting to, 11 CSI, 126 double click, 126 dwell, 126 emitting, 11 error, 127 Find & Replace, 44 focus, 127 indicator, 58 initialized, 127 input and output, 17 interactive list, 65 keypress, 127 lexer, 122 margin, 49 mouse, 127 movement, 21 no command line arguments, 126 quit, 127 reset, 127 resume, 127 suspend, 127 tab click, 127 text, 30 update, 128 user list, 65 F file encodings, 15 file filters, 15 file information, 16 file operations, file selection dialog, 74 file types, 106 filesystem encoding, 10 filtered list dialog, Index

24 filtering text through shell commands, 26 Find & Replace Pane, 42 Regex syntax for, search flags for, 42 searching and replacing with, 43 searching in files with, 43 finding text (see searching for text) fold markers, 51 folding lines, 67 fonts and font sizes, 92, 103 H hiding lines, 68 highlighting words, 57, 96 I image formats RGBA, 130 XPM, 129 incremental searching, 44 indentation, 26, 46, 88 indentation guides, 104 indicators, 55-58, 96 init.lua, 4 input, prompting for (see dialogs) inputbox dialog, 72 inserting text, 23 installing Textadept, 2 interactive lists (see autocompletion list; user list) internationalizing messages, 9 K key bindings configuring, 110 keys.keysyms, 109 modifier keys, list of, 110 special keys, list of, 110 terminology, 108 L language modules, location of, 6 lexers changing, 107 code folding, 121 defining, 114 embedding, 121 fold points, 121 information, 107 location of, 6 patterns, properties for, 122 rules, 119 styles, 120 tokens, 119 line annotations, 54 line endings, 88 line indentation, 26, 46, 88 line information, 46 line margins, 47-49, 94 line markers, 50-54, 95 line wrapping, 102 lines annotations, 54 bookmarking, 53 endings for, 88 folding, 67 hiding, 68 indentation for, 26, 46, 88 information for, 46, 68 joining, 27 long, 97, 103 marking, 50-53, 95 moving between, 19 moving up or down, 27 moving within, 18 splitting, 27 transposing, 26 wrapping, 102 Index 155

25 locale, 3, 6 localizing messages, 9 long lines, 97, 103 Lua commands, issuing, 8, 83 Lua pattern syntax, M manipulating text clipboard, using the, 29 converting between encodings, 28 deleting, 25 inserting, 23 replacing, 24 retrieving, 22 setting, 23 transforming, 26 margins, 47-49, 94 marking lines, 50-53, 95 marking text, 55-57, 96 matching braces, 21, 96, 104 measurements, 47 messagebox dialog, modules, location of, 6 moving around between bookmarks, 21 between buffers, 20 between lines, 19 between matching braces, 21 between pages, 20 between paragraphs, 21 between views, 20 selecting and, 31-33, 35 within lines, 18 multiple selections, 34, 37 O option dialog, 80 overtype mode, toggling, 125 P pages, moving between, 20 paragraphs, moving between, 21 piping text through shell commands, 26 pixmaps, 129 position information, 45 printing messages, 23 processes, spawning of, properties.lua, 5 Q quitting, 125 R rectangular selections, replacing text, 24, 41 resetting, 125 retrieving text, 22 RGBA image format, 130 running code, running Textadept, 8 S scrolling, 69, 100 search flags, 38, 42 searching for text Find & Replace Pane, using the, in files, 43 incrementally, 44 regular expression syntax for, replacing and, 41 search flags for, 38, 42 simple search, 40 selecting text modal selection, 33 multiple selection, 34 rectangular selection, Index

26 simple selection, 30 while moving, selections, 36, 94, 99 sessions, 8, 18 setting text, 23 snippets configuring, 113 inserting, 24 special characters, list of, 113 terminology, 111 spawning processes, split views, 12 style information, 125 styles, 92 styling text, (see also lexers) switching buffers, 20 switching views, 20 syntax highlighting, 107, 123 (see also lexers) T target ranges, 24, 27, 41 text indicators, 55-58, 96 text manipulations (see manipulating text) text selections (see selecting text; selections) Textadept configuring (see configuring Textadept) downloading, 2 installing, 2 running, 8 user data directory of, 3, 8, 10 textbox dialog, 75 theme (see color theme) transforming text, 26 transposing characters and lines, 26 typeover characters, 25 U undo and redo actions, 28 user data directory, 3, 8, 10 user list configuring, 61 displaying, 60 images in, displaying, information, 64 V variables, 9 views information, 12 list of open, 9 moving between, 20 scrolling, 69 splitting, 12 unsplitting, 12 W window, 105 wrapping lines, 102 X XPM image format, 129 Z zooming, 103 Index 157

Textadept Quick Reference. Mitchell

Textadept Quick Reference. Mitchell Textadept Quick Reference Mitchell Textadept Quick Reference by Mitchell Copyright 2013 Mitchell. All rights reserved. Contact the author at mitchell.att.foicica.com. Although great care has been taken

More information

Textadept Quick Reference

Textadept Quick Reference FOURTH EDITION Textadept Quick Reference Mitchell Textadept Quick Reference by Mitchell Copyright 2013, 2015, 2016, 2018 Mitchell. All rights reserved. Contact the author at mitchell@foicica.com. Although

More information

Textadept Quick Reference

Textadept Quick Reference SECOND EDITION Textadept Quick Reference Mitchell Textadept Quick Reference by Mitchell Copyright 2013, 2015 Mitchell. All rights reserved. Contact the author at mitchell@foicica.com. Although great care

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

Nauticom NetEditor: A How-to Guide

Nauticom NetEditor: A How-to Guide Nauticom NetEditor: A How-to Guide Table of Contents 1. Getting Started 2. The Editor Full Screen Preview Search Check Spelling Clipboard: Cut, Copy, and Paste Undo / Redo Foreground Color Background Color

More information

Table of Contents. Word. Using the mouse wheel 39 Moving the insertion point using the keyboard 40 Resume reading 41

Table of Contents. Word. Using the mouse wheel 39 Moving the insertion point using the keyboard 40 Resume reading 41 Table of Contents iii Table of Contents Word Starting Word What is word processing? 2 Starting Word 2 Exploring the Start screen 4 Creating a blank document 4 Exploring the Word document window 5 Exploring

More information

Coding Faster: Getting More Productive with Microsoft Visual

Coding Faster: Getting More Productive with Microsoft Visual Microsoft Coding Faster: Getting More Productive with Microsoft Visual Studio Covers Microsoft Visual Studio 2005, 2008, and 2010 Zain Naboulsi Sara Ford Table of Contents Foreword Introduction xxiii xxvii

More information

TABLE OF CONTENTS. i Excel 2016 Basic

TABLE OF CONTENTS. i Excel 2016 Basic i TABLE OF CONTENTS TABLE OF CONTENTS I PREFACE VII 1 INTRODUCING EXCEL 1 1.1 Starting Excel 1 Starting Excel using the Start button in Windows 1 1.2 Screen components 2 Tooltips 3 Title bar 4 Window buttons

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

Open. Select the database and click. Print. Set printing options using the dropdown menus, then click the

Open. Select the database and click. Print. Set printing options using the dropdown menus, then click the The Original Quick Reference Guides Microsoft Access 2010 Access is a tool for creating and managing databases collections of related records structured in an easily accessible format such as a table,

More information

Regexator. User Guide. Version 1.3

Regexator. User Guide. Version 1.3 Regexator User Guide Version 1.3 Regexator User Guide C O N T E N T S 1 INTRODUCTION 5 1.1 Main Window 5 1.2 Regex Categories 6 1.3 Switcher 6 1.4 Tab Reordering 6 2 PROJECT EXPLORER 7 2.1 Project 7 2.2

More information

4D Write. User Reference Mac OS and Windows Versions. 4D Write D SA/4D, Inc. All Rights reserved.

4D Write. User Reference Mac OS and Windows Versions. 4D Write D SA/4D, Inc. All Rights reserved. 4D Write User Reference Mac OS and Windows Versions 4D Write 1999-2002 4D SA/4D, Inc. All Rights reserved. 4D Write User Reference Version 6.8 for Mac OS and Windows Copyright 1999 2002 4D SA/4D, Inc.

More information

Corel Ventura 8 Introduction

Corel Ventura 8 Introduction Corel Ventura 8 Introduction Training Manual A! ANZAI 1998 Anzai! Inc. Corel Ventura 8 Introduction Table of Contents Section 1, Introduction...1 What Is Corel Ventura?...2 Course Objectives...3 How to

More information

Acrobat X Professional

Acrobat X Professional Acrobat X Professional Toolbar Well Page Navigations/Page Indicator Buttons for paging through document Scroll Bar/box page indicator appears when using the scroll button to navigate. When you release

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

Microsoft Word Important Notice

Microsoft Word Important Notice Microsoft Word 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

BHM Website Teacher User Guide

BHM Website Teacher User Guide BHM Website Teacher User Guide How to Login 1. Go to HUhttp://bhmschools.org/userUH 2. Enter your username and password and click Log in How to Change Your Password 1. Go to My Account in your Nav bar

More information

Insert/Edit Image. Overview

Insert/Edit Image. Overview Overview The tool is available on the default toolbar for the WYSIWYG Editor. The Images Gadget may also be used to drop an image on a page and will automatically spawn the Insert/Edit Image modal. Classic

More information

Rich Text Editor Quick Reference

Rich Text Editor Quick Reference Rich Text Editor Quick Reference Introduction Using the rich text editor is similar to using a word processing application such as Microsoft Word. After data is typed into the editing area it can be formatted

More information

Chapter Eight: Editing a Part Program

Chapter Eight: Editing a Part Program Chapter Eight: Editing a Part Program Introduction PC-DMIS's main purposes are to allow you to create, edit, and execute part programs with ease. This chapter discusses using the Edit menu (with other

More information

Microsoft Office. Microsoft Office

Microsoft Office. Microsoft Office is an office suite of interrelated desktop applications, servers and services for the Microsoft Windows. It is a horizontal market software that is used in a wide range of industries. was introduced by

More information

EDITOR GUIDE. Button Functions:...2 Inserting Text...4 Inserting Pictures...4 Inserting Tables...8 Inserting Styles...9

EDITOR GUIDE. Button Functions:...2 Inserting Text...4 Inserting Pictures...4 Inserting Tables...8 Inserting Styles...9 EDITOR GUIDE Button Functions:...2 Inserting Text...4 Inserting Pictures...4 Inserting Tables...8 Inserting Styles...9 1 Button Functions: Button Function Display the page content as HTML. Save Preview

More information

Detailed Table of Contents

Detailed Table of Contents Detailed Table of Contents INTRODUCTION...1 I.1 THE OBJECTIVES OF THIS TEXT...1 I.2 WHY LibreOffice?...1 I.3 WHAT IS SPECIAL ABOUT THIS TEXT?...1 I.4 THE STATUS OF COMPUTING IN SCHOOLS...2 I.5 TEACHING

More information

Microsoft Word 2010 Lesson Plan

Microsoft Word 2010 Lesson Plan Microsoft Word 2010 Lesson Plan Objective: This class is a brief introduction to Word 2010. It consists of 2 one and one-half hour sessions. By the end of this class you should be able to create a simple

More information

StarTeam File Compare/Merge StarTeam File Compare/Merge Help

StarTeam File Compare/Merge StarTeam File Compare/Merge Help StarTeam File Compare/Merge 12.0 StarTeam File Compare/Merge Help Micro Focus 575 Anton Blvd., Suite 510 Costa Mesa, CA 92626 Copyright 2011 Micro Focus IP Development Limited. All Rights Reserved. Portions

More information

Chapter 4 Printing and Viewing a Presentation Using Proofing Tools I. Spell Check II. The Thesaurus... 23

Chapter 4 Printing and Viewing a Presentation Using Proofing Tools I. Spell Check II. The Thesaurus... 23 PowerPoint Level 1 Table of Contents Chapter 1 Getting Started... 7 Interacting with PowerPoint... 7 Slides... 7 I. Adding Slides... 8 II. Deleting Slides... 8 III. Cutting, Copying and Pasting Slides...

More information

What can Word 2013 do?

What can Word 2013 do? Mary Ann Wallner What can Word 2013 do? Provide the right tool for: Every aspect of document creation Desktop publishing Web publishing 2 Windows 7: Click Start Choose Microsoft Office > Microsoft Word

More information

VisualPST 2.4. Visual object report editor for PowerSchool. Copyright Park Bench Software, LLC All Rights Reserved

VisualPST 2.4. Visual object report editor for PowerSchool. Copyright Park Bench Software, LLC All Rights Reserved VisualPST 2.4 Visual object report editor for PowerSchool Copyright 2004-2015 Park Bench Software, LLC All Rights Reserved www.parkbenchsoftware.com This software is not free - if you use it, you must

More information

EVALUATION COPY. Unauthorized Reproduction or Distribution Prohibited

EVALUATION COPY. Unauthorized Reproduction or Distribution Prohibited INTRODUCTION TO MICROSOFT EXCEL 2016 Introduction to Microsoft Excel 2016 (EXC2016.1 version 1.0.1) Copyright Information Copyright 2016 Webucator. All rights reserved. The Authors Dave Dunn Dave Dunn

More information

Microsoft Word 2011 Tutorial

Microsoft Word 2011 Tutorial Microsoft Word 2011 Tutorial GETTING STARTED Microsoft Word is one of the most popular word processing programs supported by both Mac and PC platforms. Microsoft Word can be used to create documents, brochures,

More information

Working with PDF s. To open a recent file on the Start screen, double click on the file name.

Working with PDF s. To open a recent file on the Start screen, double click on the file name. Working with PDF s Acrobat DC Start Screen (Home Tab) When Acrobat opens, the Acrobat Start screen (Home Tab) populates displaying a list of recently opened files. The search feature on the top of the

More information

Press the Plus + key to zoom in. Press the Minus - key to zoom out. Scroll the mouse wheel away from you to zoom in; towards you to zoom out.

Press the Plus + key to zoom in. Press the Minus - key to zoom out. Scroll the mouse wheel away from you to zoom in; towards you to zoom out. Navigate Around the Map Interactive maps provide many choices for displaying information, searching for more details, and moving around the map. Most navigation uses the mouse, but at times you may also

More information

Code Editor. The Code Editor is made up of the following areas: Toolbar. Editable Area Output Panel Status Bar Outline. Toolbar

Code Editor. The Code Editor is made up of the following areas: Toolbar. Editable Area Output Panel Status Bar Outline. Toolbar Code Editor Wakanda s Code Editor is a powerful editor where you can write your JavaScript code for events and functions in datastore classes, attributes, Pages, widgets, and much more. Besides JavaScript,

More information

OU EDUCATE TRAINING MANUAL

OU EDUCATE TRAINING MANUAL OU EDUCATE TRAINING MANUAL OmniUpdate Web Content Management System El Camino College Staff Development 310-660-3868 Course Topics: Section 1: OU Educate Overview and Login Section 2: The OmniUpdate Interface

More information

Book 5. Chapter 1: Slides with SmartArt & Pictures... 1 Working with SmartArt Formatting Pictures Adjust Group Buttons Picture Styles Group Buttons

Book 5. Chapter 1: Slides with SmartArt & Pictures... 1 Working with SmartArt Formatting Pictures Adjust Group Buttons Picture Styles Group Buttons Chapter 1: Slides with SmartArt & Pictures... 1 Working with SmartArt Formatting Pictures Adjust Group Buttons Picture Styles Group Buttons Chapter 2: Slides with Charts & Shapes... 12 Working with Charts

More information

IntraMaps End User Manual

IntraMaps End User Manual IntraMaps End User Manual For IntraMaps Version 8 Date: 6 th July 2014 Contents Introduction... 4 What is IntraMaps?... 4 Application... 5 Main Toolbar... 6 View... 7 Original View:... 7 Pan:... 7 Zoom

More information

Word 2013 Quick Start Guide

Word 2013 Quick Start Guide Getting Started File Tab: Click to access actions like Print, Save As, and Word Options. Ribbon: Logically organize actions onto Tabs, Groups, and Buttons to facilitate finding commands. Active Document

More information

ABBYY FineReader 14. User s Guide ABBYY Production LLC. All rights reserved.

ABBYY FineReader 14. User s Guide ABBYY Production LLC. All rights reserved. ABBYY FineReader 14 User s Guide 2017 ABBYY Production LLC All rights reserved Information in this document is subject to change without notice and does not bear any commitment on the part of ABBYY The

More information

Sample Chapters. To learn more about this book, visit the detail page at: go.microsoft.com/fwlink/?linkid=192147

Sample Chapters. To learn more about this book, visit the detail page at: go.microsoft.com/fwlink/?linkid=192147 Sample Chapters Copyright 2010 by Online Training Solutions, Inc. All rights reserved. To learn more about this book, visit the detail page at: go.microsoft.com/fwlink/?linkid=192147 Chapter at a Glance

More information

Guide to WB Annotations

Guide to WB Annotations Guide to WB Annotations 04 May 2016 Annotations are a powerful new feature added to Workbench v1.2.0 (Released May 2016) for placing text and symbols within wb_view tabs and windows. They enable generation

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

Office of Instructional Technology

Office of Instructional Technology Office of Instructional Technology Microsoft Excel 2016 Contact Information: 718-254-8565 ITEC@citytech.cuny.edu Contents Introduction to Excel 2016... 3 Opening Excel 2016... 3 Office 2016 Ribbon... 3

More information

Microsoft How to Series

Microsoft How to Series Microsoft How to Series Getting Started with EXCEL 2007 A B C D E F Tabs Introduction to the Excel 2007 Interface The Excel 2007 Interface is comprised of several elements, with four main parts: Office

More information

Introduction to Microsoft Word 2010

Introduction to Microsoft Word 2010 CDU Short Courses Introduction to Microsoft Word 2010 A 2 day course delivered by Charles Darwin University. COURSE INFORMATION This course focuses on basic document production using Microsoft Word 2010

More information

ENVI Tutorial: Introduction to ENVI

ENVI Tutorial: Introduction to ENVI ENVI Tutorial: Introduction to ENVI Table of Contents OVERVIEW OF THIS TUTORIAL...1 GETTING STARTED WITH ENVI...1 Starting ENVI...1 Starting ENVI on Windows Machines...1 Starting ENVI in UNIX...1 Starting

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

Productivity! Feature Matrix

Productivity! Feature Matrix Features Code Generation Tools JBuilderX and Productivity! Std Pro JBuilderX Delegate.Insight - provides an easy way to generate methods, which implementations are delegated to another object (delegate).

More information

SPARK. User Manual Ver ITLAQ Technologies

SPARK. User Manual Ver ITLAQ Technologies SPARK Forms Builder for Office 365 User Manual Ver. 3.5.50.102 0 ITLAQ Technologies www.itlaq.com Table of Contents 1 The Form Designer Workspace... 3 1.1 Form Toolbox... 3 1.1.1 Hiding/ Unhiding/ Minimizing

More information

User Manual Version 1.1 January 2015

User Manual Version 1.1 January 2015 User Manual Version 1.1 January 2015 - 2 / 112 - V1.1 Variegator... 7 Variegator Features... 7 1. Variable elements... 7 2. Static elements... 7 3. Element Manipulation... 7 4. Document Formats... 7 5.

More information

Core Essentials. Publisher Diocese of St. Petersburg Office of Training

Core Essentials. Publisher Diocese of St. Petersburg Office of Training Core Essentials Publisher 2010 Diocese of St. Petersburg Office of Training Training@dosp.org TABLE OF CONTENTS Topic One: Getting Started... 1 Workshop Objectives... 2 Topic Two: Opening and Closing Publisher...

More information

ENVI Classic Tutorial: Introduction to ENVI Classic 2

ENVI Classic Tutorial: Introduction to ENVI Classic 2 ENVI Classic Tutorial: Introduction to ENVI Classic Introduction to ENVI Classic 2 Files Used in This Tutorial 2 Getting Started with ENVI Classic 3 Loading a Gray Scale Image 3 ENVI Classic File Formats

More information

WORD Creating Objects: Tables, Charts and More

WORD Creating Objects: Tables, Charts and More WORD 2007 Creating Objects: Tables, Charts and More Microsoft Office 2007 TABLE OF CONTENTS TABLES... 1 TABLE LAYOUT... 1 TABLE DESIGN... 2 CHARTS... 4 PICTURES AND DRAWINGS... 8 USING DRAWINGS... 8 Drawing

More information

At the shell prompt, enter idlde

At the shell prompt, enter idlde IDL Workbench Quick Reference The IDL Workbench is IDL s graphical user interface and integrated development environment. The IDL Workbench is based on the Eclipse framework; if you are already familiar

More information

Adding records Pasting records Deleting records Sorting records Filtering records Inserting and deleting columns Calculated columns Working with the

Adding records Pasting records Deleting records Sorting records Filtering records Inserting and deleting columns Calculated columns Working with the Show All About spreadsheets You can use a spreadsheet to enter and calculate data. A spreadsheet consists of columns and rows of cells. You can enter data directly into the cells of the spreadsheet and

More information

page 1 OU Campus User Guide

page 1 OU Campus User Guide page 1 OU Campus User Guide Logging Into OU Campus page page 2 1. Navigate to a page on your site that you wish to edit. 2. Scroll down to the footer and click the symbol. 3. Enter your OU Campus username

More information

Fusion. CBR Fusion MLS Level 1 Core Functions. Class Handout

Fusion. CBR Fusion MLS Level 1 Core Functions. Class Handout Fusion 1 CBR Fusion MLS Level 1 Core Functions Class Handout GETTING STARTED IN FUSION Logging On and Off To log on to Fusion MLS: 1. Type your user name in the User ID box. 2. Type your password in the

More information

Adobe InDesign CS6 Tutorial

Adobe InDesign CS6 Tutorial Adobe InDesign CS6 Tutorial Adobe InDesign CS6 is a page-layout software that takes print publishing and page design beyond current boundaries. InDesign is a desktop publishing program that incorporates

More information

Using Sitecore 5.3.1

Using Sitecore 5.3.1 Using Sitecore 5.3.1 An End-User s Guide to Using and Administrating Sitecore Author: Sitecore Corporation Date: December 12, 2007 Release: Rev. 1.0 Language: English Sitecore is a registered trademark.

More information

Beginning a presentation

Beginning a presentation L E S S O N 2 Beginning a presentation Suggested teaching time 40-50 minutes Lesson objectives To learn how to create and edit title and bullet slides, you will: a b c d Select slide types by using the

More information

EXCEL TUTORIAL.

EXCEL TUTORIAL. EXCEL TUTORIAL Excel is software that lets you create tables, and calculate and analyze data. This type of software is called spreadsheet software. Excel lets you create tables that automatically calculate

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

Word Processing Graphics

Word Processing Graphics Class Description This class is intended for those who are comfortable with the fundamentals of word processing. It covers the use of various types of graphics to improve or clarify or just beautify the

More information

Word Getting Started The Word Window u vw. Microsoft QUICK Source. Creating a New Blank Document. Creating a New Document from a Template

Word Getting Started The Word Window u vw. Microsoft QUICK Source. Creating a New Blank Document. Creating a New Document from a Template Microsoft QUICK Source Word 2007 Getting Started The Word Window u vw x y z u Quick Access Toolbar contains shortcuts for the most commonly used tools. v Microsoft Office Button contains common file and

More information

Reference Services Division Presents WORD Introductory Class

Reference Services Division Presents WORD Introductory Class Reference Services Division Presents WORD 2010 Introductory Class CLASS OBJECTIVES: Navigate comfortably on a Word page Learn how to use the Ribbon tabs and issue commands Format a simple document Edit,

More information

User Guide. FTR Reporter For more information, visit

User Guide. FTR Reporter For more information, visit FTR Reporter 5.7.1 For more information, visit www.fortherecord.com TABLE OF CONTENTS INTRODUCTION... 5 Overview... 5 About This Document... 5 GETTING STARTED... 6 Installation... 6 Starting Reporter...

More information

Rich Text Editor with Logger Requirements 1.0 Author: Daniel Riegelhaupt

Rich Text Editor with Logger Requirements 1.0 Author: Daniel Riegelhaupt Rich Text Editor with Logger Requirements 1.0 Author: Daniel Riegelhaupt This document describes the first version of system requirements for a simple rich text editor. For this specific assignment an

More information

Microsoft Word Part I Reference Manual

Microsoft Word Part I Reference Manual Microsoft Word 2002 Part I Reference Manual Instructor: Angela Sanderson Computer Training Coordinator Updated by: Angela Sanderson January 11, 2003 Prepared by: Vi Johnson November 20, 2002 THE WORD SCREEN

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

MPLAB Harmony Help - MPLAB Harmony Graphics Composer User's Guide

MPLAB Harmony Help - MPLAB Harmony Graphics Composer User's Guide MPLAB Harmony Help - MPLAB Harmony Graphics Composer User's Guide MPLAB Harmony Integrated Software Framework v1.11 2013-2017 Microchip Technology Inc. All rights reserved. MPLAB Harmony Graphics Composer

More information

Designer Reference 1

Designer Reference 1 Designer Reference 1 Table of Contents USE OF THE DESIGNER...4 KEYBOARD SHORTCUTS...5 Shortcuts...5 Keyboard Hints...5 MENUS...7 File Menu...7 Edit Menu...8 Favorites Menu...9 Document Menu...10 Item Menu...12

More information

Word Tips & Tricks. Status Bar. Add item to Status Bar To add an itme to the status bar, click on the item and a checkmark will display.

Word Tips & Tricks. Status Bar. Add item to Status Bar To add an itme to the status bar, click on the item and a checkmark will display. Status Bar The status bar is located on the bottom of the Microsoft Word window. The status bar displays information about the document such as the current page number, the word count in the document,

More information

KEYBOARD SHORTCUTS AND HOT KEYS

KEYBOARD SHORTCUTS AND HOT KEYS KEYBOARD SHORTCUTS AND HOT KEYS Page 1 This document is devoted to using the keyboard instead of the mouse to perform tasks within applications. This list is by no means the "be all and end all". There

More information

ESSENTIAL LibreOffice Tutorials for Teachers

ESSENTIAL LibreOffice Tutorials for Teachers ESSENTIAL LibreOffice Tutorials for Teachers by Bernard John Poole Associate Professor Emeritus University of Pittsburgh at Johnstown Johnstown, PA, USA Copyright Bernard John Poole, 2016 All rights reserved

More information

DIGITAL UNIX. Common Desktop Environment: Application Builder User s Guide. Digital Equipment Corporation Maynard, Massachusetts

DIGITAL UNIX. Common Desktop Environment: Application Builder User s Guide. Digital Equipment Corporation Maynard, Massachusetts DIGITAL UNIX Common Desktop Environment: Application Builder User s Guide Order Number: AA-QTM1A-TE March 1996 Product Version: DIGITAL UNIX Version 4.0 or higher Digital Equipment Corporation Maynard,

More information

ACT-R Environment Manual

ACT-R Environment Manual Working Draft Dan Bothell Table of Contents Table of Contents...2 Preface...3 Introduction...4 Running the Environment...6 Environment Overview...9 Current Model...11 Model...13 Control...15 Current Data...30

More information

Index. borders adding to cells, 174 draw border line tool, using to add, 175

Index. borders adding to cells, 174 draw border line tool, using to add, 175 Index A A4 size paper, 289 absolute references, 128 accounting number format style, 158 add-ins content, explained, 138 downloading from the office store, 140 task pane, explained, 138 uses of, 138 alignment

More information

Software Trajexia Studio USER MANUAL

Software Trajexia Studio USER MANUAL Cat No. I56E-EN-01 Software Trajexia Studio USER MANUAL Notice OMRON products are manufactured for use by a trained operator and only for the purposes described in this manual. The following conventions

More information

10 Connector Designer

10 Connector Designer PRELIMINARY Connector Designer 10-1 10 Connector Designer About this Section In this section you will learn how to create your own custom connectors and edit them using the optional software connector

More information

ECDL Module 6 REFERENCE MANUAL

ECDL Module 6 REFERENCE MANUAL ECDL Module 6 REFERENCE MANUAL Presentation Microsoft PowerPoint XP Edition for ECDL Syllabus Four PAGE 2 - ECDL MODULE 6 (USING POWERPOINT XP) - MANUAL 6.1 GETTING STARTED... 4 6.1.1 FIRST STEPS WITH

More information

The content editor has two view modes: simple mode and advanced mode. Change the view in the upper-right corner of the content editor.

The content editor has two view modes: simple mode and advanced mode. Change the view in the upper-right corner of the content editor. Content Editor The content editor allows you to add and format text, insert equations and hyperlinks, tables, and attach different types of files to content. The editor appears throughout the system as

More information

Free Microsoft Office 2010 training from MedCerts. Course Outline

Free Microsoft Office 2010 training from MedCerts. Course Outline Free Microsoft Office 2010 training from MedCerts Course Outline Microsoft Office Word 2010: Basic Course Introduction Unit 01 - Getting Started Topic A: The Word Window The Word 2010 Window Demo - A-1:

More information

COPYRIGHTED MATERIAL PHOTOSHOP WORKSPACE. Interface Overview 3. Menus 15. The Toolbox 29. Palettes 61. Presets and Preferences 83 WEB TASKS

COPYRIGHTED MATERIAL PHOTOSHOP WORKSPACE. Interface Overview 3. Menus 15. The Toolbox 29. Palettes 61. Presets and Preferences 83 WEB TASKS PHOTOSHOP WORKSPACE CHAPTER 1 Interface Overview 3 CHAPTER 2 Menus 15 CHAPTER 3 The Toolbox 29 CHAPTER 4 Palettes 61 CHAPTER 5 Presets and Preferences 83 COPYRIGHTED MATERIAL PHOTOSHOP WORK SPACE UNIVERSAL

More information

Save Forum Messages will be sent and Pages will be completed by pressing this Save button.

Save Forum Messages will be sent and Pages will be completed by pressing this Save button. I. TEXT EDITOR DIAGRAM 1 2 3 4 5 6 7 8 9 0 - = q w 1 Source Embed source code for YouTube videos, Smileboxes, etc. This button acts as a toggle switch. Click Source to open the screen on which to paste

More information

SURVEYOR/400. Users Guide. Copyright , LINOMA SOFTWARE LINOMA SOFTWARE is a division of LINOMA GROUP, Inc.

SURVEYOR/400. Users Guide. Copyright , LINOMA SOFTWARE LINOMA SOFTWARE is a division of LINOMA GROUP, Inc. SURVEYOR/400 Users Guide Copyright 1996-2013, LINOMA SOFTWARE LINOMA SOFTWARE is a division of LINOMA GROUP, Inc. Surveyor/400 version: 4.0.0 Publication date: August 7 th, 2013 Table of Contents SURVEYOR/400

More information

South Dakota Department of Transportation January 10, 2014

South Dakota Department of Transportation January 10, 2014 South Dakota Department of Transportation January 10, 2014 USER GUIDE FOR ELECTRONIC PLANS REVIEW AND PDF DOCUMENT REQUIREMENTS FOR CONSULTANTS Contents Page(s) What Is A Shared Electronic Plan Review

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

OPTOTERMINAL QLARITY FOUNDRY USER'S MANUAL REVISION 2.5

OPTOTERMINAL QLARITY FOUNDRY USER'S MANUAL REVISION 2.5 OPTOTERMINAL QLARITY FOUNDRY USER'S MANUAL REVISION 2.5 Opto 22 43044 Business Park Drive Temecula, CA 92590-3614 USA Phone 800.321.OPTO (6786) or 951.695.3000 Fax 800.832OPTO (6786) or 951.695.2712 Email:

More information

Excel for Dummies: Quick Reference

Excel for Dummies: Quick Reference Excel for Dummies: Quick Reference Walkenbach, John ISBN-13: 9780764539879 Table of Contents The Big Picture: Microsoft Office Excel 2003. What You See: The Excel Window. What You See: Dialog Boxes. Toolbar

More information

Tutorial 2 - Welcome Application Introducing, the Visual Studio.NET IDE

Tutorial 2 - Welcome Application Introducing, the Visual Studio.NET IDE 1 Tutorial 2 - Welcome Application Introducing, the Visual Studio.NET IDE Outline 2.1 Test-Driving the Welcome Application 2.2 Overview of the Visual Studio.NET 2003 IDE 2.3 Creating a Project for the

More information

Forms iq Designer Training

Forms iq Designer Training Forms iq Designer Training Copyright 2008 Feith Systems and Software, Inc. All Rights Reserved. No part of this publication may be reproduced, transmitted, stored in a retrieval system, or translated into

More information

For more tips on using this workbook, press F1 and click More information about this template.

For more tips on using this workbook, press F1 and click More information about this template. Excel: Menu to ribbon reference To view Office 2003 menu and toolbar commands and their Office 2010 equivalents, click a worksheet tab at the bottom of the window. If you don't see the tab you want, right-click

More information

Quick Reference Card Business Objects Toolbar Design Mode

Quick Reference Card Business Objects Toolbar Design Mode Icon Description Open in a new window Pin/Unpin this tab Close this tab File Toolbar New create a new document Open Open a document Select a Folder Select a Document Select Open Save Click the button to

More information

The Institute for the Future of the Book presents. Sophie. Help. 24 June 2008 Sophie 1.0.3; build 31

The Institute for the Future of the Book presents. Sophie. Help. 24 June 2008 Sophie 1.0.3; build 31 The Institute for the Future of the Book presents Sophie Help 1 24 June 2008 Sophie 1.0.3; build 31 1. Contents Working with Sophie 4 Sophie s interface 4 Halos and HUDs 4 Flaps, tabs, and palettes 9 The

More information

Zend Studio 3.0. Quick Start Guide

Zend Studio 3.0. Quick Start Guide Zend Studio 3.0 This walks you through the Zend Studio 3.0 major features, helping you to get a general knowledge on the most important capabilities of the application. A more complete Information Center

More information

Unit Microsoft Word. Microsoft Word is the word processor included in Office. Word is one of the most popular word processors.

Unit Microsoft Word. Microsoft Word is the word processor included in Office. Word is one of the most popular word processors. Unit 4 1. Microsoft Word. Microsoft Word is the word processor included in Office. Word is one of the most popular word processors. Unformatted text documents have the extension TXT. Word documents have

More information

Insight: Measurement Tool. User Guide

Insight: Measurement Tool. User Guide OMERO Beta v2.2: Measurement Tool User Guide - 1 - October 2007 Insight: Measurement Tool User Guide Open Microscopy Environment: http://www.openmicroscopy.org OMERO Beta v2.2: Measurement Tool User Guide

More information

Bombardier Business Aircraft Customer Services. Technical Publications. SmartPubs Viewer 3.0 User Guide. Updated January 2013 [2013]

Bombardier Business Aircraft Customer Services. Technical Publications. SmartPubs Viewer 3.0 User Guide. Updated January 2013 [2013] Bombardier Business Aircraft Customer Services Technical Publications SmartPubs Viewer 3.0 User Guide Updated January 2013 [2013] Table of Contents Application Views... 5 Collection View... 5 Manual View...

More information

Free Form Text Page Wizard: Version 9.3

Free Form Text Page Wizard: Version 9.3 Free Form Text Page Wizard: Version 9.3 Think of the free form page as a word processing document. You can do almost anything with it, including custom designed pages and native HTML documents. The Free

More information

CHAPTER 1 COPYRIGHTED MATERIAL. Getting to Know AutoCAD. Opening a new drawing. Getting familiar with the AutoCAD and AutoCAD LT Graphics windows

CHAPTER 1 COPYRIGHTED MATERIAL. Getting to Know AutoCAD. Opening a new drawing. Getting familiar with the AutoCAD and AutoCAD LT Graphics windows CHAPTER 1 Getting to Know AutoCAD Opening a new drawing Getting familiar with the AutoCAD and AutoCAD LT Graphics windows Modifying the display Displaying and arranging toolbars COPYRIGHTED MATERIAL 2

More information

Content App Guide. Blackboard Web Community Manager

Content App Guide. Blackboard Web Community Manager Content App Guide Blackboard Web Community Manager Trademark Notice Blackboard, the Blackboard logos, and the unique trade dress of Blackboard are the trademarks, service marks, trade dress and logos of

More information