PROGRAMMER S GUIDE TO TRNSED

Size: px
Start display at page:

Download "PROGRAMMER S GUIDE TO TRNSED"

Transcription

1 TRNSHELL APPENDIX I 33 APPENDIX I PROGRAMMER S GUIDE TO TRNSED TRNSED is the utility program that provides a user-friendly interface to the TRNSYS input file TRNSYS input files may be modified by the TRNSED programmer to display only selected information, hiding less important details from an end-user of the TRNSYS simulation TRNSED input files may also be configured to provide detailed help, unit conversions, and input range checking TRNSED relies on two basic features of the standard TRNSYS input file First, any line in a TRNSYS input file that begins with an asterisk (*) is interpreted by TRNSYS as a comment TRNSED statements placed within an input file are ignored by TRNSYS because they begin with an asterisk Second, any numerical value in a TRNSYS input file can be equated with an alpha-numeric name with the EQUATIONS or CONSTANTS statements as described in Chapter 2 of the main TRNSYS Reference Manual The TRNSED program changes the information on the EQUATIONS or CONSTANTS statements immediately preceding certain TRNSED command statements, thereby changing the numerical values that TRNSYS uses in the simulation TRNSED statements that might appear in an input file fall into three general categories: parameter statements, format statements, and file reference statements Each is described below TRNSYS input files that are to be read by the TRNSHELL or TRNSED programs as TRNSED input files must have a trd filename extension or have the following first line: *trnsed TRNSED Parameter Statements The most fundamental type of TRNSED statement is the parameter statement It is the parameter statement which makes it possible for certain CONSTANTS and EQUATIONS statements from the TRNSYS input file to be edited from the user-friendly TRNSED input window Consider as an example a simulation of a solar domestic hot water system Two key PARAMETERS which might be investigated with the simulation include F R (τα) and F R U L, which describe the collector performance The experienced TRNSYS programmer would ordinarily enter numerical values for these PARAMETERS directly in the input file As an alternative, these two PARAMETERS might be identified with variable names by placing the following EQUATIONS (or CONSTANTS) statement in the input file (see Chapter 2 of the main TRNSYS Reference Manual):

2 34 TRNSHELL APPENDIX I EQUATIONS 2 EFF = 07 FRUL = 143 The variable names defined in the CONSTANTS and EQUATIONS statements can be used anywhere in the TRNSYS input file in place of their corresponding numerical values The use of CONSTANTS or EQUATIONS statements simplifies the process of changing values which might appear multiple times in the simulation input file and also makes the file more readable TRNSED takes this process one step further by allowing the TRNSED programmer to display selected variables to the TRNSED end-user on a customized input screen The advantages of TRNSED are several: longer variable descriptions and context-sensitive help screens allow any user to understand the meaning of a given simulation variable unit information and optional unit conversions make specification of variable values more clear input range checking prohibits users from entering unreasonable variable values These capabilities are provided by supplying a TRNSED statement (TRNSYS comment) of the following form after a defined name in a CONSTANTS or EQUATIONS statement: * DescriptiveName PrimaryUnits SecondaryUnits Add Mult Min Max&Format HelpNo The first character is an asterisk so that TRNSYS interprets the statement as a comment The second character is a vertical bar that denotes the line as a TRNSED statement The remaining fields of the TRNSED statement are delimited by the vertical bar character and have the following interpretations: Descriptive Name - The text describing the meaning of the TRNSYS EQUATION or CONSTANT variable name This field can contain up to 70 characters, including spaces Primary Units - A text string indicating the units that the TRNSYS program expects for this EQUATION or CONSTANT variable The primary units are displayed when the File/Setup/TRNSED - Primary Units button is chosen The primary units should generally be the units required by the TRNSYS program Secondary Units - A text string indicating a secondary unit system for this EQUATION or CONSTANT The secondary unit system is displayed when the File/Setup/TRNSED - Secondary Units button is chosen The secondary unit system should be chosen with the end-user in mind

3 TRNSHELL APPENDIX I 35 Add and Mult - Together, these two fields allow unit conversion between the primary and secondary unit systems The formula for unit conversion is: Secondary Unit Value = (Primary Unit Value + Add) * Mult Min - The minimum value that can be entered in the input box for the EQUATION or CONSTANT (in the primary unit system) Max & Format - The maximum allowable value (in the primary unit system) which TRNSED will accept as input In addition, the format of this field controls the format of the display in the TRNSED window If, for example, an input has a maximum value of 100 and the programmer wishes to display one decimal point, this field should be written as 1000 Help No - A number ranging from 1 to 999 which refers to one or more paragraphs of text information to be displayed in a window when the user requests help on this particular input field Additional information on providing TRNSED help is presented later in this appendix To illustrate the use of TRNSED Parameter Statements, recall the solar domestic hot water system example introduced above To modify the TRNSYS input file so that the important collector PARAMETERS can be input in TRNSED format, a TRNSED Parameter Statement is supplied for each PARAMETER as shown below EQUATIONS 6 PANA= 65000E+0000 * Area of Single Panel m2 ft NPAR= 10000E+0000 * Number of Panels in Parallel EFF= 70000E-0001 * Intercept Efficiency (FrTauAlpha) FRUL= 14300E+0001 * Negative of 1st-Order Eff Coeff (FrUL) kj/hr-m2-c Btu/hr-ft2-F MPAN = 95500E+0001 * Mass Flow Rate per Panel in Parallel kg/hr lbm/hr PMAX = 90000E-0001 * Hydraulic Pumping Power for One Panel kj/hr Btu/hr This input file may now be viewed in two unique forms: as a TRNSYS input file (standard text-file) or as a TRNSED input file (customized, user-friendly display) The TRNSYS input file looks exactly like the input file just typed The TRNSED input file looks much different

