SlickEdit Gadgets. SlickEdit Gadgets

Size: px
Start display at page:

Download "SlickEdit Gadgets. SlickEdit Gadgets"

Transcription

1 SlickEdit Gadgets As a programmer, one of the best feelings in the world is writing something that makes you want to call your programming buddies over and say, This is cool! Check this out. Sometimes it happens while developing a prototype or proof of concept. Sometimes it s just a crazy idea you decided to experiment with. We have these moments at SlickEdit too, and decided to gather some of them up and put them out there for others to use. We call these SlickEdit Gadgets. Some of the gadgets provide useful utilities and some of them are just for fun. We hope that as you go through these, at least one of them will make you want to call your office mates over to check it out. Feel free to stop by the Slick Edit Tools forum as well, to discuss the gadgets, and find out new and interesting ways to use them. If you re interested in additional utilities like SlickEdit Gadgets, check out the SlickEdit Tools for Visual Studio 2005 product. 1

2 Contents Installation Note...3 The Command Spy...4 How does it work?... 4 The toolbar... 5 The Data Object Analyzer...6 How does it work?... 6 Auto-Generating Data Format Handlers... 7 The toolbar... 7 File Explorer...8 How does it work?... 8 Saving favorite folders... 8 The toolbar... 9 Editor Gadgets...10 How does it work? Line ruler Indentation guide Auto-copy selection Editor graphics Configuration Line ruler Indentation guide Auto-copy selection Editor Graphic Performance Graphic Recommendations The SLOC Report...16 How does it work?

3 Installation Note If you already have SlickEdit Tools installed, then a SlickEdit Gadgets sub-menu will appear in the SlickEdit menu, as shown in the following screen capture: If you don t have SlickEdit Tools installed, then the individual gadgets will appear beneath a top level SlickEdit menu, as shown in the following screen capture: All menu references for the gadgets will be shown as SlickEdit > [name] where [name] is the gadget s menu text. 3

4 The Command Spy Whenever you click on a menu item or toolbar button in Visual Studio, you are executing what is known as a command. Commands may be executed in one of three ways: By clicking on a menu item or toolbar button linked to that command By pressing a key sequence, such as Ctrl+F By typing it directly in the Command Window Unfortunately, it s almost impossible to tell what command is linked to which menu items or toolbar buttons. Sometimes you execute commands in Visual Studio and you don t even know it. For instance, pressing the right arrow button in an editor invokes the Edit.CharRight command. The Command Spy monitors command execution and allows you to see exactly what commands you ve run, how many times you ve run them and what key bindings are used to invoke those commands. The main purpose of this tool is to allow you to learn what commands are bound to which keystrokes, so that you can code faster within the IDE. How does it work? You can show the Command Spy by clicking SlickEdit > Command Spy. This will bring up the following tool window. Any time you execute a Visual Studio command, it shows up as an entry in the Command Spy. Each command has a single entry and when a command has been executed more than once, its count field is incremented. From the screen capture, you can see that five different commands have been executed and that Edit.CharRight has been executed twice. Each entry has the following fields: Command Name - The name of the command. This is the name that may be typed into the Command Window to execute the command. Count - The number of times the command has been executed while the Command Spy has been active. Key Binding - The key bindings that execute that command. Timestamp - The last time the command was executed. Each entry also has an associated icon, which has the following meaning: The green Check Mark icon means that the command has a key binding. The yellow Exclamation Mark icon means that the command doesn t have a key binding. The red X icon means that the command doesn t have a key binding and has been called ten or more times. You can also sort any of the fields by clicking on their column headers. Click them multiple times to toggle between sorting in ascending and descending order. This allows you to see information 4

5 such as the most frequently executed commands (sort the Count column) or the last executed commands (sort the Timestamp field). Again, the main purpose of this tool is to allow you to learn what commands are bound to which keystrokes, so that you can code faster within the IDE. Looking at the screen capture, it s clear that there is no key binding to open the Options dialog. If Tools.Options is a commonly executed command, then a key binding should be assigned to it so that you don t have to hunt for it in the menu whenever you want to open it. To learn how to assign key bindings to commands, please review the toolbar information below. The toolbar The Command Spy toolbar can be seen in the following screen capture. 1. Go to key bindings - Invokes the Tools > Options dialog and goes directly to the key bindings page. From here, you can bind a key combination to any command. 2. Execute command - Executes the currently selected command. 3. Restore session data - Allows you to load the data captured by the Command Spy from your last saved session. 4. Save session data - Allows you to save the current data captured by the Command Spy. 5. Clear session data - Clears all entries from the Command Spy. 6. Show key binding summary file - Creates a text file of the session data with all of the commands and key bindings. Printing this file is extremely useful in helping you to remember particularly useful key bindings. 5

