PeDAL Tutorial. Compiled by: Eric Miller. PeDAL Tutorial

Size: px
Start display at page:

Download "PeDAL Tutorial. Compiled by: Eric Miller. PeDAL Tutorial"

Transcription

1 Compiled by: Eric Miller Phoenix Analysis & Design Technologies 7755 S Research Dr, Suite110 Tempe, AZ PADT info@padtinc.com 1

2 Just like the APDL language it was designed to edit, the PeDAL editor is very simple and straightforward, but if you dig deeper into it you will find many ways to be more efficient. In this tutorial we will mostly cover the basics of how to create APDL macros in PeDAL, and use the integrated help. At the end we will look at some of the more advanced features. We will be using examples from PADT's "Introduction to the ANSYS Parametric Design Language" book. Getting Started To begin we will be typing in bracket1.mac from "Introduction to the ANSYS Parametric Design Language" We will type in the whole thing to get some practice with the interface. 1. From the Windows Start m menu select PADT, Inc>PeDAL X64. You should see: 2. Note the text editor in the left window and the browser, with the online PeDAL help on the right. 3. To get warmed up we are going to slowly type the first command, finish, and see what the interface does. Click in the text editor window and type in the first letter of the first line for the macro: f F is a command (force) so it shows you the syntax for that command and the one line description: 2

3 4. Now type the i. The interface searches for valid APDL commands and shows you a list with the first "fi" command highlighted. 5. Type in the n and it will highlight "finish" You can press the TAB key and PeDAL will insert "finish" You can also type in a comma (,) and it will also use the currently selected keyword. 6. Press Enter to go to the next line and notice two things: Finish is highlighted in a burnt orange color. This is because the default color for a "processor" command is set to that color. Line numbers are now being placed next to the lines as you type (1 and 2). 3

4 7. Enter in the next two lines: /clear then /prep7. Note that it still shows you choices as you type and when you enter the full command, it shows the syntax and short description. /clear is blue, the color of a standard command, and /prep7 is burnt orange because it changes the processor. 8. Next we are going to type in a bunch of keypoint coordinates. But since this is the first time we are doing more than just the keyword, just do the first one by itself: k,1,0,0,0 9. As you type in the first line (k,1,0,0,0) note that the syntax clue shows you what argument you are currently entering. 4

5 This is one of the most useful features in PeDAL because it is almost impossible to remember all the arguments to a command, but with the prompting you get enough information to enter the command correctly without having to consult the manual. 10. Enter in the rest of the keypoints: k,2,0.25,0,0 k,3,0.25,4-.25,0 k,4,3,4-.25,0 k,5,3,4,0 k,6,0,4,0 11. Note that the keyword is highlighted blue and the numbers are in beige. 12. What if you type in a keyword that is not a command? Type in nmcmp,all, instead of the correct command, numcmp,all. Note that the keyword is black instead of blue. This tells you that PeDAL does not recognize the command. 5

6 13. Delete that line by clicking on the 10 to highlight the whole line, then press the delete key or use the Right Mouse Button and select "delete". You have just done 50% of what you will use PeDAL for. Typing in commands and using the lookup and syntax prompting to help you be more accurate and efficient. Creating a Simple Macro We are going to now finish typing in the macro. Don't worry about formatting and such right now, we will come back and clean it up a little. Simply get used to using PeDAL by typing in these simple commands. Look at the syntax prompting, and the way the program colors your text and make sure that your keywords are all blue, numbers are beige, and text values are black. 1. Type in the following lines: l,1,6 l,6,5 l,2,3 l,3,4 lfillt,1,2, lfillt,3,4,.1 a,1,2,9,10,4,5,8,7 vext,all,,,0,0,4 kwpave,5,17 wprota,0,-90,0 cyl4,,,1,,,,-.25 vsbv,1,2 6

7 et,1,solid92 mptemp mptemp,1,0 mpdata,ex,1,,29e6 mpdata,prxy,1,,.27 esize,0.25/2,0 mshape,1,3d mshkey,0 vmesh,all eplot 2. Now that we have a macro we want to save it. PeDAL has the same concept of "working directory" as ANSYS Mechanical APDL. So we want to make sure we go to the directory we are going to run ANSYS in: Click on the "house" icon to set the working directory to a valid place you want to run ANSYS in: 3. Now click on the save icon, or use File>Save. Call the macro ws1.mac 4. Start up ANSYS MAPDL in that working directory and type in ws1 to run the macro. You should see this: 5. If you do not, or you got an error when you ran your macro, you need to debug. 7

8 Debugging If we are honest with ourselves, we will admit that we spend most of our time debugging our commands. So PeDAL was written to make that easier. 1. If your macro worked, let's put some bugs in so we can practice debugging Change line 17 to be: vext,xll,,,0,0,4 Change line 19 to: wprota,0,90,0 Save your changes 2. Now run your macro again in ANSYS MAPDL 3. You will get an error. Unfortunately it does not tell you what line it failed on. But if you look at the output window you should see the some sort of warning or error. If you munged the VEXT command you will see: *** WARNING *** CP = TIME= 09:51:21 Specified range of 0 to 0 is not permitted. The VEXT command is ignored. 4. Once you have identified where your command failed, put a /eof command on the line before that command. PeDAL will mark /eof line and all lines below it with a dark background, telling you that if you run the file those lines will not get executed. 8