4 36 TRNSHELL APPENDIX I (Figure 1) Since it is the same file, only displayed in a different format, changes made in either the TRNSYS or TRNSED input file will affect the other mode as well From the TRNSED window, values of the variables selected for inclusion can be modified within the specified range When the user places the cursor on one of the input fields and presses the F1 key, a help message related to this variable is displayed in a separate help window The text of this help message can be customized as described later When the TRNSED input file is saved, TRNSED converts the user's input values to the primary unit system, if necessary, and then rewrites the EQUATIONS and CONSTANTS statements in the TRNSYS input file with new values as required Figure 1: Sample TRNSED window display TRNSED File Reference Statements Occasionally, it is convenient to have a TRNSYS input selected from a list of alternatives which are stored in a file Consider, as an example, a TRNSYS simulation that uses the TYPE 54 Weather Generator The location for which weather data are to be generated is determined by specifying the city number (an integer between 1 and 329) as the fourth PARAMETER for TYPE 54 The Weather Generator uses the city number to access the appropriate monthlyaverage weather information from the wdatadat file supplied with TRNSYS If the TRNSED programmer wishes to allow users to change the city number, a TRNSED Parameter statement could be entered, following the procedures described above Setting the minimum and maximum values to 1 and 329, respectively, would ensure that the city number entered by the user is valid Problematic would be that the user would have to relate the city number to its corresponding location One solution would be for this information to be placed in the TRNSED help file (described below) A much better solution is to allow the user to select the city name directly The File Reference statement makes this list-selection process possible by creating a pull-down menu of

5 TRNSHELL APPENDIX I 37 options on the TRNSED input window When the user clicks the mouse or types a key within the editing field associated with a File Reference statement, a dialog box appears with a scrollable list of alternatives from which the user may select The choice that is left highlighted is set as the input TRNSED will then insert the city number corresponding to the selected city name in the TRNSYS input file Figure 2: Example Pull-Down Menu The File Reference statement has the following format: * < Name FileName Display Field Value Field HelpNo The fields of the File Reference statement are separated with the vertical bar ( ) character with the following interpretations: Name - text describing the TRNSYS input or PARAMETER This field is identical to that for the TRNSED Parameter statement File Name - a valid DOS file name (including path) that holds the information required by TRNSED to produce a list The first line in this text file is the number of items in the list Each following line contains two or more fields, separated by tabs or commas For example, the information used to produce the list of city names shown in Figure 2 is in a file called citiesdat having the following format 329 1,ABILENE 2,AKRON-CANTON 3,ALBANY 4,ALBUQUERQUE 5,ALLENTOWN TX OH NY NM PA

6 38 TRNSHELL APPENDIX I Display Field - the field number in which the text information that is to appear in the scrollable list is located Fields are separated by a comma or tab character and begin with field 1 The city names in the above example are found in field 2 in the citiesdat file Value Field - the field number in which the numerical value associated with a selected text option is located The city numbers are in field 1 for the above example The Value Field corresponding to a selected text item from the Display Field will be inserted into the appropriate EQUATIONS or CONSTANTS statement in the TRNSYS input file HelpNo - a number ranging from 1 to 999 which refers to one or more paragraphs of text information In some cases it is desirable to set multiple EQUATIONS or CONSTANTS values from one menu choice In the example discussed previously, it would be helpful to not only get the city number from the menu choice, but also the corresponding latitude for the TYPE 16 radiation processor The citiesdat file is modified to the following format: 329 1,ABILENE TX, ,AKRON-CANTON OH, ,ALBANY NY, ,ALBUQUERQUE NM, ,ALLENTOWN PA, 4065 The following TRNSED statements would allow for the choice of latitude and city from one menu selection: EQUATIONS 2 CITYNO = 1 * <City for Simulation LAT = 3243 * <City for Simulation CITIESDAT CITIESDAT The user would see just one menu, because the display field for the LAT equation is set to zero, while retrieving the city number (value field 1) and the latitude (value field 3) When

7 TRNSHELL APPENDIX I 39 more than one variable is set by a single menu selection, the second and subsequent variables are set based on TRNSED s assessment of which line in the data file was selected for the first variable In this case, LAT would be set from the first row with a 1 (the value of CITYNO) in the first column The programmer should avoid creating pull-down menu data files with multiple lines having the same value in this primary field For example, if there were more than one line with 1 in the first field, then incorrect values might be used for the subsequent TRNSED variables based on the first selection TRNSED ASSIGN Statements There are two methods by which a TRNSED user can assign a file to an ASSIGN statement in the TRNSED input file The two methods work in different situations Each is described below ASSIGN File Reference Statement The first method is really a special adaptation of the File Reference statement The user selects a filename (or description of a file) from a list (weatherdat in this example) and then this filename is placed into the ASSIGN statement The ASSIGN File Reference Statement has the following format: * < Name FileName Display Field Value Field HelpNo The fields in this File Reference statement have the same meaning as those for the general File Reference Statement described above ASSIGN\TRNWIN\WEATHER\MADISNWI 12 * <City for Simulation weatherdat The file weatherdat would have the following form: 329 1,ABILENE 2,AKRON-CANTON 3,ALBANY 4,ALBUQUERQUE 5,ALLENTOWN TX, \trnwin\weather\abilenetx OH, \trnwin\weather\akronoh NY, \trnwin\weather\albanyny NM, \trnwin\weather\albuquenm PA, \trnwin\weather\allentwnpa

8 40 TRNSHELL APPENDIX I Display Field - the field number in which the text information which is to appear in the scrollable list is located Fields are separated by a comma or tab character and begin with field 1 The city names in the above example are found in field 2 in the weatherdat file Value Field - the field number in which the value associated with a selected text option is located The weather file names are in field 3 for the above example The Value Field corresponding to a selected text item from the Display Field will be inserted into the appropriate ASSIGN statement in the TRNSYS input file HelpNo - a number ranging from 1 to 999 which refers to one or more paragraphs of text information See Creating TRNSED Help for more information In some cases it is desirable to choose several filenames from one menu choice This can be done with the ASSIGN File Reference Statement just as it can be done with the general File Reference Statement ASSIGN Open File Dialog Box Statement The second method for allowing TRNSED users to access an ASSIGN statement in the input file is to use the ASSIGN Open File Dialog Box statement When the user clicks on the TRNSED display box that contains the filename, the standard Windows Open File dialog box appears The user can then type in the desired filename or browse the computer file structure to select a filename The syntax of the ASSIGN Open File Dialog Box statement is: *? Name HelpNo The? character in column 3 identifies the ASSIGN Open File Dialog Box statement The meanings of the two fields in this statement are the same as those in the ASSIGN File Reference Statement As an example, an application of the ASSIGN Open File Dialog Box statement might look like this: ASSIGN \TRNWIN\WEATHER\MADISNWI 12 *?Weather File to Be Used 5 TRNSED Format Statements In the above example, the information for the various PARAMETERS was shown singlespaced starting at the top of the window Adding spaces to the text can control the horizontal placement of the descriptive text and the numerical value It is also possible to add blank lines and additional text with the general TRNSED format statement that has the following form * * Text Optional input