6 The Data Object Analyzer Drag-and-drop operations and clipboard operations both work with objects that implement the IDataObject interface. Data objects contain [1...n] data items, which may be of any type, and are stored with an associated string-based key. There are some standards about what key/data pairs are used in clipboard or drag-and-drop operations, but for the most part, applications add whatever data they want. If you re writing an application that requires clipboard or drag-and-drop integration, it is important to understand what data is expected from other applications. The Data Object Analyzer solves this problem by inspecting the contents of any clipboard operation, or drag-and-drop operation, from any other application. The Data Object Analyzer can then be used to automatically generate functions to handle any clipboard or drag-and-drop data. How does it work? You can show the Data Object Analyzer by clicking SlickEdit > Data Object Analyzer. This will bring up the following tool window. The tool window is wired to inspect data objects in one of two ways: 1. Copying anything to the clipboard - The tool window registers itself for clipboard updates. Whenever any application copies something to the clipboard, the tool window automatically retrieves it and lists the data items. You can optionally turn off this behavior. 2. Dragging and dropping - The list view area of the tool window is a universal drop target. You can drag any item from any application and drop it onto the list view, and the tool window automatically enumerates the data items stored in the dropped item. Once a data object is inspected, its data contents are displayed in the tool window s list view. Each entry in the list has the following fields: Format - The key (or name) used to retrieve the particular data item from the data object. Data Type - The data type of the object returned by the data object, given the format. Size - The size in bytes of the data. Once the Data Object Analyzer lists the formats stored in the data object, there are several ways to view each individual data item. 6

7 1. Single-clicking on a line item will populate the lower pane with the associated data. 2. Double-clicking on a line item will open the data in a Visual Studio editor. You can also do this by selecting a line item and clicking the View data in editor window button. 3. You may select a line item and click the Save selected data to file toolbar button. Auto-Generating Data Format Handlers You may auto-generate a handler for any data format in the list view. To do this, open the code file that you want the handler to be added to. This code file must contain at least one class. Select the data format you want to handle and click the Generate handler for data format toolbar button. A function will be added to the first class in the active code window. The function will take an IDataObject parameter and return the value of the selected format, given its key and data type. This provides a way to take an IDataObject reference and retrieve the data you need to handle. This functionality works with C#, VB.Net, and managed C++. The toolbar The Data Object Analyzer toolbar can be seen in the following screen capture. 1. Toggle listening for clipboard events - Toggles whether or not the tool window should inspect clipboard data automatically. If the toolbar button is boxed (as shown in the toolbar screen capture), then it is active, otherwise it is not. 2. Save selected data to file - Opens the Save Data dialog and saves the selected data format to the selected file name. 3. Generate handler for data format - If a code editor is open and active, clicking this button will auto-generate a function to retrieve the selected data format from a data object. 4. View data in editor window - Creates a new editor window in Visual Studio and displays the contents of the selected data format. This is particularly useful for binary data items. 7

8 File Explorer Using Visual Studio s Open File dialog to open files in Visual Studio can be very tedious, especially when you have to open files from several different directories. The File Explorer provides an easy way to open solutions, projects, or single files in Visual Studio. It also makes it easy to drag-and-drop files into an open Visual Studio project. How does it work? You can show File Explorer by clicking SlickEdit > File Explorer. This will bring up the following tool window. By default, the tool window is placed as a tabbed document. The interface is extremely similar to the Windows Explorer. The file list pane may be sorted by any of the fields in ascending or descending order. Double clicking on a file will open it in Visual Studio. You may also drag-and-drop one or more files into the solution hierarchy to add them to any project. Saving favorite folders File Explorer allows you to save your favorite folders so that you can easily return to them. To do this, browse to one of your favorite folders, select it, and click the Add favorite toolbar button. You will be prompted with the following dialog: Enter a name for the favorite and click OK to add it. The favorite will be added to the Favorites drop-down list on the toolbar and may be navigated to at any time. Favorites may be removed by clicking the Remove favorites toolbar button. You will be prompted with the following dialog: 8

9 Check the favorites that you want to remove and click the Remove button to take them out of the favorites drop-down list. The toolbar The File Explorer toolbar can be seen in the following screen capture. 1. List view - Lists the files in small icon list mode. 2. Details view - Lists the files with associated file details. 3. Icon view - Lists the files in large icon list mode. 4. Add favorite - Adds a favorite entry to the currently selected folder. 5. Remove favorites - Allows you to remove one or more favorites. 6. Favorites drop-down list - A drop-down list of all stored favorites. 9

10 Editor Gadgets Editor Gadgets is a collection of four small utilities to add spice to your Visual Studio editor. These gadgets include: Line ruler - Places a ruler highlight across your current line (where the cursor is) and has tick marks to indicate the editor s indentation levels. Indentation guide Draws a vertical bar in the editor indicating the indentation level of the current line. Auto-copy selection - Automatically copies text to the clipboard when selected with the mouse. Paste may be done by simply clicking in the editor with the middle mouse button (typically the scroll wheel on most mice). These behaviors are similar to XMouse. Editor Graphic - Allows you to add a graphic to your editor, either as a single image or as a tiled background. How does it work? Line ruler The line ruler is shown in the following screen capture: The line ruler highlights your current line. It optionally draws indentation tick marks which provide an easy way to see where the indentation levels are in your source code. The line ruler may be turned on or off, and may be configured using the SlickEdit > Editor Gadgets options page. 10

11 Indentation guide The indentation guide is shown in the following screen capture: The indentation guide draws a vertical dashed bar in the editor indicating the indentation level of the current line. The indentation guide always stays visible no matter how far away from the current line you scroll, so it provides an excellent way to match indentation levels for lines that are too far apart to view on the screen at one time. The indentation guide may be turned on or off, and may be configured using the SlickEdit > Editor Gadgets options page. Auto-copy selection When auto-copy selection is active, any selection made with the mouse will automatically be copied to the clipboard. An acknowledgement will appear in Visual Studio s status bar with the text, Copied text to clipboard. Copied text may be pasted anywhere by simply clicking the middle mouse button. Auto-copy selection may be turned on or off using the SlickEdit > Editor Gadgets options page. Editor graphics Editor graphics fall into two categories: Single graphic images - These graphics are rendered once in the editor window. They may be placed in any of eight different locations around the edge of your editor window. Repeating graphic tiles - This is basically wallpapering your editor. The selected graphic will be repeated vertically and horizontally to fill the editor window. All editor graphics may be locked in place or may be allowed to scroll within the editor. They may also be rendered opaque or with any degree of transparency. This feature may be turned on or off, and may be configured using the SlickEdit > Editor Gadgets options page. The following screen capture shows a single graphic image that s been locked into the bottom right corner of the editor. 11