9 5. Save and execute the macro. It will stop at the line before the error command. 6. Now look at the command and try and figure out what is wrong. You can type it into the ANSYS command line, or you can change it in PedAL, copy that line, and paste it into the command line in ANSYS. Keep running the macro and fixing the command till you get it right. Running Part of a File with CTRL+D The copy and paste in PeDAL work like any other program, but when you paste some commands into the ANSYS command input, they don't execute. You have to place the commands in a file and run the file. PeDAL provides a function for this by taking a selection of text in a temporary file and putting a /INP command for that file into the clipboard for pasting. If you ever use *vwrite you will need to use this option. 1. Select lines 1 through Press CTRL+D or use Edit>Copy to Input File from the menu. 3. Now go to the ANSYS input window and CTRL+V for paste. 4. Now press return and ANSYS will read that tmp file. Note the,,,,1 option. This tells the program to put the contents of the file in the *.log file, not the /inp command. Using ANSYS Help with PeDAL The ability to quickly access the ANSYS help manual from within PeDAL is the second most useful feature in the program, just behind the syntax prompting. You can access the full help, search for a specific command, or get the command help for a given command. In this section we will do all three. 1. To search for a specific topic, simply type the word you want to search on in the search window and press the enter key. Let's practice by searching on "plasticity" 9

10 As you can see, it tells you the string it is searching on and then the names of the sections it found information in, along with the number of times the string is used in that section times in TB that is a lot. If you click on the entry, it will take you to that help page. All of the hyperlinks in the ANSYS help still work, so you can explore from there. 2. Click on TB and look around the help page. 3. Now click on "data table" near the top and it will go to section Click on the left pointing blue arrow on the browser tool bar to go back to the TB command. 5. Click on the left pointing blue arrow again to go back to the list from the search. 6. To search on a specific command you can just put that command in the search box. Or, you can do it from the text editor. In the text editor, click on the wprota keyword (line 19) and then Right Mouse Button to 10

11 get the context menu. Select "Search Help for "wprota" 7. You will see the same search result as if you typed "wprota" into the help window. This will show everywhere that the command is mentioned. 8. If you want the command help for that command, which is what you want 90% of the time, then do the same thing but choose "Show Command Help for "wprota" instead. Now the browser will go directly to that manual page. Try it. Commenting Comments are an important part of any program, even an APDL script. PeDAL has some nice tools to make it easier to comment your macros, including some automatic generation of comments. 1. The first thing we want to do is a simple comment on a line. Click in front of the f on the first line and press enter, this creates a new first line. Then type "! This is a comment" The! is a comment in APDL, and everything to the right of the! is not read by the program. PeDAL shows this by setting all comment text to Italic and green. 11

12 2. To comment out commands, you simply have to highlight the lines you want commented, and then click on the "Add Leading Comment " icon: or Right Mouse Button and Select "Comment Selected Lines". Try it out by selecting all the keypoint creation commands (k,) and click on the icon or select the command from the context menu. The top of your macro should now look like this: 3. As you probably noticed, there is also a way to uncomment a commented line. Select the K commands again and click the "Remove Leading Comment " icon: Mouse Button to choose "Uncomment Selected Lines" or Right 4. A very handy feature of PeDAL is the ability to automatically comment a command, or all the commands in a macro. To do this select one or more lines of code and click the Auto Comment icon, it looks like a lightbulb. Select lines 18 through 23 (vext to et) and click on the icon A dialog box will come up to set options for the comments 12

13 5. Click on Current Selection for Scope 6. For Comment Location you can have it above each command, to the right of the command with a fixed number of spaces, or aligned with the number of spaces specified as the minimum distance. Chose Right of Command Column Aligned and set Padding Spaces to 2. Click OK. The result should look like this: 7. Click on the icon again and choose "Whole Document" and you will see a description of every command in the macro. That may be overkill but if non-experts are using your macro, it can be a real time saver. 8. Click the undo arrow (or Edit>Undo) twice to get rid of those comments. Aligning Large macros can get a bit messy, so PeDAL has some great tools to clean things up. 1. Look at the K commands. Notice how the numbers don't line up and it is hard to tell what the X, Y, and Z components are for each one. To line everything up: Select all of the K, lines. 13