9 TRNSHELL APPENDIX I 41 The asterisk (column 3) indicates to TRNSED that this is a format statement which can have text and optional user input This statement may be placed anywhere within the TRNSYS input file The text field will be shown in the TRNSED window just as it is entered, including spaces To insert a blank line in the TRNSED display, just enter * * The optional input allows the end-user to enter text, such as a date, serial number, or other information The text entered in this input box is not used by TRNSYS in any way COLOR, FONT, SIZE, STYLE, ALIGN, and TAB The TRNSED programmer can customize the TRNSED window with much more than the basic spaces and blank lines The TRNSED statements COLOR, FONT, SIZE, STYLE, ALIGN, and TAB give the TRNSED programmer a great deal of control over the look and feel of the final TRNSED input window These statements control the appearance and position of the text in the TRNSED window For purposes of formatting, the text appearing in the TRNSED input window is placed in three categories: 1 Simple text This text is not descriptive text for a certain input field or pull-down menu in the TRNSED window but appears only to present information and organize the display of the window For example, simple text would be used to provide a title or other comments for the TRNSED display 2 Descriptive text This is text associated with the input fields and pull-down menus appearing in the window and describes the meaning of the particular inputs Descriptive text is that entered in the TRNSED Parameter and File Reference Statements to describe a particular input 3 Units This is the text inserted by TRNSED adjacent to the input fields for which units have been specified These TRNSED format statements affect all corresponding text positioned below them in the TRNSED input file until they are reset to new values or to their default values The COLOR statement is used to set the color of text of any of the three categories The statement has the form of one of the following depending on which category of text is being formatted: * <COLOR1> color * <COLOR2> color * <COLOR3> color The color can be specified as BLACK, RED, BLUE, GREEN, GRAY, PURPLE, AQUA, YELLOW, SILVER, NAVY, FUCHSIA, LIME, WHITE, or DEF (default)

10 42 TRNSHELL APPENDIX I The FONT statement is used to set the font (and, optionally, the size) of the text of any of the three categories The statement has the form of one of the following depending on which category of text is being formatted: * <FONT1> font size * <FONT2> font size * <FONT3> font size The font can be specified as any legal Windows font name (MS Sans Serif, Arial, etc) The specification of the size of the font in points using the FONT statement is optional (the same function can be executed with the SIZE statement) The SIZE statement changes the font size for the text in any of the three categories: * <SIZE1> size * <SIZE2> size * <SIZE3> size Here size is specified in points The STYLE statement determines the text style for the given category of text: * <STYLE1> style * <STYLE2> style * <STYLE3> style Here style can be one or more of the following: BOLD, ITALIC, UNDERLINE, NONE The ALIGN statement determines the horizontal alignment of simple text in the TRNSED window The following is the correct form of the ALIGN statement: * <ALIGN1> align Here align can be assigned one of the following values: LEFT, RIGHT, or CENTER LEFT will left-justify the text, RIGHT will right-justify the text, and CENTER will center the text in the TRNSED window The TAB statement determines the position of descriptive text relative to the left side of the TRNSED window The following is the correct form of the TAB statement: * <TAB2> tab

11 TRNSHELL APPENDIX I 43 Here tab can be specified in inches (in) or centimeters (cm) and is measured from the left side of the TRNSED window If not specified in inches or centimeters, tab is taken to be measured in pixels For example, the following statement would cause descriptive text to begin 3 inches from the left side of the TRNSED window: * <TAB2> 3 in The following statement will return to the default tab condition for descriptive text: * <TAB2> DEF BACKGROUND and PICTURE The TRNSED format statements BACKGROUND and PICTURE allow the programmer to customize the TRNSED window display as desired The BACKGROUND statement sets the color of the background of the TRNSED window: * <BACKGROUND> color Any of the colors used with the COLOR statement described above can be used with the BACKGROUND statement Only one BACKGROUND statement can be used in the TRNSED input file The PICTURE statement displays a picture file in the TRNSED window at the point where the PICTURE statement appears The PICTURE statement has the form: * <PICTURE> filename The complete path for the picture file should be provided with the PICTURE statement PICTURE files must be bitmap files (bmp) or Windows meta files (wmf) Multiple PICTURE statements can be used in a TRNSED input file BEFORE and AFTER The TRNSED statements BEFORE and AFTER allow the TRNSED programmer to specify command line (DOS) statements which should be executed before and after the TRNSED input file is run by TRNSYS, respectively The syntax for the statements is as follows: * <BEFORE> statement * <AFTER> statement Example: * <BEFORE> \trnwin\preprocexe simpledat -v In the example above, the BEFORE statement is used to execute a user-created preprocessing

12 44 TRNSHELL APPENDIX I program, before TRNSYS is run, to create a certain data file The command line statements used with BEFORE and AFTER should include the complete path to the particular executable file and any command line switches required for running it Through the use of the many TRNSED Format statements described above, the TRNSED input window can be made to look any way the TRNSED programmer likes Figure 3 shows an example of a completed TRNSED window with formatting Figure 3: Completed document in TRNSED format Providing Help in TRNSED The TRNSED program allows programmers to create context-sensitive help information for the TRNSED input window The help information is entered into an external help file with a hlp extension and a prefix matching that of the TRNSED input file For example, the help file for the input file called sdhwtrd should be sdhwhlp This hlp file is simply a text file and