12 The following screen capture shows a tiled green bar paper pattern. Repeating image tiles work well with subtle graphics and high transparency, which can be configured in the options page. Adding a graphic or ruler bar can be configured to look good for developers with black backgrounds as well, as shown in the following screen capture. 12

13 Configuration Editor Gadgets can be configured by selecting Tools > Options on the main menu and going to SlickEdit > Editor Gadgets in the options dialog tree. There are four tabs, one for each editor gadget. Line ruler Display line ruler - Sets whether or not the line ruler should be drawn. If this option is checked, then the border and fill colors of the ruler may be set by clicking on their respective color boxes. Display indentation tick marks - Sets whether or not indentation tick marks should be drawn. Indentation guide Display indentation guide - Sets whether or not the indentation guide should be drawn. If this option is checked, then the line color of the guide may be set by clicking on the Line color box. Animate - Sets whether or not the indentation guide should be animated. Animating the guide makes it move in a sweeping motion instead of just snapping to its new location. If this option is set, you may also set the speed drop-down box to a speed that looks best to you. 13

14 Auto-copy selection Enable auto-copy selection - Sets whether or not the auto-copy selection feature should be enabled. Editor Graphic Display an image in the editor - Sets whether or not the editor graphics feature should be enabled. If checked, you may click the Browse button to select a graphic file to display. See the Graphic Recommendations section for more information on selecting graphic files. o Tile / Position - If the Tile option is selected, then the selected graphic will be tiled across the whole editor. Otherwise, if the Position option is checked, then the graphic will be placed as selected in the Location drop-down list box. o Lock the image location - If checked, then the graphic will not be affected by scrolling in the editor. If unchecked, then the graphic will move as you scroll the editor. o Transparency - If checked, this option allows you to set the percentage of transparency for the graphic. Unchecking this option renders the graphic opaque. Valid transparency values are in the range or 5 through 95. The greater the value, the more transparent the graphic will be. Performance Enable animated GIFs - Sets whether or not GIF images with multiple frames should be animated. Animating GIF images requires more processing time. This option has no effect if the selected image is not a multi-frame GIF. Render editor text on top - Sets whether or not the editor text should be rendered on top of the editor gadgets or underneath. This option will have the most effect if you are tiling a bitmap in the editor. Rendering the editor text on top requires more processing time. 14

15 Graphic Recommendations The following recommendations will help you get the most from the editor graphics feature: The top left pixel is used to determine which color to make transparent. Performance will be enhanced by setting the graphic to a lower color depth. BMP, JPG, GIF, and PNG formats are supported. If you are tiling a graphic, it s recommended that you set the transparency to somewhere around 85% and render the editor text on top (see the Performance options tab). 15

16 The SLOC Report This tool provides an easy way to count the lines of code in a solution, project, or in an individual file. The line count is divided into three categories; code, comments, or whitespace. Once the lines of code have been counted, the results are drawn as a pie graph. How does it work? SLOC stands for Source Lines of Code. To generate a SLOC report, right click on any item in the Solution Explorer and select the Count lines of code command. If the selected item is a solution, then all lines of code in the solution will be counted. If the selected item is a project, then all lines of code in the project will be counted. If the selected item is a single file, then all lines of code in the file will be counted. The report counts SLOC using the following strategy: If a line is only a single line comment, it counts as a comment line If a line is part of a multi-line comment, it counts as a comment line If a line has one or less characters, then it is whitespace (this accounts for brace lines) If a line has two or more non-comment characters, it is a line of source code The following screen capture shows a SLOC report for the Enterprise Library. SLOC reports can count lines of code in VB, C#, J#, and C++. It does not parse HTML, XML, or ASPX files. 16

Libraries. Multi-Touch. Aero Peek. Sema Foundation 10 Classes 2 nd Exam Review ICT Department 5/22/ Lesson - 15

Libraries. Multi-Touch. Aero Peek. Sema Foundation 10 Classes 2 nd Exam Review ICT Department 5/22/ Lesson - 15 10 Classes 2 nd Exam Review Lesson - 15 Introduction Windows 7, previous version of the latest version (Windows 8.1) of Microsoft Windows, was produced for use on personal computers, including home and

More information

Part I. Integrated Development Environment. Chapter 2: The Solution Explorer, Toolbox, and Properties. Chapter 3: Options and Customizations

Part I. Integrated Development Environment. Chapter 2: The Solution Explorer, Toolbox, and Properties. Chapter 3: Options and Customizations Part I Integrated Development Environment Chapter 1: A Quick Tour Chapter 2: The Solution Explorer, Toolbox, and Properties Chapter 3: Options and Customizations Chapter 4: Workspace Control Chapter 5:

More information

To familiarize of 3ds Max user interface and adapt a workflow based on preferences of navigating Autodesk 3D Max.

To familiarize of 3ds Max user interface and adapt a workflow based on preferences of navigating Autodesk 3D Max. Job No: 01 Duration: 8H Job Title: User interface overview Objective: To familiarize of 3ds Max user interface and adapt a workflow based on preferences of navigating Autodesk 3D Max. Students should be