14 2. Click the "Align Command Fields" icon or Right Mouse Button and chose "Align Command Fields" 3. The "Remove any Whitespace" icon and "Compress Command Field" context menu picks get rid of any spaces if you want that. Do so for the K commands 4. Now go and put the alignment back in. Indentation PeDAL will automatically indent code that should be indented, mostly *do loops and *if statements. You can also do indentation on your own. For this tutorial we will do a *do loop in an *if statement. 1. Go to File>New Macro to create a new tab for our simple *if/*do macro. We are going to make a very silly macro that loops through nodes 1 to 100 and assigns a displacement of UX if it is an even numbered node, UY for the first half of the odd numbered nodes, and UZ for the second half of the odd numbered nodes. 2. Type the following commands in: Nmnd=100.*do,i,1,nmnd *if,mod(i,2),eq,0,then d,i,ux,0.1 *else *if,i,gt,nmnd/2,then d,i,uy,.1 *else d,i,uz,.1 *endif *endif *enddo 3. As you type, notice how PeDAL does the indentation for you. Don't use tabs, just let the program do it's thing. 14

15 4. Notice that PeDAL not only does the indentation, but it draws a line connecting the start and stop of a "group" and it provides tools that let you collapse and expand a loop. Click on the triangle for the most inner *if statement (i,gt,nmnd/2). 5. Note that the triangle turns to ellipses ( ) and lines are put above and beyond the part the collapsed. The first line is still shown to tell you what was collapsed. 6. Click on the ellipses to show the whole *if statement again. 7. Save the macro as "sillyloop.mac" We will use it in the next section. Hyperlinking Macros PeDAL looks in the same places that ANSYS does for macros, and if it recognizes the name of a macro it will treat it as a valid command, highlight it as such, and create a hyperlink to the macro file. 15

16 1. Click on the ws1.mac tab to go back to the original macro 2. At the bottom of the macro, type sillyloop. Note that PeDAL highlights it as orange. 3. Hover your mouse over the line and it will behave like a hyperlink. 4. Click on it, and the editor switches to sillyloop.mac. Exporting Your Macro Once you are done with your macro you may want to put it in a report or a website or something. You can easily do this using the Export feature in the File menu. 1. Go to File->Export 16

17 2. Note that you can save as RTF, TeX, and HTML. RTF can be read by MS Word and most other word processors, and the HTML is perfect for blog postings and such. TeX, well you must have a graduate degree if you use TeX 3. Choose RTF and save the file as ws1.rtf. 4. Go to your working directory in your file browser and open up the file. It should be a nice copy of what you saw in PeDAL, nice and ready to use in your report or Powerpoint. Learning More In this short tutorial we covered only the basics of PeDAL, with a few very useful advanced features. To learn more use the online help or just explore. Push a button, nothing will break. 17

AGENT123. Full Q&A and Tutorials Table of Contents. Website IDX Agent Gallery Step-by-Step Tutorials

AGENT123. Full Q&A and Tutorials Table of Contents. Website IDX Agent Gallery Step-by-Step Tutorials AGENT123 Full Q&A and Tutorials Table of Contents Website IDX Agent Gallery Step-by-Step Tutorials WEBSITE General 1. How do I log into my website? 2. How do I change the Meta Tags on my website? 3. How

More information

Furl Furled Furling. Social on-line book marking for the masses. Jim Wenzloff Blog:

Furl Furled Furling. Social on-line book marking for the masses. Jim Wenzloff Blog: Furl Furled Furling Social on-line book marking for the masses. Jim Wenzloff jwenzloff@misd.net Blog: http://www.visitmyclass.com/blog/wenzloff February 7, 2005 This work is licensed under a Creative Commons

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 2016 Advanced. North American Edition SAMPLE

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

More information

VBA Excel 2013/2016. VBA Visual Basic for Applications. Learner Guide

VBA Excel 2013/2016. VBA Visual Basic for Applications. Learner Guide VBA Visual Basic for Applications Learner Guide 1 Table of Contents SECTION 1 WORKING WITH MACROS...5 WORKING WITH MACROS...6 About Excel macros...6 Opening Excel (using Windows 7 or 10)...6 Recognizing

More information

USING SMART NOTEBOOK SOFTWARE

USING SMART NOTEBOOK SOFTWARE USING SMART NOTEBOOK SOFTWARE THE NOTEBOOK INTERFACE The Notebook interface is easy to use and many functions (such as inserting pictures, saving files etc.) will be famillar as they are simillar to those

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

How To Use My Alternative High

How To Use My Alternative High How To Use My Alternative High Preface Preface I put this together to address the issues and questions that come up all the time in class, especially for newer students. Preface I did this so that I could

More information

Installing a Custom AutoCAD Toolbar (CUI interface)

Installing a Custom AutoCAD Toolbar (CUI interface) Installing a Custom AutoCAD Toolbar (CUI interface) I used 2008LT for this tutorial; you may have a later AutoCAD with a different appearance. However, the customize user interface (cui) should be similar.

More information

Creating Word Outlines from Compendium on a Mac

Creating Word Outlines from Compendium on a Mac Creating Word Outlines from Compendium on a Mac Using the Compendium Outline Template and Macro for Microsoft Word for Mac: Background and Tutorial Jeff Conklin & KC Burgess Yakemovic, CogNexus Institute

More information

1. Introduction EE108A. Lab 1: Combinational Logic: Extension of the Tic Tac Toe Game

1. Introduction EE108A. Lab 1: Combinational Logic: Extension of the Tic Tac Toe Game EE108A Lab 1: Combinational Logic: Extension of the Tic Tac Toe Game 1. Introduction Objective This lab is designed to familiarize you with the process of designing, verifying, and implementing a combinational

More information

MindView Online - Quick Start Guide

MindView Online - Quick Start Guide MindView Online - Quick Start Guide Overview MindView Online is an online concept mapping program that allows users to organize their thoughts visually to create, share, and export mind maps to Microsoft

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

Excel Basics Rice Digital Media Commons Guide Written for Microsoft Excel 2010 Windows Edition by Eric Miller

Excel Basics Rice Digital Media Commons Guide Written for Microsoft Excel 2010 Windows Edition by Eric Miller Excel Basics Rice Digital Media Commons Guide Written for Microsoft Excel 2010 Windows Edition by Eric Miller Table of Contents Introduction!... 1 Part 1: Entering Data!... 2 1.a: Typing!... 2 1.b: Editing

More information

NCMail: Microsoft Outlook User s Guide

NCMail: Microsoft Outlook User s Guide NCMail: Microsoft Outlook 2007 Email User s Guide Revision 1.1 3/9/2009 This document covers how to use Microsoft Outlook 2007 for accessing your email with the NCMail Exchange email system. The syntax

More information

Here we will look at some methods for checking data simply using JOSM. Some of the questions we are asking about our data are:

Here we will look at some methods for checking data simply using JOSM. Some of the questions we are asking about our data are: Validating for Missing Maps Using JOSM This document covers processes for checking data quality in OpenStreetMap, particularly in the context of Humanitarian OpenStreetMap Team and Red Cross Missing Maps

More information

Install Visual Studio Community Version 2017

Install Visual Studio Community Version 2017 Dr. Tom Hicks Install Visual Studio Community Version 2017 1 P a g e Install Visual Studio Community Version 2017 1] Navigate your browser to https://www.visualstudio.com/ 2] Hold down the Download Visual

More information

Rev Up to Excel 2010

Rev Up to Excel 2010 Rev Up to Excel 2010 Upgraders Guide to Excel 2010 by Bill Jelen Published by H OLY MACRO! BOOKS PO Box 82, Uniontown, OH 44685 Contents About the Author Dedication Acknowledgements v v v Introduction

More information

Step-by. A Very Warm Welcome to the Exciting World of Computers. Let s get Started It s easy with my Step- Instructions

Step-by. A Very Warm Welcome to the Exciting World of Computers. Let s get Started It s easy with my Step- Instructions A Very Warm Welcome to the Exciting World of Computers Let s get Started It s easy with my Step- by-step Instructions This lesson is all about getting to know your Main Menu Bar at the top of your screen.

More information

Rio Hondo Prep Computer Applications Class

Rio Hondo Prep Computer Applications Class Welcome to Computer Applications class! This class will help you to learn how to utilize the most used business and academic software. Currently, this includes the latest Microsoft Office 360 programs

More information

Avoiding Common PowerPoint Issues. David DK Kornegay

Avoiding Common PowerPoint Issues. David DK Kornegay Avoiding Common PowerPoint Issues David DK Kornegay What We ll Discuss Customizing your Quick Access toolbar Right-click tricks Copying/Pasting/ Inserting: Text Pictures Data Graphs Formatting Use of Templates

More information

MAKING TABLES WITH WORD BASIC INSTRUCTIONS. Setting the Page Orientation. Inserting the Basic Table. Daily Schedule

MAKING TABLES WITH WORD BASIC INSTRUCTIONS. Setting the Page Orientation. Inserting the Basic Table. Daily Schedule MAKING TABLES WITH WORD BASIC INSTRUCTIONS Setting the Page Orientation Once in word, decide if you want your paper to print vertically (the normal way, called portrait) or horizontally (called landscape)

More information

DOWNLOAD PDF EXCEL MACRO TO PRINT WORKSHEET TO

DOWNLOAD PDF EXCEL MACRO TO PRINT WORKSHEET TO Chapter 1 : All about printing sheets, workbook, charts etc. from Excel VBA - blog.quintoapp.com Hello Friends, Hope you are doing well!! Thought of sharing a small VBA code to help you writing a code

More information

Chapter 4 Devices. About devices. Planning your devices

Chapter 4 Devices. About devices. Planning your devices Chapter 4 Devices A device is the name HCA gives to real world items like a switch or module that it can control. First you create the device in HCA using the New Device Wizard. When you create the device

More information

DOING MORE WITH WORD: MICROSOFT OFFICE 2013

DOING MORE WITH WORD: MICROSOFT OFFICE 2013 DOING MORE WITH WORD: MICROSOFT OFFICE 2013 GETTING STARTED PAGE 02 Prerequisites What You Will Learn USING MICROSOFT WORD PAGE 03 Viewing Toolbars Adding and Removing Buttons MORE TASKS IN MICROSOFT WORD

More information

FrontPage Help Center. Topic: FrontPage Basics

FrontPage Help Center. Topic: FrontPage Basics FrontPage Help Center Topic: FrontPage Basics by Karey Cummins http://www.rtbwizards.com http://www.myartsdesire.com 2004 Getting Started... FrontPage is a "What You See Is What You Get" editor or WYSIWYG

More information

The purpose of this tutorial is to introduce you to the Construct 2 program. First, you will be told where the software is located on the computer

The purpose of this tutorial is to introduce you to the Construct 2 program. First, you will be told where the software is located on the computer Learning Targets: Students will be introduced to industry recognized game development software Students will learn how to navigate within the software Students will learn the basics on how to use Construct

More information

NCMail: Microsoft Outlook User s Guide

NCMail: Microsoft Outlook User s Guide NCMail: Microsoft Outlook 2003 Email User s Guide Revision 1.0 11/10/2007 This document covers how to use Microsoft Outlook 2003 for accessing your email with the NCMail Exchange email system. The syntax

More information

DOING MORE WITH WORD: MICROSOFT OFFICE 2010

DOING MORE WITH WORD: MICROSOFT OFFICE 2010 DOING MORE WITH WORD: MICROSOFT OFFICE 2010 GETTING STARTED PAGE 02 Prerequisites What You Will Learn USING MICROSOFT WORD PAGE 03 Viewing Toolbars Adding and Removing Buttons MORE TASKS IN MICROSOFT WORD

More information

Laboratory 1: Eclipse and Karel the Robot

Laboratory 1: Eclipse and Karel the Robot Math 121: Introduction to Computing Handout #2 Laboratory 1: Eclipse and Karel the Robot Your first laboratory task is to use the Eclipse IDE framework ( integrated development environment, and the d also

More information

TUTORIAL MADCAP FLARE Tripane and PDF

TUTORIAL MADCAP FLARE Tripane and PDF TUTORIAL MADCAP FLARE 2018 Tripane and PDF 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

Chapter 6: Creating and Configuring Menus. Using the Menu Manager

Chapter 6: Creating and Configuring Menus. Using the Menu Manager Chapter 6: Creating and Configuring Menus The Menu Manager provides key information about each menu, including: Title. The name of the menu. Type. Its unique name used in programming. Menu Item. A link

More information

Creating a Brochure in Publisher

Creating a Brochure in Publisher Creating a Brochure in Publisher If you closed the Flyer, as indicated above, you will see the Microsoft Publisher Task Pane on the left side of your screen. Click the Brochures selection in the Publication

More information

Adobe Dreamweaver CS3 English 510 Fall 2007

Adobe Dreamweaver CS3 English 510 Fall 2007 Adobe Dreamweaver CS3 English 510 Fall 2007 Important: Before going through this handout, you should create a WWW directory on your ISU e-mail account. Otherwise, you will not be able to upload and view

More information

StudioPrompter Tutorials. Prepare before you start the Tutorials. Opening and importing text files. Using the Control Bar. Using Dual Monitors

StudioPrompter Tutorials. Prepare before you start the Tutorials. Opening and importing text files. Using the Control Bar. Using Dual Monitors StudioPrompter Tutorials Prepare before you start the Tutorials Opening and importing text files Using the Control Bar Using Dual Monitors Using Speed Controls Using Alternate Files Using Text Markers

More information

Setting up a ColdFusion Workstation

Setting up a ColdFusion Workstation Setting up a ColdFusion Workstation Draft Version Mark Mathis 2000 all rights reserved mark@teratech.com 2 Setting up a ColdFusion workstation Table of Contents Browsers:...5 Internet Explorer:...5 Web

More information

Introduction to Microsoft 2007 Office

Introduction to Microsoft 2007 Office Introduction to Microsoft 2007 Office Introduction Welcome to the new world of Microsoft 2007 Office. As you may have heard, 2007 Office is a major change from previous Office versions. If you are new

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

DOING MORE WITH WORD: MICROSOFT OFFICE 2007

DOING MORE WITH WORD: MICROSOFT OFFICE 2007 DOING MORE WITH WORD: MICROSOFT OFFICE 2007 GETTING STARTED PAGE 02 Prerequisites What You Will Learn USING MICROSOFT WORD PAGE 03 Viewing Toolbars Adding and Removing Buttons MORE TASKS IN MICROSOFT WORD

More information

Introduction to MS Word XP 2002: An Overview

Introduction to MS Word XP 2002: An Overview Introduction to MS Word XP 2002: An Overview Sources Used: http://www.fgcu.edu/support/office2000/word/files.html Florida Gulf Coast University Technology Skills Orientation Word 2000 Tutorial The Computer

More information

Getting Help in Microsoft Office

Getting Help in Microsoft Office LESSON 3 Getting Help in Microsoft Office In this lesson, you learn how to access and use the Help system in Microsoft Office. HELP: WHAT S AVAILABLE? Microsoft Office supplies a Help system that makes

More information

Chapter 5 Devices. About devices. Planning your devices

Chapter 5 Devices. About devices. Planning your devices Chapter 5 Devices About devices A device is the name HCA gives to real world items like a switch or module that it can control. First you create the device in HCA using the New Device Wizard. When you

More information

Tips & Tricks for Microsoft Word

Tips & Tricks for Microsoft Word T 330 / 1 Discover Useful Hidden Features to Speed-up Your Work in Word For what should be a straightforward wordprocessing program, Microsoft Word has a staggering number of features. Many of these you

More information

Word: Print Address Labels Using Mail Merge

Word: Print Address Labels Using Mail Merge Word: Print Address Labels Using Mail Merge No Typing! The Quick and Easy Way to Print Sheets of Address Labels Here at PC Knowledge for Seniors we re often asked how to print sticky address labels in

More information

Creating Buttons and Pop-up Menus

Creating Buttons and Pop-up Menus Using Fireworks CHAPTER 12 Creating Buttons and Pop-up Menus 12 In Macromedia Fireworks 8 you can create a variety of JavaScript buttons and CSS or JavaScript pop-up menus, even if you know nothing about

More information

Chapter 20 Troubleshooter

Chapter 20 Troubleshooter Chapter 20 Troubleshooter Once you have been using the Home Control Assistant for a while, you will probably want to look at the Troubleshooter. The Troubleshooter is a set of several tools you can use

More information

Microsoft Access II 1.) Opening a Saved Database Music Click the Options Enable this Content Click OK. *

Microsoft Access II 1.) Opening a Saved Database Music Click the Options Enable this Content Click OK. * Microsoft Access II 1.) Opening a Saved Database Open the Music database saved on your computer s hard drive. *I added more songs and records to the Songs and Artist tables. Click the Options button next

More information

ICDL & OOo BASE. Module Five. Databases

ICDL & OOo BASE. Module Five. Databases ICDL & OOo BASE Module Five Databases BASE Module Goals taken from the Module 5 ICDL Syllabus Module 5 Database requires the candidate to understand some of the main concepts of databases and demonstrates

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

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

Using Karel with Eclipse

Using Karel with Eclipse Chris Piech Handout #3 CS 106A January 10, 2018 Using Karel with Eclipse Based on a handout by Eric Roberts and Nick Troccoli Once you have downloaded a copy of Eclipse as described on the course website,

More information

Essay & Assignment Preparation using MindGenius

Essay & Assignment Preparation using MindGenius Essay & Assignment Preparation using MindGenius This workshop is aimed at those of you who struggle gathering and sorting information when beginning to write an essay. Using MindGenius you can plan essays

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

Code::Blocks Student Manual

Code::Blocks Student Manual Code::Blocks Student Manual Lawrence Goetz, Network Administrator Yedidyah Langsam, Professor and Theodore Raphan, Distinguished Professor Dept. of Computer and Information Science Brooklyn College of

More information

Start Active-HDL. Create a new workspace TUTORIAL #1 CREATING AND SIMULATING SIMPLE SCHEMATICS

Start Active-HDL. Create a new workspace TUTORIAL #1 CREATING AND SIMULATING SIMPLE SCHEMATICS Introduction to Active-HDL TUTORIAL #1 CREATING AND SIMULATING SIMPLE SCHEMATICS This tutorial will introduce the tools and techniques necessary to design a basic schematic. The goal of this tutorial is

More information

Adobe Illustrator A Hot Air Balloon Sky Scene In this tutorial, we'll explain how to create a fun sky scene with hot air balloons.

Adobe Illustrator A Hot Air Balloon Sky Scene In this tutorial, we'll explain how to create a fun sky scene with hot air balloons. Adobe Illustrator A Hot Air Balloon Sky Scene In this tutorial, we'll explain how to create a fun sky scene with hot air balloons. We will take advantage of the Blend Tool and the Symbol Sprayer Tool and

More information

A Guide to Blogging on Wordpress

A Guide to Blogging on Wordpress A Guide to Blogging on Wordpress Below is a written guide with pictures for using the WordPress blogging platform. If you re more of a visual person, there are videos here: http://wordpress.tv/category/howto/

More information

Microsoft Office Tips and Tricks

Microsoft Office Tips and Tricks What We ll Discuss Microsoft Office Tips and Tricks David DK Kornegay Client Service and Success Strategies How I use what I got The mentality behind tricks up my sleeve to fill in the gaps get the job

More information

Using Microsoft Excel

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

More information

RIT Wiki 5.1 Upgrade - May 21, 2013

RIT Wiki 5.1 Upgrade - May 21, 2013 RIT Wiki 5.1 Upgrade - May 21, 2013 We are pleased to announce that the RIT Wiki will be upgraded to version 5.1 on Tuesday, May 21st. UPDATED TIME: The RIT Wiki will be unavailable on Tuesday, May 21st

More information

Burning CDs in Windows XP

Burning CDs in Windows XP B 770 / 1 Make CD Burning a Breeze with Windows XP's Built-in Tools If your PC is equipped with a rewritable CD drive you ve almost certainly got some specialised software for copying files to CDs. If

More information

Web Site Documentation Eugene School District 4J

Web Site Documentation Eugene School District 4J Eugene School District 4J Using this Documentation Revision 1.3 1. Instruction step-by-step. The left column contains the simple how-to steps. Over here on the right is the color commentary offered to

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

Here we will look at some methods for checking data simply using JOSM. Some of the questions we are asking about our data are:

Here we will look at some methods for checking data simply using JOSM. Some of the questions we are asking about our data are: Validating for Missing Maps Using JOSM This document covers processes for checking data quality in OpenStreetMap, particularly in the context of Humanitarian OpenStreetMap Team and Red Cross Missing Maps

More information

Civil Engineering Computation

Civil Engineering Computation Civil Engineering Computation First Steps in VBA Homework Evaluation 2 1 Homework Evaluation 3 Based on this rubric, you may resubmit Homework 1 and Homework 2 (along with today s homework) by next Monday

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

Computer and Programming: Lab 1

Computer and Programming: Lab 1 01204111 Computer and Programming: Lab 1 Name ID Section Goals To get familiar with Wing IDE and learn common mistakes with programming in Python To practice using Python interactively through Python Shell

More information

Introduction to Picasa

Introduction to Picasa Introduction to Picasa Importing Pictures Picasa can import pictures from your camera, media card, scanner, CD, or drives and folders on your computer. When you connect a drive or device with new pictures,

More information

Dr. Mack Gipson, Jr., Tutorial and Enrichment Center. Computer Techniques: Formatting and Other Tasks (WORD 2003)

Dr. Mack Gipson, Jr., Tutorial and Enrichment Center. Computer Techniques: Formatting and Other Tasks (WORD 2003) Dr. Mack Gipson, Jr., Tutorial and Enrichment Center Computer Techniques: Formatting and Other Tasks (WORD 2003) Set margins Go to the File menu. Select Page Setup. Under the Margins tab you will see small

More information

Lecture 05 I/O statements Printf, Scanf Simple statements, Compound statements

Lecture 05 I/O statements Printf, Scanf Simple statements, Compound statements Programming, Data Structures and Algorithms Prof. Shankar Balachandran Department of Computer Science and Engineering Indian Institute of Technology, Madras Lecture 05 I/O statements Printf, Scanf Simple

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

Lesson 4 Page Styles

Lesson 4 Page Styles Lesson 4 Page Styles The Concept of Styles: Styles: In the context of LibreOffice Writer, Styles refers to the characteristics of a part of a document. For example, a Page Style includes information about

More information

Outlook Web Access. In the next step, enter your address and password to gain access to your Outlook Web Access account.

Outlook Web Access. In the next step, enter your  address and password to gain access to your Outlook Web Access account. Outlook Web Access To access your mail, open Internet Explorer and type in the address http://www.scs.sk.ca/exchange as seen below. (Other browsers will work but there is some loss of functionality) In

More information

OpenMind 2 New Document Open Document Mind Map Top Down Left Right Top Down Left Right Timeline Timeline Outline

OpenMind 2 New Document Open Document Mind Map Top Down Left Right Top Down Left Right Timeline Timeline Outline OpenMind 2 Choose New Document to create a new document, or Open Document to open a previously created document, including templates. OpenMind provides numerous curriculum-aligned templates for Language

More information

MITOCW watch?v=zm5mw5nkzjg

MITOCW watch?v=zm5mw5nkzjg MITOCW watch?v=zm5mw5nkzjg The following content is provided under a Creative Commons license. Your support will help MIT OpenCourseWare continue to offer high quality educational resources for free. To

More information

SuperNova. Screen Reader. Version 14.0

SuperNova. Screen Reader. Version 14.0 SuperNova Screen Reader Version 14.0 Dolphin Computer Access Publication Date: 09 April 2014 Copyright 1998-2014 Dolphin Computer Access Ltd. Technology House Blackpole Estate West Worcester WR3 8TJ United

More information

To create, upload, share, or view shared files through Google Apps, go to Documents in the black bar above.

To create, upload, share, or view shared files through Google Apps, go to Documents in the black bar above. To create, upload, share, or view shared files through Google Apps, go to Documents in the black bar above. This will open another tab in your browser. Here you will see all files you own or that are shared

More information

shortcut Tap into learning NOW! Visit for a complete list of Short Cuts. Your Short Cut to Knowledge

shortcut Tap into learning NOW! Visit  for a complete list of Short Cuts. Your Short Cut to Knowledge shortcut Your Short Cut to Knowledge The following is an excerpt from a Short Cut published by one of the Pearson Education imprints. Short Cuts are short, concise, PDF documents designed specifically

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

Creating an ArborCAD filter from Excel.

Creating an ArborCAD filter from Excel. ArborCAD Help File Windows systems only Creating an ArborCAD filter from Excel. This help file assumes you have your tree survey data in an Excel sheet. The ArborCAD filter is a special file which holds

More information

Working with Macros. Creating a Macro

Working with Macros. Creating a Macro Working with Macros 1 Working with Macros THE BOTTOM LINE A macro is a set of actions saved together that can be performed by issuing a single command. Macros are commonly used in Microsoft Office applications,

More information

Electronic Portfolios in the Classroom

Electronic Portfolios in the Classroom Electronic Portfolios in the Classroom What are portfolios? Electronic Portfolios are a creative means of organizing, summarizing, and sharing artifacts, information, and ideas about teaching and/or learning,

More information

Exploring Microsoft Office Word 2007

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

More information

The Turing Environment

The Turing Environment 43 Chapter 2 The Turing Environment 2.1 Introduction 2.2 The Editor Window 2.3 Saving Programs on Disk 2.4 Running Programs 2.5 Indenting Programs and Syntax Coloring 2.6 Starting and Stopping the Environment

More information

Microsoft Office Word. Part1

Microsoft Office Word. Part1 Microsoft Office 2010 - Word Part1 1 Table of Contents What is Microsoft Word?... 4 Creating a document... 5 Toolbar... 6 Typing in MS Word Text Area... 7 Cut, Copy and Paste Text... 9 Paste Preview...

More information

CSC105, Introduction to Computer Science I. Introduction. Perl Directions NOTE : It is also a good idea to

CSC105, Introduction to Computer Science I. Introduction. Perl Directions NOTE : It is also a good idea to CSC105, Introduction to Computer Science Lab03: Introducing Perl I. Introduction. [NOTE: This material assumes that you have reviewed Chapters 1, First Steps in Perl and 2, Working With Simple Values in

More information

Microsoft Word 2016 LEVEL 1

Microsoft Word 2016 LEVEL 1 TECH TUTOR ONE-ON-ONE COMPUTER HELP COMPUTER CLASSES Microsoft Word 2016 LEVEL 1 kcls.org/techtutor Microsoft Word 2016 Level 1 Manual Rev 11/2017 instruction@kcls.org Microsoft Word 2016 Level 1 Welcome

More information

Victaulic Tools for Revit

Victaulic Tools for Revit Victaulic Tools for Revit User Manual Revit 2016, 2017, 2018 Table of Contents Introduction Section 01 Licensing Page 3 Section 02 Pipe Tools (Pipe / Duct Splitting) Page 4 Section 03 Pipe Tools (Pipe

More information

Beginners Guide to Snippet Master PRO

Beginners Guide to Snippet Master PRO Beginners Guide to Snippet Master PRO This document assumes that Snippet Master has been installed on your site. If not please contact the Bakas IT web team at webreg@bakasit.com.au. Initial Login Screen...

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

Bucknell University Digital Collections. LUNA Insight User Guide February 2006

Bucknell University Digital Collections. LUNA Insight User Guide February 2006 Bucknell University Digital Collections LUNA Insight User Guide February 2006 User Guide - Table of Contents Topic Page Number Installing Insight. 2-4 Connecting to Insight 5 Opening Collections. 6 Main

More information

Technical Users Guide for the Performance Measurement Accountability System. National Information Center For State and Private Forestry.

Technical Users Guide for the Performance Measurement Accountability System. National Information Center For State and Private Forestry. PMAS Technical Users Guide for the Performance Measurement Accountability System National Information Center For State and Private Forestry Prepared By Peter Bedker Release 2 October 1, 2002 PMAS User

More information

Classroom Blogging. Training wiki:

Classroom Blogging. Training wiki: Classroom Blogging Training wiki: http://technologyintegrationshthornt.pbworks.com/create-a-blog 1. Create a Google Account Navigate to http://www.google.com and sign up for a Google account. o Use your

More information

Essay & Assignment Preparation using MindGenius

Essay & Assignment Preparation using MindGenius Essay & Assignment Preparation using MindGenius This workshop is aimed at those of you who struggle gathering and sorting information when beginning to write an essay. Using MindGenius you can plan essays

More information

Microsoft Office Word 2010

Microsoft Office Word 2010 Microsoft Office Word 2010 Content Microsoft Office... 0 A. Word Basics... 4 1.Getting Started with Word... 4 Introduction... 4 Getting to know Word 2010... 4 The Ribbon... 4 Backstage view... 7 The Quick

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

Advanced Excel Macros : Data Validation/Analysis : OneDrive

Advanced Excel Macros : Data Validation/Analysis : OneDrive Advanced Excel Macros : Data Validation/Analysis : OneDrive Macros Macros in Excel are in short, a recording of keystrokes. Beyond simple recording, you can use macros to automate tasks that you will use

More information

On the Web sun.com/aboutsun/comm_invest STAROFFICE 8 DRAW

On the Web sun.com/aboutsun/comm_invest STAROFFICE 8 DRAW STAROFFICE 8 DRAW Graphics They say a picture is worth a thousand words. Pictures are often used along with our words for good reason. They help communicate our thoughts. They give extra information that

More information

Introduction to the MODx Manager

Introduction to the MODx Manager Introduction to the MODx Manager To login to your site's Manager: Go to your school s website, then add /manager/ ex. http://alamosa.k12.co.us/school/manager/ Enter your username and password, then click

More information