13 TRNSHELL APPENDIX I 45 should reside in the same directory as the corresponding TRNSED input file To properly write the hlp file, follow the steps below 1 Supply a unique help number to each TRNSED Parameter or File Reference statement in the input file (between 1 and 999) For the example shown below, 2 is the help number EFF = 07 * Intercept Efficiency Open the help file for editing This file should have the same name as the input file but with a hlp extension 3 Add the desired help text to the hlp file The required help entry syntax is best illustrated by an example All text information between topic lines will be displayed as contextsensitive help information topic EFF=2 The collector efficiency is a measure of the performance of the solar collector The efficiency represents the fraction of incoming solar radiation that is transferred in the form of heat to the collector fluid Since the collector efficiency is a ratio, it must be greater than zero and less than one The user will then see the following information when help is requested (the F1 key is pressed) with the mouse cursor positioned over the collector efficiency parameter input field in the TRNSED window The collector efficiency is a measure of the performance of the solar collector The efficiency represents the fraction of incoming solar radiation that is transferred in the form of heat to the collector fluid Since the collector efficiency is a ratio, it must be greater than zero and less than one Using TRNSED Index Files Sometimes multiple TRNSED input files are associated with a given TRNSYS simulation project In these cases, it may be desirable for the TRNSED programmer to make use of TRNSED index files when sharing such TRNSED projects with others Once created, the index file (idx) will be opened when the TRNSED program is launched (provided the idx file resides in the same directory as TRNSEDEXE) When the index file is opened, a Select Project dialog box lists the TRNSED input files in the project and can display associated pictures and help messages for each The TRNSED user can open any of the TRNSED input files from this window The index file is a text file containing, for each TRNSED input file in the project, a title for the particular TRNSED input file, the path to the input file, the path to an optional bitmap picture associated with the input file, and the path to an optional help file

14 46 TRNSHELL APPENDIX I associated with the input file Also included at the top of the index file are three lines of text used as title material for the Select Project dialog box For a project with just one input file, this dialog box might look like the following: Figure 4: The Select Project Dialog Box from an Index File The index file on which this dialog window is based contains only these lines: Simple SDHW System TRNSYS 142 UW-Madison Solar Energy Laboratory Simple SDHW System sdhwtrd sdhwbmp sdhwtxt The first three lines of this file are arbitrary and affect only the display of Select Project dialog window Following these lines is any number of groups of two lines (one set for each TRNSED input file in the project): title of TRNSED input file TRNSED input file name picture file name help file name The text for title of TRNSED input file is arbitrary TRNSED input file name, picture file name, and help file name are separated by spaces and should contain the complete path to the specified files Creating TRNSED Files with IISiBat All input files generated by IISIBat are TRNSED files Which variables are given TRNSED statements within IISiBat is determined by which parameters and unconnected inputs are locked or unlocked within IISiBat Figure 5 shows the IISiBat Parameters Window for the Type 9 TMY Data Reader

15 TRNSHELL APPENDIX I 47 Figure 5: Parameters Window for Type 9 TMY Data Reader Notice that on the left of the Parameter window is a vertical row of icons The first two are Lock and Lock All which make it possible to lock a parameter or all parameters so they cannot be changed Simply click on the Lock icon and then click on the little lock next to the parameter name to lock that parameter The locking of a parameter, input or derivative has several important effects An unlocked parameter or unlocked initial value of an unconnected input will be written to the generated TRNSYS input file in TRNSED format Only these variables that are written in TRNSED format can be changed by the TRNSED end-user or used in a parametric table Therefore, the decision to leave a parameter (or unconnected input) locked or unlocked should be made with some thought as to the future use of the TRNSYS input file Thus every TRNSYS input file generated by IISiBat automatically includes TRNSED statements The IISiBat user can go directly to using TRNSED with this input file without using the Make TRNSED utility of the TRNSHELL program or generating a custom TRNSED file Refer to the IISiBat manual for more information about this IISiBat feature

<body bgcolor=" " fgcolor=" " link=" " vlink=" " alink=" "> These body attributes have now been deprecated, and should not be used in XHTML.

<body bgcolor=  fgcolor=  link=  vlink=  alink= > These body attributes have now been deprecated, and should not be used in XHTML. CSS Formatting Background When HTML became popular among users who were not scientists, the limited formatting offered by the built-in tags was not enough for users who wanted a more artistic layout. Netscape,

More information

STAR OFFICE WRITER. Lesson 2

STAR OFFICE WRITER. Lesson 2 Lesson 2 STAR OFFICE WRITER 1. A is a named set of defaults for formatting text. a. Font b. Tab c. Page d. Style 2. is the keyboard shortcut for justified alignment. a. Ctrl + J b. Ctrl + C c. Ctrl + V

More information

Introduction. Format Text. Word 2010 Formatting Text. To Change the Font Size: Page 1

Introduction. Format Text. Word 2010 Formatting Text. To Change the Font Size: Page 1 Word 2010 Formatting Text Introduction Page 1 To create and design effective documents, you need to know how to format text. In addition to making your document more appealing, formatted text can draw

More information

Appendix D CSS Properties and Values

Appendix D CSS Properties and Values HTML Appendix D CSS Properties and Values This appendix provides a brief review of Cascading Style Sheets (CSS) concepts and terminology, and lists CSS level 1 and 2 properties and values supported by

More information

The same can also be achieved by clicking on Format Character and then selecting an option from the Typeface list box.

The same can also be achieved by clicking on Format Character and then selecting an option from the Typeface list box. CHAPTER 2 TEXT FORMATTING A text without any special formatting can have a monotonous appearance. To outline text, to highlight individual words, quotations, or references, or to separate certain parts

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

Introduction to Web Design CSS Reference