More information

Unit 21 - Creating a Navigation Bar in Macromedia Fireworks

Unit 21 - Creating a Navigation Bar in Macromedia Fireworks Unit 21 - Creating a Navigation Bar in Macromedia Fireworks Items needed to complete the Navigation Bar: Unit 21 - House Style Unit 21 - Graphics Sketch Diagrams Document ------------------------------------------------------------------------------------------------

More information

Using Windows 7 Explorer By Len Nasman, Bristol Village Computer Club

Using Windows 7 Explorer By Len Nasman, Bristol Village Computer Club By Len Nasman, Bristol Village Computer Club Understanding Windows 7 Explorer is key to taking control of your computer. If you have ever created a file and later had a hard time finding it, or if you

More information

Word 2007/10/13 1 Introduction

Word 2007/10/13 1 Introduction Objectives Word 2007/10/13 1 Introduction Understand the new Word 2007 Interface Navigate the Office button Learn about the Quick Access menu Navigate the Ribbon menu interface Understand the I-beam Learn

More information

2 The Stata user interface

2 The Stata user interface 2 The Stata user interface The windows This chapter introduces the core of Stata s interface: its main windows, its toolbar, its menus, and its dialogs. The five main windows are the Review, Results, Command,

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

USER GUIDE MADCAP CAPTURE 7. Getting Started

USER GUIDE MADCAP CAPTURE 7. Getting Started USER GUIDE MADCAP CAPTURE 7 Getting Started Copyright 2018 MadCap Software. All rights reserved. Information in this document is subject to change without notice. The software described in this document

More information

Managing Content with AutoCAD DesignCenter

Managing Content with AutoCAD DesignCenter Managing Content with AutoCAD DesignCenter In This Chapter 14 This chapter introduces AutoCAD DesignCenter. You can now locate and organize drawing data and insert blocks, layers, external references,

More information

XnView 1.9. a ZOOMERS guide. Introduction...2 Browser Mode... 5 Image View Mode...15 Printing Image Editing...28 Configuration...

XnView 1.9. a ZOOMERS guide. Introduction...2 Browser Mode... 5 Image View Mode...15 Printing Image Editing...28 Configuration... XnView 1.9 a ZOOMERS guide Introduction...2 Browser Mode... 5 Image View Mode...15 Printing... 22 Image Editing...28 Configuration... 36 Written by Chorlton Workshop for hsbp Introduction This is a guide

More information

Veco User Guides. Grids, Views, and Grid Reports

Veco User Guides. Grids, Views, and Grid Reports Veco User Guides Grids, Views, and Grid Reports Introduction A Grid is defined as being a list of data records presented to the user. A grid is shown generally when an option is selected from the Tree

More information

Let s Make a Front Panel using FrontCAD

Let s Make a Front Panel using FrontCAD Let s Make a Front Panel using FrontCAD By Jim Patchell FrontCad is meant to be a simple, easy to use CAD program for creating front panel designs and artwork. It is a free, open source program, with the

More information

Searching and Favorites in Datatel Web UI 4.3

Searching and Favorites in Datatel Web UI 4.3 Searching and Favorites in Datatel Web UI 4.3 Search Field The Search field uses icons and text prompts (see Figure 1) to switch between Person Search and Form Search. You can click the icon to the left

More information

Using Microsoft Word. Text Editing

Using Microsoft Word. Text Editing Using Microsoft Word A word processor is all about working with large amounts of text, so learning the basics of text editing is essential to being able to make the most of the program. The first thing

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

Using Microsoft Word. Paragraph Formatting. Displaying Hidden Characters

Using Microsoft Word. Paragraph Formatting. Displaying Hidden Characters Using Microsoft Word Paragraph Formatting Every time you press the full-stop key in a document, you are telling Word that you are finishing one sentence and starting a new one. Similarly, if you press

More information

Learning to use the drawing tools

Learning to use the drawing tools Create a blank slide This module was developed for Office 2000 and 2001, but although there are cosmetic changes in the appearance of some of the tools, the basic functionality is the same in Powerpoint

More information

Part II: Creating Visio Drawings

Part II: Creating Visio Drawings 128 Part II: Creating Visio Drawings Figure 5-3: Use any of five alignment styles where appropriate. Figure 5-4: Vertical alignment places your text at the top, bottom, or middle of a text block. You could

More information

Guide to User Interface 4.3

Guide to User Interface 4.3 Datatel Colleague Guide to User Interface 4.3 Release 18 June 24, 2011 For corrections and clarifications to this manual, see AnswerNet page 1926.37. Guide to User Interface 4.3 All Rights Reserved The

More information

Introduction to Microsoft Office 2007

Introduction to Microsoft Office 2007 Introduction to Microsoft Office 2007 What s New follows: TABS Tabs denote general activity area. There are 7 basic tabs that run across the top. They include: Home, Insert, Page Layout, Review, and View

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

Tutorial 01 Quick Start Tutorial

Tutorial 01 Quick Start Tutorial Tutorial 01 Quick Start Tutorial Homogeneous single material slope No water pressure (dry) Circular slip surface search (Grid Search) Intro to multi scenario modeling Introduction Model This quick start

More information

COPYRIGHTED MATERIAL. Using Adobe Bridge. Lesson 1

COPYRIGHTED MATERIAL. Using Adobe Bridge. Lesson 1 Lesson Using Adobe Bridge What you ll learn in this lesson: Navigating Adobe Bridge Using folders in Bridge Making a Favorite Creating metadata Using automated tools Adobe Bridge is the command center

More information

XnView Image Viewer. a ZOOMERS guide

XnView Image Viewer. a ZOOMERS guide XnView Image Viewer a ZOOMERS guide Introduction...2 Browser Mode... 5 Image View Mode...14 Printing... 22 Image Editing...26 Configuration... 34 Note that this guide is for XnView version 1.8. The current

More information

Anatomy of a Window (Windows 7, Office 2010)

Anatomy of a Window (Windows 7, Office 2010) Anatomy of a Window (Windows 7, Office 2010) Each window is made up of bars, ribbons, and buttons. They can be confusing because many of them are not marked clearly and rely only on a small symbol to indicate

More information

MockupScreens - User Guide

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

More information

Interactive Tourist Map

Interactive Tourist Map Adobe Edge Animate Tutorial Mouse Events Interactive Tourist Map Lesson 1 Set up your project This lesson aims to teach you how to: Import images Set up the stage Place and size images Draw shapes Make

More information

Photoshop tutorial: Final Product in Photoshop:

Photoshop tutorial: Final Product in Photoshop: Disclaimer: There are many, many ways to approach web design. This tutorial is neither the most cutting-edge nor most efficient. Instead, this tutorial is set-up to show you as many functions in Photoshop

More information

User Manual. Administrator s guide for mass managing VirtueMart products. using. VM Mass Update 1.0

User Manual. Administrator s guide for mass managing VirtueMart products. using. VM Mass Update 1.0 User Manual Administrator s guide for mass managing VirtueMart products using VM Mass Update 1.0 The ultimate product management solution for VirtueMart! Contents Product Overview... 3 Feature List...

More information

Using Microsoft Excel

Using Microsoft Excel Using Microsoft Excel Introduction This handout briefly outlines most of the basic uses and functions of Excel that we will be using in this course. Although Excel may be used for performing statistical

More information

Learning Guide for User Interface 4.3

Learning Guide for User Interface 4.3 Learning Guide for User Interface 4.3 This guide will help you learn how to use Datatel User Interface 4.3. It includes instructions for accomplishing various tasks, such as accessing a screen or mnemonic,

More information

Your familiar Windows, only better.

Your familiar Windows, only better. Your familiar Windows, only better. Your quick guide to Windows 8.1 Basics 2014 Microsoft Corporation. All rights reserved. This material is provided as-is, and for informational purposes only. Microsoft

More information

AutoCollage 2008 makes it easy to create an AutoCollage from a folder of Images. To create an AutoCollage:

AutoCollage 2008 makes it easy to create an AutoCollage from a folder of Images. To create an AutoCollage: Page 1 of 18 Using AutoCollage 2008 AutoCollage 2008 makes it easy to create an AutoCollage from a folder of Images. To create an AutoCollage: 1. Click on a folder name in the Image Browser. 2. Once at

More information

Lesson 6 Adding Graphics

Lesson 6 Adding Graphics Lesson 6 Adding Graphics Inserting Graphics Images Graphics files (pictures, drawings, and other images) can be inserted into documents, or into frames within documents. They can either be embedded or

More information

Microsoft Excel 2007

Microsoft Excel 2007 Learning computers is Show ezy Microsoft Excel 2007 301 Excel screen, toolbars, views, sheets, and uses for Excel 2005-8 Steve Slisar 2005-8 COPYRIGHT: The copyright for this publication is owned by Steve

More information

COPYRIGHTED MATERIAL. Making Excel More Efficient

COPYRIGHTED MATERIAL. Making Excel More Efficient Making Excel More Efficient If you find yourself spending a major part of your day working with Excel, you can make those chores go faster and so make your overall work life more productive by making Excel

More information

ADOBE DREAMWEAVER CS4 BASICS

ADOBE DREAMWEAVER CS4 BASICS ADOBE DREAMWEAVER CS4 BASICS Dreamweaver CS4 2 This tutorial focuses on the basic steps involved in creating an attractive, functional website. In using this tutorial you will learn to design a site layout,

More information

-Using Excel- *The columns are marked by letters, the rows by numbers. For example, A1 designates row A, column 1.

-Using Excel- *The columns are marked by letters, the rows by numbers. For example, A1 designates row A, column 1. -Using Excel- Note: The version of Excel that you are using might vary slightly from this handout. This is for Office 2004 (Mac). If you are using a different version, while things may look slightly different,

More information

Intermediate/Advanced. Faculty Development Workshop FSE Faculty retreat April 18, 2012

Intermediate/Advanced. Faculty Development Workshop FSE Faculty retreat April 18, 2012 Intermediate/Advanced Faculty Development Workshop FSE Faculty retreat April 18, 2012 Remote Desktop Sharing Quick Reference Guide for Moderators The Moderator or a Participant may request control of another

More information

Tabular Building Template Manager (BTM)

Tabular Building Template Manager (BTM) Tabular Building Template Manager (BTM) User Guide IES Vi rtual Environment Copyright 2015 Integrated Environmental Solutions Limited. All rights reserved. No part of the manual is to be copied or reproduced

More information

Microsoft PowerPoint Tutorial

Microsoft PowerPoint Tutorial Microsoft PowerPoint Tutorial Contents Starting MS PowerPoint... 1 The MS PowerPoint Window... 2 Title Bar...2 Office Button...3 Saving Your Work... 3 For the first time... 3 While you work... 3 Backing

More information

MS Word Basics. Groups within Tabs