Introduction to Web Design CSS Reference Inline Style Syntax: Introduction to Web Design CSS Reference Example: text Internal Style Sheet Syntax: selector {property: value; Example:

More information

Introduction to Web Design CSS Reference

Introduction to Web Design CSS Reference Inline Style Syntax: Introduction to Web Design CSS Reference Example: text Internal Style Sheet Syntax: selector {property: value; Example:

More information

Unit 3--Alignment, Formatting Font--Size, Color, Style [Bold, Italic, and Underline] Block

Unit 3--Alignment, Formatting Font--Size, Color, Style [Bold, Italic, and Underline] Block Unit 3--Alignment, Formatting Font--Size, Color, Style [Bold, Italic, and Underline] Block Use the mouse pointer to select the text (or put a blue highlight behind it). Then, make the changes you need.

More information

Using TRNSHELL TRNSED The TRNSYS Environment Programs

Using TRNSHELL TRNSED The TRNSYS Environment Programs Using TRNSHELL & TRNSED The TRNSYS Environment Programs Version 2.0 for Windows 95 and Windows NT 4.0 NOTICE: This version of the TRNSHELL/TRNSED manual is to be used with TRNSYS Versions 14.2 for Windows.

More information

Excel Tutorial 2: Formatting Workbook Text and Data

Excel Tutorial 2: Formatting Workbook Text and Data Excel Tutorial 2: Formatting Workbook Text and Data Microsoft Office 2013 Objectives Change fonts, font style, and font color Add fill colors and a background image Create formulas to calculate sales data

More information

Reading 2.2 Cascading Style Sheets

Reading 2.2 Cascading Style Sheets Reading 2.2 Cascading Style Sheets By Multiple authors, see citation after each section What is Cascading Style Sheets (CSS)? Cascading Style Sheets (CSS) is a style sheet language used for describing

More information

MICROSOFT WORD 2010 BASICS

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

More information

Excel To KML - Display Excel files on Google Earth.

Excel To KML - Display Excel files on Google Earth. Page 1 of 6 Earth Point Real Estate Home Introduction Q & A County Records Property Search County GIS Utilities Township & Range Excel To KML Around Town Press Blog About Local Homes, Global View Home

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

Excel 2010: Getting Started with Excel

Excel 2010: Getting Started with Excel Excel 2010: Getting Started with Excel Excel 2010 Getting Started with Excel Introduction Page 1 Excel is a spreadsheet program that allows you to store, organize, and analyze information. In this lesson,

More information

Preview from Notesale.co.uk Page 2 of 61

Preview from Notesale.co.uk Page 2 of 61 Modify a table Applying styles to tables; banding rows and columns; inserting total rows; removing styles from tables Filter and sort a table Filtering records; sorting data on multiple columns; changing

More information

Using the Text Editor Tutorial

Using the Text Editor Tutorial Using the Text Editor Tutorial The Text Editor in Blackboard allows you to create and edit text. Whether you are adding an Item, posting to the Discussion Board, or writing a blog post, the text box for

More information

Creating Web Pages with SeaMonkey Composer

Creating Web Pages with SeaMonkey Composer 1 of 26 6/13/2011 11:26 PM Creating Web Pages with SeaMonkey Composer SeaMonkey Composer lets you create your own web pages and publish them on the web. You don't have to know HTML to use Composer; it

More information

3.1 Introduction. 3.2 Levels of Style Sheets. - HTML is primarily concerned with content, rather than style. - There are three levels of style sheets

3.1 Introduction. 3.2 Levels of Style Sheets. - HTML is primarily concerned with content, rather than style. - There are three levels of style sheets 3.1 Introduction - HTML is primarily concerned with content, rather than style - However, tags have presentation properties, for which browsers have default values - The CSS1 cascading style sheet specification

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

Solo 4.6 Release Notes

Solo 4.6 Release Notes June9, 2017 (Updated to include Solo 4.6.4 changes) Solo 4.6 Release Notes This release contains a number of new features, as well as enhancements to the user interface and overall performance. Together

More information

Microsoft Word Introduction to Word Processors

Microsoft Word Introduction to Word Processors Microsoft Word 2007 Introduction to Word Processors Practical Objectives After completing this practical, you will be able to: Perform basic tasks in a word processor. Edit and format text. Work with tables

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

CSS for Styling CS380

CSS for Styling CS380 1 CSS for Styling The good, the bad and the 2 ugly! shashdot. News for nerds!! You will never, ever be bored here!

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

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

Karlen Communications Track Changes and Comments in Word. Karen McCall, M.Ed.

Karlen Communications Track Changes and Comments in Word. Karen McCall, M.Ed. Karlen Communications Track Changes and Comments in Word Karen McCall, M.Ed. Table of Contents Introduction... 3 Track Changes... 3 Track Changes Options... 4 The Revisions Pane... 10 Accepting and Rejecting

More information

Paragraph Formatting. Set line and paragraph spacing and indentation Create a numbered or bulleted list

Paragraph Formatting. Set line and paragraph spacing and indentation Create a numbered or bulleted list Lesson 4 Page 1 Paragraph Formatting Lesson Skill Matrix Skill Exam Objective Objective Number Setting Line Spacing in Text and Between Paragraphs Creating and Formatting a Bulleted List Creating and Formatting

More information

Microsoft Word. Part 2. Hanging Indent

Microsoft Word. Part 2. Hanging Indent Microsoft Word Part 2 Hanging Indent 1 The hanging indent feature indents each line except the first line by the amount specified in the By field in the Paragraph option under the format option, as shown

More information

Paragraph Formatting 4

Paragraph Formatting 4 Paragraph Formatting 4 LESSON SKILL MATRIX Skill Exam Objective Objective Number Setting Line Spacing in Text and Between Paragraphs Set line and paragraph spacing and indentation. 2.2.3 Creating and Formatting

More information

- HTML is primarily concerned with content, rather than style. - However, tags have presentation properties, for which browsers have default values

- HTML is primarily concerned with content, rather than style. - However, tags have presentation properties, for which browsers have default values 3.1 Introduction - HTML is primarily concerned with content, rather than style - However, tags have presentation properties, for which browsers have default values - The CSS1 cascading style sheet specification

More information

CSS: The Basics CISC 282 September 20, 2014

CSS: The Basics CISC 282 September 20, 2014 CSS: The Basics CISC 282 September 20, 2014 Style Sheets System for defining a document's style Used in many contexts Desktop publishing Markup languages Cascading Style Sheets (CSS) Style sheets for HTML

More information

The first time you open Word

The first time you open Word Microsoft Word 2010 The first time you open Word When you open Word, you see two things, or main parts: The ribbon, which sits above the document, and includes a set of buttons and commands that you use

More information

WORD XP/2002 USER GUIDE. Task- Formatting a Document in Word 2002

WORD XP/2002 USER GUIDE. Task- Formatting a Document in Word 2002 University of Arizona Information Commons Training Page 1 of 21 WORD XP/2002 USER GUIDE Task- Formatting a Document in Word 2002 OBJECTIVES: At the end of this course students will have a basic understanding

More information

CMPT 165 INTRODUCTION TO THE INTERNET AND THE WORLD WIDE WEB

CMPT 165 INTRODUCTION TO THE INTERNET AND THE WORLD WIDE WEB CMPT 165 INTRODUCTION TO THE INTERNET AND THE WORLD WIDE WEB Unit 3 Cascading Style Sheets (CSS) Slides based on course material SFU Icons their respective owners 1 Learning Objectives In this unit you

More information

In this document there are few other tips for you to use to get practice in different aspects.

In this document there are few other tips for you to use to get practice in different aspects. Högskolan Dalarna Solar Energy Research Center SERC School of Industrial Leadership 781 88 Borlänge Tel: 023-77 87 07, Fax: 023-77 87 01 cba@du.se Chris Bales SolNET PhD Course Dynamic Simulation and Cultural

More information

WebStudio User Guide. OpenL Tablets BRMS Release 5.18

WebStudio User Guide. OpenL Tablets BRMS Release 5.18 WebStudio User Guide OpenL Tablets BRMS Release 5.18 Document number: TP_OpenL_WS_UG_3.2_LSh Revised: 07-12-2017 OpenL Tablets Documentation is licensed under a Creative Commons Attribution 3.0 United

More information

Microsoft. Computer Training Center 1515 SW 10 th Avenue Topeka KS

Microsoft. Computer Training Center 1515 SW 10 th Avenue Topeka KS Microsoft Computer Training Center 1515 SW 10 th Avenue Topeka KS 66604-1374 785.580.4606 class@tscpl.org www.tscpl.org Microsoft Word 2007 Introduction to Word Processing 1 How to Start Word is a full-featured

More information

WEEK NO. 12 MICROSOFT EXCEL 2007

WEEK NO. 12 MICROSOFT EXCEL 2007 WEEK NO. 12 MICROSOFT EXCEL 2007 LESSONS OVERVIEW: GOODBYE CALCULATORS, HELLO SPREADSHEET! 1. The Excel Environment 2. Starting A Workbook 3. Modifying Columns, Rows, & Cells 4. Working with Worksheets

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

Developing successful posters using Microsoft PowerPoint

Developing successful posters using Microsoft PowerPoint Developing successful posters using Microsoft PowerPoint PRESENTED BY ACADEMIC TECHNOLOGY SERVICES University of San Diego Goals of a successful poster A poster is a visual presentation of your research,

More information

Workshare Compare Server 9.5.2

Workshare Compare Server 9.5.2 Workshare Compare Server 9.5.2 Rendering Set Guide May 2018 9.5.2.4144 Workshare Compare Server 9.5 Rendering Set Guide Table of Contents Chapter 1: Introducing Rendering Sets...4 What are Rendering Sets?...5

More information

Setup Contacts Add Compose Letter Compose Letter

Setup Contacts Add Compose Letter Compose Letter 17 WORD-RITE Now that we have explored the Contacts and Campaigns sections of the program, it is time to work with WordRite, the integrated, full-function Rich Text word processor that is included with

More information

A cell is highlighted when a thick black border appears around it. Use TAB to move to the next cell to the LEFT. Use SHIFT-TAB to move to the RIGHT.

A cell is highlighted when a thick black border appears around it. Use TAB to move to the next cell to the LEFT. Use SHIFT-TAB to move to the RIGHT. Instructional Center for Educational Technologies EXCEL 2010 BASICS Things to Know Before You Start The cursor in Excel looks like a plus sign. When you click in a cell, the column and row headings will

More information

Candy is Dandy Project (Project #12)

Candy is Dandy Project (Project #12) Candy is Dandy Project (Project #12) You have been hired to conduct some market research about M&M's. First, you had your team purchase 4 large bags and the results are given for the contents of those

More information

Nauticom NetEditor: A How-to Guide

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

More information

Microsoft Excel 2010

Microsoft Excel 2010 Microsoft Excel 2010 omar 2013-2014 First Semester 1. Exploring and Setting Up Your Excel Environment Microsoft Excel 2010 2013-2014 The Ribbon contains multiple tabs, each with several groups of commands.

More information

EXCEL BASICS: PROJECTS

EXCEL BASICS: PROJECTS EXCEL BASICS: PROJECTS In this class, you will be practicing with three basic Excel worksheets to learn a variety of foundational skills necessary for more advanced projects. This class covers: Three Project

More information

Creating Forms. Starting the Page. another way of applying a template to a page.

Creating Forms. Starting the Page. another way of applying a template to a page. Creating Forms Chapter 9 Forms allow information to be obtained from users of a web site. The ability for someone to purchase items over the internet or receive information from internet users has become

More information

PowerPoint Module 2: Modifying a Presentation

PowerPoint Module 2: Modifying a Presentation 1. In the Outline pane, a highlighted slide icon next to the slide number indicates that the slide is selected. True PowerPoint 26 LEARNING OBJECTIVES: BESK.OFIN.16.297 - Enter text in Outline view 2.

More information

Microsoft Excel Level 1

Microsoft Excel Level 1 Microsoft Excel 2010 Level 1 Copyright 2010 KSU Department of Information Technology Services This document may be downloaded, printed, or copied for educational use without further permission of the Information

More information

Formatting Values. 1. Click the cell(s) with the value(s) to format.

Formatting Values. 1. Click the cell(s) with the value(s) to format. Formatting Values Applying number formatting changes how values are displayed it doesn t change the actual information. Excel is often smart enough to apply some number formatting automatically. For example,

More information

In this course we will go over the basic functions of Microsoft Word, more advanced functions are omitted from this class and walkthrough.

In this course we will go over the basic functions of Microsoft Word, more advanced functions are omitted from this class and walkthrough. INTRODUCTION TO MICROSOFT WORD MARGARET E. HEGGAN FREE PUBLIC LIBRARY Microsoft Word is a program called a WORD PROCESSOR WORD PROCESSOR refers to a program in which the user inputs text which is formatted

More information

From: 8/01/2018

From:   8/01/2018 Poster preparation tips This document aims to give advice to people wishing to create posters To print your poster, please use the online submission form Request Poster Printing (A0, A1, A2) from: https://cern.ch/printservice

More information

CSC 443: Web Programming

CSC 443: Web Programming 1 CSC 443: Web Programming Haidar Harmanani Department of Computer Science and Mathematics Lebanese American University Byblos, 1401 2010 Lebanon CSC443: Web Programming 2 for Styling The good, the bad

More information

Getting Started with. Office 2008

Getting Started with. Office 2008 Getting Started with Office 2008 Copyright 2010 - Information Technology Services Kennesaw State University This document may be downloaded, printed, or copied, for educational use, without further permission

More information

Word Processing Basics Using Microsoft Word

Word Processing Basics Using Microsoft Word Word Processing Basics Using Microsoft Word lab 3 Objectives: Upon successful completion of Lab 3, you will be able to Use Word to create a simple word processing document Understand the concept of word

More information

Additional Support and Disability Advice Centre

Additional Support and Disability Advice Centre Additional Support and Disability Advice Centre GUIDELINES TO PRODUCING ACCESSIBLE WORD DOCUMENTS 1 INTRODUCTION As well as allowing adaptation of font, background colour and layout to suit personal preferences,

More information

Introduction to Excel 2007

Introduction to Excel 2007 Introduction to Excel 2007 These documents are based on and developed from information published in the LTS Online Help Collection (www.uwec.edu/help) developed by the University of Wisconsin Eau Claire

More information

CROMWELLSTUDIOS. Content Management System Instruction Manual V1. Content Management System. V1

CROMWELLSTUDIOS. Content Management System Instruction Manual V1.   Content Management System. V1 Content Management System Instruction Manual V1 www.cromwellstudios.co.uk Cromwell Studios Web Services Content Management System Manual Part 1 Content Management is the system by which you can change

More information

Blackboard staff how to guide Accessible Course Design

Blackboard staff how to guide Accessible Course Design The purpose of this guide is to help online course authors in creating accessible content using the Blackboard page editor. The advice is based primarily on W3C s Web Content Accessibility Guidelines 1.0

More information

Microsoft Word Basic Features

Microsoft Word Basic Features Aditya College, Gwalior 1 Microsoft Word Basic Features Lesson 1 familiarized you with the the Microsoft Word window. You are now ready to learn how to create a Word document. To begin, open Microsoft

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

Section 1 Microsoft Excel Overview

Section 1 Microsoft Excel Overview Course Topics: I. MS Excel Overview II. Review of Pasting and Editing Formulas III. Formatting Worksheets and Cells IV. Creating Templates V. Moving and Navigating Worksheets VI. Protecting Sheets VII.

More information

New York City College of Technology. Microsoft Word Contact Information:

New York City College of Technology. Microsoft Word Contact Information: New York City College of Technology Microsoft Word 2016 Contact Information: 718-254-8565 ITEC@citytech.cuny.edu Opening Word 2016 Begin by clicking on the bottom left corner icon on the desktop. From

More information

Admin. Midterm 1 on. Oct. 13 th (2 weeks from today) Coursework:

Admin. Midterm 1 on. Oct. 13 th (2 weeks from today) Coursework: Midterm 1 on Admin Oct. 13 th (2 weeks from today) Coursework: E1 grade released: please see Karoon (TA) at his office hours (Tues at 12-1pm) E2 due tomorrow E3 posted yesterday; due this Friday 11:59pm

More information

Tutorials. Lesson 3 Work with Text

Tutorials. Lesson 3 Work with Text In this lesson you will learn how to: Add a border and shadow to the title. Add a block of freeform text. Customize freeform text. Tutorials Display dates with symbols. Annotate a symbol using symbol text.

More information

Grade: 7 Lesson name: Creating a School News Letter Microsoft Word 2007

Grade: 7 Lesson name: Creating a School News Letter Microsoft Word 2007 Grade: 7 Lesson name: Creating a School News Letter Microsoft Word 2007 1. Open Microsoft Word 2007. Word will start up as a blank document. 2. Change the margins by clicking the Page Layout tab and clicking

More information

GETTING STARTED WITH MICROSOFT WORD 2016

GETTING STARTED WITH MICROSOFT WORD 2016 For class, open a Blank Document. GETTING STARTED WITH MICROSOFT WORD 2016 MICROSOFT WORD PART 2 OFFICE 2016 INSERTING TEXT: Look at the document window and find the blinking cursor, this is where the

More information

Learning Worksheet Fundamentals

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

More information

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

Microsoft Excel 2007 Level 1

Microsoft Excel 2007 Level 1 Information Technology Services Kennesaw State University Microsoft Excel 2007 Level 1 Copyright 2008 KSU Dept. of Information Technology Services This document may be downloaded, printed or copied for

More information

Basic Microsoft Word

Basic Microsoft Word (Demonstrated using Windows XP) An Introduction to Word Processing Adapted from Taskstream Word Tutorial (2005) < http://www.taskstream.com > Updated 4/05 by Dr. Bruce Ostertag What can Microsoft Word

More information

Creating Accessible Word Documents

Creating Accessible Word Documents Creating Accessible Word Documents 1. Formatting the Titles and Headings Structure is added to documents by using styles. Using styles helps your readers to visually get a sense of the structure of your

More information

Visual C# Program: Resistor Sizing Calculator

Visual C# Program: Resistor Sizing Calculator C h a p t e r 4 Visual C# Program: Resistor Sizing Calculator In this chapter, you will learn how to use the following Visual C# Application functions to World Class standards: Opening Visual C# Editor

More information

Corel Ventura 8 Introduction

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

More information

How to Make Graphs with Excel 2007

How to Make Graphs with Excel 2007 Appendix A How to Make Graphs with Excel 2007 A.1 Introduction This is a quick-and-dirty tutorial to teach you the basics of graph creation and formatting in Microsoft Excel. Many of the tasks that you

More information

Introduction. Headers, Footers, and More. Google Documents Headers, Footers, and Page Breaks. Headers and Footers. Page 1

Introduction. Headers, Footers, and More. Google Documents Headers, Footers, and Page Breaks. Headers and Footers. Page 1 Google Documents Headers, Footers, and Page Breaks Introduction Page 1 You can modify the layout of your document by utilizing the header and footer sections and inserting page breaks. Headers and footers

More information

Center for Faculty Development and Support Making Documents Accessible

Center for Faculty Development and Support Making Documents Accessible Center for Faculty Development and Support Making Documents Accessible in Word 2007 Tutorial CONTENTS Create a New Document and Set Up a Document Map... 3 Apply Styles... 4 Modify Styles... 5 Use Table

More information

Setup Examples. RTPView Project Program

Setup Examples. RTPView Project Program Setup Examples RTPView Project Program RTPView Project Program Example 2005, 2007, 2008, 2009 RTP Corporation Not for reproduction in any printed or electronic media without express written consent from

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

Section 8 Formatting

Section 8 Formatting Section 8 Formatting By the end of this Section you should be able to: Format Numbers, Dates & Percentages Change Cell Alignment and Rotate Text Add Borders and Colour Change Row Height and Column Width

More information

The Domino Designer QuickStart Tutorial

The Domino Designer QuickStart Tutorial The Domino Designer QuickStart Tutorial 1. Welcome The Domino Designer QuickStart Tutorial You've installed Domino Designer, you've taken the Designer Guided Tour, and maybe you've even read some of the

More information

This section provides an overview of the features available within the Standard, Align, and Text Toolbars.

This section provides an overview of the features available within the Standard, Align, and Text Toolbars. Using Toolbars Overview This section provides an overview of the features available within the Standard, Align, and Text Toolbars. Using toolbar icons is a convenient way to add and adjust label objects.

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

Schoolwires Editor Best Practices. Schoolwires Centricity2

Schoolwires Editor Best Practices. Schoolwires Centricity2 Schoolwires Editor Best Practices Schoolwires Centricity2 Schoolwires Centricity2 Editor Best Practices Table of Contents Introduction... 1 Practices for All Browsers... 2 Bullets Left Justify Bullets...

More information

TABLE OF CONTENTS TABLE OF CONTENTS... 1 INTRODUCTION... 2 USING WORD S MENUS... 3 USING WORD S TOOLBARS... 5 TASK PANE... 9

TABLE OF CONTENTS TABLE OF CONTENTS... 1 INTRODUCTION... 2 USING WORD S MENUS... 3 USING WORD S TOOLBARS... 5 TASK PANE... 9 TABLE OF CONTENTS TABLE OF CONTENTS... 1 INTRODUCTION... 2 USING WORD S MENUS... 3 DEFINITIONS... 3 WHY WOULD YOU USE THIS?... 3 STEP BY STEP... 3 USING WORD S TOOLBARS... 5 DEFINITIONS... 5 WHY WOULD

More information

Making Backgrounds With Paint Shop Pro

Making Backgrounds With Paint Shop Pro Making Backgrounds With Paint Shop Pro A good Web site deserves a good background. Whether you decide on a single color, a faded repeated logo, a textured tile, or a border, the background of your Web

More information

IS2000. Administrative Operator s Guide

IS2000. Administrative Operator s Guide IS2000 Administrative Operator s Guide Table of Contents Logging Off... 7 Event Manager... 7 HARDWARE MANAGER... 8 Maneuvering the Hardware Tree... 8 Unlocking the Module... 8 Viewing the Hardware Tree...

More information

Phone: Fax: Web: -

Phone: Fax: Web:  - Table of Contents How to Use GTWIN 1. Functions of Parts...1-1 1.1 Screen Names of GTWIN... 1-2 1.2 Menu Bar... 1-3 1.3 Toolbar... 1-4 1.4 Screen Manager... 1-6 1.5 Parts Library... 1-7 1.6 Graphicbar...

More information

MS Excel Henrico County Public Library. I. Tour of the Excel Window

MS Excel Henrico County Public Library. I. Tour of the Excel Window MS Excel 2013 I. Tour of the Excel Window Start Excel by double-clicking on the Excel icon on the desktop. Excel may also be opened by clicking on the Start button>all Programs>Microsoft Office>Excel.

More information

- The CSS1 specification was developed in CSSs provide the means to control and change presentation of HTML documents

- The CSS1 specification was developed in CSSs provide the means to control and change presentation of HTML documents 3.1 Introduction - The CSS1 specification was developed in 1996 - CSS2 was released in 1998 - CSS3 is on its way - CSSs provide the means to control and change presentation of HTML documents - CSS is not

More information

COMSC-031 Web We S ite Site Development Development- Part 2 Part-Time Instructor: Joenil Mistal November 7, 2013

COMSC-031 Web We S ite Site Development Development- Part 2 Part-Time Instructor: Joenil Mistal November 7, 2013 COMSC-031 Web Site Development- Part 2 Part-Time Instructor: Joenil Mistal November 7, 2013 Chapter 12 12 Creating and Applying Cascading Style Sheets This chapter shows you how to use Cascading Style

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

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

Budget Exercise for Intermediate Excel

Budget Exercise for Intermediate Excel Budget Exercise for Intermediate Excel Follow the directions below to create a 12 month budget exercise. Read through each individual direction before performing it, like you are following recipe instructions.

More information

Formatting documents in Microsoft Word Using a Windows Operating System

Formatting documents in Microsoft Word Using a Windows Operating System Formatting documents in Microsoft Word Using a Windows Operating System 2017-07-20 Research & Scholarship, McLaughlin Library University of Guelph 50 Stone Road East Guelph, Ontario N1G 2W1 2 Contents

More information

Introduction to Microsoft Word 2007 Quickguide

Introduction to Microsoft Word 2007 Quickguide Introduction to Microsoft Word 2007 Quickguide Opening Word -Click the Start button -Click Programs from the start menu -Select Microsoft Office -Click Microsoft Office Word 2007 -A new blank document

More information

What can Word 2013 do?

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

More information