MS Word Basics. Groups within Tabs MS Word Basics Instructor: Bev Alderman L e t s G e t S t a r t e d! Open and close MS Word Open Word from the desktop of your computer by Clicking on the Start>All programs>microsoft Office >Word 2010

More information

Chapter 5 Making Life Easier with Templates and Styles

Chapter 5 Making Life Easier with Templates and Styles Chapter 5: Making Life Easier with Templates and Styles 53 Chapter 5 Making Life Easier with Templates and Styles For most users, uniformity within and across documents is important. OpenOffice.org supports

More information

A Quick Tour GETTING STARTED WHAT S IN THIS CHAPTER?

A Quick Tour GETTING STARTED WHAT S IN THIS CHAPTER? 1 A Quick Tour WHAT S IN THIS CHAPTER? Installing and getting started with Visual Studio 2012 Creating and running your fi rst application Debugging and deploying an application Ever since software has

More information

Telerik Corp. Test Studio Standalone & Visual Studio Plug-In Quick-Start Guide

Telerik Corp. Test Studio Standalone & Visual Studio Plug-In Quick-Start Guide Test Studio Standalone & Visual Studio Plug-In Quick-Start Guide Contents Create your First Test... 3 Standalone Web Test... 3 Standalone WPF Test... 6 Standalone Silverlight Test... 8 Visual Studio Plug-In

More information

Display Systems International Software Demo Instructions

Display Systems International Software Demo Instructions Display Systems International Software Demo Instructions This demo guide has been re-written to better reflect the common features that people learning to use the DSI software are concerned with. This

More information

P3e REPORT WRITER CREATING A BLANK REPORT

P3e REPORT WRITER CREATING A BLANK REPORT P3e REPORT WRITER CREATING A BLANK REPORT 1. On the Reports window, select a report, then click Copy. 2. Click Paste. 3. Click Modify. 4. Click the New Report icon. The report will look like the following

More information

CounselLink Reporting. Designer

CounselLink Reporting. Designer CounselLink Reporting Designer Contents Overview... 1 Introduction to the Document Editor... 2 Create a new document:... 2 Document Templates... 3 Datasets... 3 Document Structure... 3 Layout Area... 4

More information

Specification Manager

Specification Manager Enterprise Architect User Guide Series Specification Manager Author: Sparx Systems Date: 30/06/2017 Version: 1.0 CREATED WITH Table of Contents The Specification Manager 3 Specification Manager - Overview

More information

SUGAR fx. Bubble Buddy User Manual

SUGAR fx. Bubble Buddy User Manual SUGAR fx Bubble Buddy User Manual Contents Contents Installation................................. 3 Bubble Buddy.............................. 4 Using Bubble Buddy....................... 5 Parameters................................

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

Instructions for Using the Databases

Instructions for Using the Databases Appendix D Instructions for Using the Databases Two sets of databases have been created for you if you choose to use the Documenting Our Work forms. One set is in Access and one set is in Excel. They are

More information

Tutorial 3D Max (for beginners) PART I

Tutorial 3D Max (for beginners) PART I Tutorial 3D Max (for beginners) PART I The Interface Introduction This tutorial gives a brief explanation of the MAX interface items commonly used and introduces you to the important areas of the interface.

More information

CHAPTER 1 COPYRIGHTED MATERIAL. Finding Your Way in the Inventor Interface

CHAPTER 1 COPYRIGHTED MATERIAL. Finding Your Way in the Inventor Interface CHAPTER 1 Finding Your Way in the Inventor Interface COPYRIGHTED MATERIAL Understanding Inventor s interface behavior Opening existing files Creating new files Modifying the look and feel of Inventor Managing

More information

Password Memory 7 User s Guide

Password Memory 7 User s Guide C O D E : A E R O T E C H N O L O G I E S Password Memory 7 User s Guide 2007-2018 by code:aero technologies Phone: +1 (321) 285.7447 E-mail: info@codeaero.com Table of Contents How secure is Password

More information

Introduction to Windows

Introduction to Windows Introduction to Windows Naturally, if you have downloaded this document, you will already be to some extent anyway familiar with Windows. If so you can skip the first couple of pages and move on to the

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

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

GSAK (Geocaching Swiss Army Knife) GEOCACHING SOFTWARE ADVANCED KLASS GSAK by C3GPS & Major134

GSAK (Geocaching Swiss Army Knife) GEOCACHING SOFTWARE ADVANCED KLASS GSAK by C3GPS & Major134 GSAK (Geocaching Swiss Army Knife) GEOCACHING SOFTWARE ADVANCED KLASS GSAK - 102 by C3GPS & Major134 Table of Contents About this Document... iii Class Materials... iv 1.0 Locations...1 1.1 Adding Locations...

More information

WORD (2010) TIPS & TRICKS. Gail Weiss

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

More information

PowerPoint 2016 Building a Presentation

PowerPoint 2016 Building a Presentation PowerPoint 2016 Building a Presentation What is PowerPoint? PowerPoint is presentation software that helps users quickly and efficiently create dynamic, professional-looking presentations through the use

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

How to...create a Video VBOX Gauge in Inkscape. So you want to create your own gauge? How about a transparent background for those text elements?

How to...create a Video VBOX Gauge in Inkscape. So you want to create your own gauge? How about a transparent background for those text elements? BASIC GAUGE CREATION The Video VBox setup software is capable of using many different image formats for gauge backgrounds, static images, or logos, including Bitmaps, JPEGs, or PNG s. When the software

More information

Getting Started. Microsoft QUICK Source 7

Getting Started. Microsoft QUICK Source 7 Microsoft QUICK Windows Source 7 Getting Started The Windows 7 Desktop u v w x u Icon links to a program, file, or folder that is stored on the desktop. v Shortcut Icon links to a program, file, or folder

More information

WORD 2010 TIP SHEET GLOSSARY

WORD 2010 TIP SHEET GLOSSARY GLOSSARY Clipart this term refers to art that is actually a part of the Word package. Clipart does not usually refer to photographs. It is thematic graphic content that is used to spice up Word documents

More information

Word - Basics. Course Description. Getting Started. Objectives. Editing a Document. Proofing a Document. Formatting Characters. Formatting Paragraphs

Word - Basics. Course Description. Getting Started. Objectives. Editing a Document. Proofing a Document. Formatting Characters. Formatting Paragraphs Course Description Word - Basics Word is a powerful word processing software package that will increase the productivity of any individual or corporation. It is ranked as one of the best word processors.

More information

ChemSense Studio Client Version 3.0.7

ChemSense Studio Client Version 3.0.7 Quick Start Guide: ChemSense Studio Client Version 3.0.7 January 5, 2005 Comments/Questions/Bug Report? E-mail: chemsense-contact@ctl.sri.com Background The ChemSense Studio Client software supports the

More information

Working with Charts Stratum.Viewer 6

Working with Charts Stratum.Viewer 6 Working with Charts Stratum.Viewer 6 Getting Started Tasks Additional Information Access to Charts Introduction to Charts Overview of Chart Types Quick Start - Adding a Chart to a View Create a Chart with

More information

Handout Objectives: a. b. c. d. 3. a. b. c. d. e a. b. 6. a. b. c. d. Overview:

Handout Objectives: a. b. c. d. 3. a. b. c. d. e a. b. 6. a. b. c. d. Overview: Computer Basics I Handout Objectives: 1. Control program windows and menus. 2. Graphical user interface (GUI) a. Desktop b. Manage Windows c. Recycle Bin d. Creating a New Folder 3. Control Panel. a. Appearance

More information

Introduction to Microsoft Excel 2010

Introduction to Microsoft Excel 2010 Introduction to Microsoft Excel 2010 This class is designed to cover the following basics: What you can do with Excel Excel Ribbon Moving and selecting cells Formatting cells Adding Worksheets, Rows and

More information

New Finance Officer & Staff Training

New Finance Officer & Staff Training New Finance Officer & Staff Training Overview MUNIS includes many programs and tools to allow for the management of the District financials. As newer finance officers and staff, you are charged with understanding,

More information

Adobe Dreamweaver CS5 Tutorial

Adobe Dreamweaver CS5 Tutorial Adobe Dreamweaver CS5 Tutorial GETTING STARTED This tutorial focuses on the basic steps involved in creating an attractive, functional website. In using this tutorial you will learn to design a site layout,

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

PowerPoint Tips and Tricks

PowerPoint Tips and Tricks PowerPoint Tips and Tricks Viewing Your Presentation PowerPoint provides multiple ways to view your slide show presentation. You can access these options either through a toolbar on your screen or by pulling

More information

Remodeling Your Office A New Look for the SAS Add-In for Microsoft Office

Remodeling Your Office A New Look for the SAS Add-In for Microsoft Office Paper SAS1864-2018 Remodeling Your Office A New Look for the SAS Add-In for Microsoft Office ABSTRACT Tim Beese, SAS Institute Inc., Cary, NC Millions of people spend their weekdays in an office. Occasionally

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

Microsoft Excel 2007 Lesson 7: Charts and Comments

Microsoft Excel 2007 Lesson 7: Charts and Comments Microsoft Excel 2007 Lesson 7: Charts and Comments Open Example.xlsx if it is not already open. Click on the Example 3 tab to see the worksheet for this lesson. This is essentially the same worksheet that

More information

Frequency tables Create a new Frequency Table

Frequency tables Create a new Frequency Table Frequency tables Create a new Frequency Table Contents FREQUENCY TABLES CREATE A NEW FREQUENCY TABLE... 1 Results Table... 2 Calculate Descriptive Statistics for Frequency Tables... 6 Transfer Results

More information

Using Microsoft Word. Table of Contents

Using Microsoft Word. Table of Contents Using Microsoft Word Table of Contents The Word Screen... 2 Document View Buttons... 2 Selecting Text... 3 Using the Arrow Keys... 3 Using the Mouse... 3 Line Spacing... 4 Paragraph Alignment... 4 Show/Hide

More information

Working with Pages... 9 Edit a Page... 9 Add a Page... 9 Delete a Page Approve a Page... 10

Working with Pages... 9 Edit a Page... 9 Add a Page... 9 Delete a Page Approve a Page... 10 Land Information Access Association Community Center Software Community Center Editor Manual May 10, 2007 - DRAFT This document describes a series of procedures that you will typically use as an Editor

More information

Microsoft PowerPoint 2013 Beginning

Microsoft PowerPoint 2013 Beginning Microsoft PowerPoint 2013 Beginning PowerPoint Presentations on the Web... 2 Starting PowerPoint... 2 Opening a Presentation... 2 File Tab... 3 Quick Access Toolbar... 3 The Ribbon... 4 Keyboard Shortcuts...

More information

Desktop Studio: Charts

Desktop Studio: Charts Desktop Studio: Charts Intellicus Enterprise Reporting and BI Platform Intellicus Technologies info@intellicus.com www.intellicus.com Working with Charts i Copyright 2011 Intellicus Technologies This document

More information

Session 7 MS Word. Graphics. Inserting Clipart, and Graphics Modify graphics Position graphics

Session 7 MS Word. Graphics. Inserting Clipart, and Graphics Modify graphics Position graphics Session 7 MS Word Graphics Inserting Clipart, and Graphics Modify graphics Position graphics Table of Contents Session 7 Working with Graphics... 1 The Toolbar... 1 Drawing Toolbar... 1 Picture Toolbar...

More information

What s New in Cognos. Cognos Analytics Participant s Guide

What s New in Cognos. Cognos Analytics Participant s Guide What s New in Cognos Cognos Analytics Participant s Guide Welcome to What s New in Cognos! Illinois State University has undergone a version upgrade of IBM Cognos to Cognos Analytics. All functionality

More information

A Step-by-step guide to creating a Professional PowerPoint Presentation

A Step-by-step guide to creating a Professional PowerPoint Presentation Quick introduction to Microsoft PowerPoint A Step-by-step guide to creating a Professional PowerPoint Presentation Created by Cruse Control creative services Tel +44 (0) 1923 842 295 training@crusecontrol.com

More information

Getting Started Guide

Getting Started Guide SnagIt Getting Started Guide Welcome to SnagIt Thank you for your purchase of SnagIt. SnagIt is the premier application to use for all of your screen capturing needs. Whatever you can see on your screen,

More information

Creating a Template in WordPerfect

Creating a Template in WordPerfect 1. File a. New From Project Creating a Template in WordPerfect b. Go to Options 2. Create A Category 1 3. Name it Family History (or a title of your choice) 4. Find Family History in the Drop down list

More information

Introduction to IBM Rational HATS For IBM System i (5250)

Introduction to IBM Rational HATS For IBM System i (5250) Introduction to IBM Rational HATS For IBM System i (5250) Introduction to IBM Rational HATS 1 Lab instructions This lab teaches you how to use IBM Rational HATS to create a Web application capable of transforming

More information

Desktop Studio: Charts. Version: 7.3

Desktop Studio: Charts. Version: 7.3 Desktop Studio: Charts Version: 7.3 Copyright 2015 Intellicus Technologies This document and its content is copyrighted material of Intellicus Technologies. The content may not be copied or derived from,

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

INTViewer Tutorial Cube Tutorial

INTViewer Tutorial Cube Tutorial INTViewer Tutorial Cube Tutorial This tutorial shows how to use INTViewer to display a seismic cube stored in a Seismic file. Windows created will include INLINE, XLINE, Time Slice and an arbitrary traverse,

More information

Working with the RTF Generator

Working with the RTF Generator Using EA Working with the RTF Generator by Dermot O Bryan All material Sparx Systems 2008 Sparx Systems 2008 Page 1 Trademarks Microsoft, Microsoft Word are trademarks or registered trademarks of the Microsoft

More information

Basic Microsoft Excel 2007

Basic Microsoft Excel 2007 Basic Microsoft Excel 2007 Contents Starting Excel... 2 Excel Window Properties... 2 The Ribbon... 3 Tabs... 3 Contextual Tabs... 3 Dialog Box Launchers... 4 Galleries... 5 Minimizing the Ribbon... 5 The

More information

NSCC SUMMER LEARNING SESSIONS MICROSOFT OFFICE SESSION

NSCC SUMMER LEARNING SESSIONS MICROSOFT OFFICE SESSION NSCC SUMMER LEARNING SESSIONS MICROSOFT OFFICE SESSION Module 1 Using Windows Welcome! Microsoft Windows is an important part of everyday student life. Whether you are logging onto an NSCC computer or

More information

Stamina Software Pty Ltd. TRAINING MANUAL Viságe Reporter

Stamina Software Pty Ltd. TRAINING MANUAL Viságe Reporter Stamina Software Pty Ltd TRAINING MANUAL Viságe Reporter Version: 2 21 st January 2009 Contents Introduction...1 Assumed Knowledge...1 Pre Planning...1 Report Designer Location...2 Report Designer Screen

More information

The American University in Cairo. Academic Computing Services. Word prepared by. Soumaia Ahmed Al Ayyat

The American University in Cairo. Academic Computing Services. Word prepared by. Soumaia Ahmed Al Ayyat The American University in Cairo Academic Computing Services Word 2000 prepared by Soumaia Ahmed Al Ayyat Spring 2001 Table of Contents: Opening the Word Program Creating, Opening, and Saving Documents

More information

Promo Buddy 2.0. Internet Marketing Database Software (Manual)

Promo Buddy 2.0. Internet Marketing Database Software (Manual) Promo Buddy 2.0 Internet Marketing Database Software (Manual) PromoBuddy has been developed by: tp:// INTRODUCTION From the computer of Detlev Reimer Dear Internet marketer, More than 6 years have passed

More information

Reading: Managing Files in Windows XP

Reading: Managing Files in Windows XP Student Resource 13.4a Reading: Managing Files in Windows XP Directions: All recent versions of Windows (XP, Vista, Windows 7) have fairly similar ways of managing files, but their graphic user interfaces

More information

Copyright 2018 MakeUseOf. All Rights Reserved.

Copyright 2018 MakeUseOf. All Rights Reserved. 15 Power User Tips for Tabs in Firefox 57 Quantum Written by Lori Kaufman Published March 2018. Read the original article here: https://www.makeuseof.com/tag/firefox-tabs-tips/ This ebook is the intellectual

More information