Learn the three palettes. Learn how data is passed in LabVIEW. Create a subvi using two different methods.

Size: px
Start display at page:

Download "Learn the three palettes. Learn how data is passed in LabVIEW. Create a subvi using two different methods."

Transcription

1 UNM The LabVIEW Programming Environment and Basic Operations Introduction In this hands-on, you will learn about the LabVIEW programming environment. You will also write a simple Virtual Instrument (VI) to incorporate basic operations in LabVIEW. Finally, you will convert your programs into subvis. Objectives Learn the three parts of a VI. Learn the three palettes. Learn how data is passed in LabVIEW. Distinguish between controls and indicators on the front panel and block diagram. Create a subvi using two different methods. References Getting Started with LabVIEW. View the 12 Units. On Youtube see: D7BB78F9C View the first 10 units LabVIEW Technical Resources: Theory LabVIEW Programming Basics Introduction LabVIEW is a graphical programming language environment that uses icons instead of lines of text to create applications. In contrast to text-based programming languages, where text instructions determine program execution, LabVIEW uses dataflow programming, where the flow of data determines the execution sequence. In LabVIEW, you build a user interface by using a set of tools and objects.

2 The user interface is known as the front panel. You then add code using graphical representations of functions to control the front panel objects. The block diagram contains this code. In some ways, the block diagram resembles a flowchart. LabVIEW programs are called virtual instruments, or VIs, because initially their appearance and operation imitate physical instruments, such as oscilloscopes and multimeters. Every VI uses functions that manipulate input from the user interface or other sources and display that information or move it to other files or other computers. A VI contains the following three components!: Front panel Serves as the user interface. See Figure 2. Block diagram Contains the graphical source code that defines the functionality of the VI. See Figure 4. Icon and connector pane Identifies the VI so that you can use the VI in another VI. A VI within another VI is called a subvi. A subvi corresponds to a subroutine in text-based programming languages. See Figure 5 where the item in the drop down menu is Select a VI. Front Panel Figure 2: Blank Front Panel

3 Figure 3: Front Panel showing Drop Down Menu, Tools, & Controls Palettes The front panel is the user interface of the VI. You build the front panel with controls and indicators, which are the interactive input and output terminals of the VI, respectively. Controls are knobs, pushbuttons, dials, and other input devices. Indicators are graphs, LEDs, and other displays. Controls simulate instrument input devices and supply data to the block diagram of the VI. Indicators simulate instrument output devices and display data the block diagram acquires or generates. Items to Note on Front Panel In Figure 3, the Left Red Arrow shows the title of the VI. Right Red Arrow indicates the ICON and Connector Panel used when this VI is used as a SubVI. Circle A is the drop down menu for selecting the Controls and Tools Palettes Display. Also the Error List can be selected here. Circle B is the Tools Palette used to select the function of the mouse. The four most used functions are: the controls operator, first row left; the selection control, first row middle; the text entry control, first row right; and the connection tool, second row left. Circle C is the Controls Palette where the various controls and indicators are selected for inclusion on the Front Panel.

4 Block Diagram Figure 4: Blank Block Diagram Figure 5: Block Diagram with Function and Tools Palettes After you build the front panel, you add code using graphical representations of functions to control the front panel objects. The block diagram contains this graphical source code. Front panel objects appear as terminals on the block diagram.

5 Additionally, the block diagram contains functions and structures from built-in LabVIEW VI libraries. Wires connect each of the nodes on the block diagram, including control and indicator terminals, functions, and structures. LabVIEW Palettes LabVIEW palettes give you the options you need to create and edit the front panel and block diagram. The Tools palette is available on the front panel and the block diagram. A tool is a special operating mode of the mouse cursor. When you select a tool, the mouse icon changes to the selected tool icon. Use the tools to operate and modify front panel and block diagram objects. Select View» Tools Palette to display the Tools palette. You can place the Tools palette anywhere on the screen. See Figure 3 & 5. If automatic tool selection is enabled [ click the top most button on the Tool Palette] and you move the cursor over objects on the front panel or block diagram, LabVIEW automatically selects a likely needed, corresponding tool from the Tools palette. The Controls palette is available only on the front panel. The Controls palette contains the controls and indicators you use to create the front panel. Select View» Controls Palette or right-click the front panel workspace to display the Controls palette. You can place the Controls palette anywhere on the screen. See C in Figure 3. The Functions palette is available only on the block diagram. The Functions palette contains the VIs and functions you use to build the block diagram. Select View» Functions Palette or rightclick the block diagram workspace to display the Functions palette. You can place the Functions palette anywhere on the screen. See Figure 5. Dataflow Programming LabVIEW follows a dataflow model for running VIs. A block diagram node executes when all its inputs are available. When a node completes execution, it supplies its output data to its output terminals. This passes the output data to the next node in the dataflow path. Creating SubVIs Introduction After you build a VI and create its icon and connector pane, you can use it in another VI. A VI called from the block diagram of another VI is called a subvi. A subvi corresponds to a

6 subroutine in text-based programming languages. The node is not the subvi itself, just as a subroutine call statement in a program is not the subroutine itself. Setting up the Connector Pane Figure 6: Connector Pane on Front Panel To use a VI as a subvi, you need to build/connect a connector pane. The connector pane is a set of terminals that corresponds to the controls and indicators of that VI, similar to the parameter list of a function call in text-based programming languages. The connector pane defines the inputs and outputs you can wire to the VI so you can use it as a subvi. Define connections by assigning a front panel control or indicator to each of the connector pane terminals. In the newer versions of LabVIEW, the Connector Panel is visible in the upper right corner of the front panel window. (Older version: The connector pane and the icon image toggles when one or the other is right clicked.) Each rectangle on the connector pane represents a terminal or data port into or out of the VI. Use the wiring tool [Figure 7] to assign inputs and outputs. The number of terminals LabVIEW displays on the connector pane depends on the number of controls and indicators on the front panel. Figure 7: Wiring Tool in Tool Palette The connector pane has, at most, 28 terminals. If your front panel contains more than 28 controls and indicators that you want to use programmatically, group some of them into a cluster (a data type similar to an array) and assign the cluster to a terminal on the connector pane. See Figure 8.

7 Figure 8: Cluster Function for Block Diagram To set the number of terminals needed, select a different terminal pattern for a VI by rightclicking the connector pane and selecting Patterns from the drop-down menu. See Figure 9. Select a connector pane pattern with extra terminals. You can leave the extra terminals unconnected until you need them. This flexibility enables you to make changes with minimal effect on the hierarchy of the VIs. Figure 9: Connector Pane Terminal Patterns If you create a group of subvis that you often use together, give the subvis a consistent connector pane with common inputs in the same location to help you remember where to locate each input. If you create a subvi that produces an output another subvi uses as the input, align

8 the input and output connections to simplify the wiring patterns. Place the error in clusters on the lower left corner of the connector pane and the error out clusters on the lower right corner. Settings Required, Recommended, and Optional Inputs and Outputs You can designate which inputs and outputs are required, recommended, and optional to prevent users from forgetting to wire subvi connections. After being connected, right-click a terminal in the connector pane and select This Connection Is from the drop-down menu. A checkmark indicates the terminal setting. Select Required, Recommended, or Optional. See Figure 10. Figure 10: Selecting Required, Recommended, or Optional for a terminal. For terminal inputs, required means that the block diagram on which the subvi is dropped will be broken if the required inputs are not wired. Required is not available for terminal outputs. For terminal inputs and outputs, recommended means that the block diagram on which the subvi is dropped can be run if the input is not wired but the Warnings dialog box will generate a warning that the input has not been wired. Optional means that the block diagram on which the subvi is dropped can be run and will not generate any warnings if the terminal input or output is not wired. Inputs and outputs of VIs in vi.lib are already marked as Required, Recommended, or Optional. LabVIEW sets inputs and outputs of VIs you create to Recommended by default. Set a terminal setting to required only if the VI must have the input or output to run properly. In the Context Help window, required connections are bold, recommended connections are plain text, and optional connections are dimmed if you have the Detailed view selected or do not appear if you have the Simple view selected. Creating an Icon

9 Figure 11: Icon Editor Every VI displays an icon in the upper right corner of the front panel and block diagram windows. An icon is a graphical representation of a VI. It can contain text, images, or a combination of both. If you use a VI as a subvi, the icon identifies the subvi on the block diagram of the VI. The default icon contains a number that indicates how many new VIs you have opened since launching LabVIEW. Create custom icons to replace the default icon by right-clicking the icon in the upper right corner of the front panel or block diagram and selecting Edit Icon (Figure 11) from the drop-down menu or by double-clicking the icon in the upper right corner of the front panel or block diagram. Templates Displays icon templates you can use as a background for the icon. This page displays all.png,.bmp, and.jpg files in the Libraries\Documents\LabVIEW Data\Icon Templates directory. Category Lists categories of icon templates from which you can select. The names of the categories correspond to the names of the subfolders in the LabVIEW Data\Icon Templates directory. The All Templates category is always visible and includes all icon templates in the LabVIEW Data\Icon Templates directory. The All Templates category is always visible and includes all icon templates in the LabVIEW Data\Icon Templates directory. Filter templates by keyword Specifies a keyword to use to filter the list of icon templates. The Icon Editor dialog box displays all icon templates whose name contains the keyword you specify. Icon Text Specifies the text you want to display in the icon. Line text Specifies a line of text for the icon. Line color Specifies the color of the corresponding line of text for the icon.

10 Font Specifies the font of all text you enter on the Icon Text page. Alignment Specifies the alignment of all text you enter on the Icon Text page. Size Specifies the font size of all text you enter on the Icon Text page. Center text vertically Specifies whether to center the lines of text vertically within the icon. If you use an icon template with a banner and place a checkmark in this checkbox, the Icon Editor dialog box centers the icon text vertically within the body of the icon. Capitalize text Specifies whether to capitalize all text you enter on the Icon Text page. Glyphs Displays glyphs you can include in the icon. The Icon Editor dialog box displays all.png,.bmp, and.jpg files in the LabVIEW Data\Glyphs directory. By default, this page includes all glyphs in the Icon Library at ni.com. Select Tools» Synchronize with ni.com Icon Library to display the Synchronize with Icon Library dialog box and synchronize the LabVIEW Data\Glyphs directory with the most recent glyphs in the Icon Library. Layers Displays all layers of the icon. Select Layers»Show Layers Page to display this page if it is not already showing. Icon Text Displays the preview, name, opacity, and visibility of the Icon Text layer. This layer consists of all text you enter on the Icon Text page of the Icon Editor dialog box. You can change only the opacity and visibility of this layer. User Layers Displays the preview, name, opacity, and visibility of all user layers. You can select a user layer by clicking the corresponding preview on the Layers page or by using the Move tool to select a layer in the Preview area of the Icon Editor dialog box. Add Layer Adds a user layer. Remove Layer Removes the layer(s) you select. Move Up Moves the layer(s) you select up one layer level. Move Down Moves the layer(s) you select down one layer level. Icon Template Displays the preview, name, opacity, and visibility of the Icon Template layer. This layer consists of the icon template you select on the Templates page of the Icon Editor dialog box. You can change only the opacity and visibility of this layer. Creating SubVIs from Sections of a VI Convert a section of a VI into a subvi by using the Positioning tool to select the section of the block diagram you want to reuse and selecting Edit» Create SubVI (Figure 12). An icon for the new subvi replaces the selected section of the block diagram. LabVIEW creates controls and indicators for the new subvi and wires the subvi to the existing wires.

11 Creating a subvi from a selection is convenient but still requires careful planning to create a logical hierarchy of VIs. Consider which objects to include in the selection and avoid changing the functionality of the resulting VI. Equations Converting ºC to ºF Figure 12: Edit Command: Creating a SubVI The formula for converting degrees Celsius to degrees Fahrenheit is as follows: F = (1.8 * C) + 32 For example, to convert a Celsius temperature of 100 degrees into degrees Fahrenheit, first multiply the Celsius temperature reading by 1.8 to get 180. Then add 32 to 180 and get 212 degrees Fahrenheit.

12 Slope of a Line The formula for the slope of a line is as follows: Slope = (Y2 Y1) / (X2 X1) where (X1, Y1) and (X2, Y2) are points on the line. Part 1. Converting ºC to ºF In Class Procedure In Part 1, you will create a VI that can be used as a sub-vi in a later exercise. 1. Launch LabVIEW from Start >> Programs >> National Instruments >> LabVIEW 201x >> LabVIEW 201x. (Where x is the year of the version being used) Click File >> New VI to open a new front panel. 2. (Optional) Select Window» Tile Left and Right to display the front panel and block diagram side by side. See Figure 13. Figure 13: Tile Left and Right 3. Create a numeric digital control. You will use this control to enter the value for degrees Centigrade. a. Right click the Front Panel work area to get to the Control Palette. b. Select the digital control on the Controls» Numeric palette. If the Controls palette is not visible, right-click an open area on the front panel to display it. See Figure 14.

13 Figure 14: Numeric Control on Controls Palette c. Move the control to the front panel and click to place the control. d. Type deg C inside the label and click outside the label or click the Enter button on the toolbar, shown at left. If you do not type the name immediately, LabVIEW uses a default label. You can edit a label at any time by using the Labeling tool, see Fig. 7 upper right A. 4. Create a numeric indicator. You will use this indicator to display the value for degrees Fahrenheit. a. Select the numeric indicator on the Controls» Numeric palette. See Figure 15.

14 Figure 15: Numeric Indicator on Controls Palette b. Move the indicator to the front panel and click to place the indicator. c. Type deg F inside the label and click outside the label or click the Enter button. See Figure 16. Figure 16: Front Panel User Interface for Temperature Conversion Program 5. Display the block diagram by clicking it or by selecting Window» Show Diagram. LabVIEW creates corresponding control and indicator terminals on the block diagram. The terminals represent the data type of the control or indicator. For example, a DBL terminal, shown at left in Fig 18, represents a double-precision, floating-point numeric control or indicator. 6. Select the Multiply and Add functions on the Functions» Numeric palette and place them on the block diagram. If the Functions palette is not visible, right-click an open area on the block diagram to display it. See Figure 17.

15 Figure 17: Getting to Numeric Functions on the Function Palette 7. Select the numeric constant on the Functions» Numeric palette and place two of them on the block diagram. It is further down the Numeric Function Menu. When you first place the numeric constant, it is highlighted so you can type a value. 9. Type 1.8 in one constant and repeat process for a second constant of If you moved the constants before you typed a label, use the Labeling tool to enter the values. Figure 18: C to F Program 9. Use the Wiring tool to wire the icons as shown in the block diagram in Figure 18. To wire from one terminal to another, use the Wiring tool to click the first terminal, move the tool to the second terminal, and click the second terminal. You can start wiring at either terminal. You can bend a wire by clicking to tack the wire down and moving the cursor in a perpendicular direction. To identify terminals on the nodes, right-click the Multiply and Add functions and select Visible Items» Terminals from the shortcut menu to display the connector pane. Return to the icons after wiring by right-clicking the functions and selecting Visible

16 Items» Terminals from the shortcut menu to remove the terminals uncheck Visible. When you move the Wiring tool over a terminal, the terminal area blinks, indicating that clicking will connect the wire to that terminal and a tip strip appears, listing the name of the terminal. To cancel a wire you started, press the <Esc> key or right-click. 10. Display the front panel by clicking it or by selecting Window» Show Front Panel or use <Ctrl E>. 11. Save the VI because you will use this VI later in the course. Select File» Save. Type ConvertCtoF.vi in the dialog box. Click the Save button. 12. Enter a number in the digital control and run the VI. a. Use the Operating tool or the Labeling tool to double-click the digital control and type a new number. b. Click the Run button to run the VI. Figure 19: Run Arrow when there are no errors c. Try several different numbers and run the VI again. 13. Double-click the icon in the upper right corner of the front panel [Figure 6] and activate the Icon Editor dialog box. See Figure Double-click the Select tool on the left side of the Icon Editor dialog box and select all the default icon by dragging the select tool across the entire icon. See Figure 20. Figure 20: Icon selection tool.

17 15. Go to Edit >> Clear All to remove the default icon. 16. Go to Layers tab, select the line tool and draw lines on the extreme most edges making a box 17. Go to the Icon Text tab, and type C [8 spaces] F into the Line 2 text box. 18. Go to the Layers tab a. Use the Pencil tool to create the arrow pointing from C to F. b. When the icon is complete, click the OK button to close the Icon Editor dialog box. The icon appears in the upper right corner of the front panel and block diagram. 18. Go to the Front Panel and locate the Connector Pane. In an Older Version LabVIEW, right-click the icon on the front panel and select Show Connector from the shortcut menu to define the connector pane terminal pattern. LabVIEW selects a connector pane pattern based on the number of controls and indicators on the front panel. For example, this front panel has two terminals, deg C and deg F, so LabVIEW selects a connector pane pattern with two terminals. 19. Assign the terminals to the digital control and digital indicator. a. Click the upper left terminal in the Connector Pane and the mouse tool should change to the wiring tool and the terminal becomes black. b. Now place the wiring tool over the deg C input control and click. This control is now connected to the program input terminal. The terminal should have changed an orange color. c. Click the upper right terminal in the Connector Pane and the deg F indicator to complete the program interface, [API, Application Program Interface] 20. Select File» Save to save the VI as C2F on the Desktop. 21. Test the program for proper operation with techniques described in Part 4. Be sure to record the input vales and results produced in a table in your lab notebook. 22. Select File» Close to close the VI. Part 2. Develop a Program to convert o F to o C. Follow the same steps as in Part 1 but with a different formula. Part 3. Calculating the Slope of a Line Using the techniques you learned in Part 1, create a VI to calculate the slope of a line. Then, transform the code into a subvi using the Edit» Create SubVI method. Save the VI as

18 Slope.vi. Save the subvi as SlopeSub.vi. The equation for slope is given in the Theory section. Open a new VI and complete the front panel and block diagram as follows: Front Panel Block Diagram before subvi After creating the subvi, your block diagram will resemble the one below. Block Diagram with subvi To create the subvi, use the selection tool (mouse) to high the athematic operators minus and divide and part of their connection wires. Do not have the data terminals selected. With this section highlighted go to the Edit drop-down menu and select Create SubVI. In the Block Diagram, the highlighted section should be replaced with a function box. Double click this function box.

19 The function box s Front Panel will open and it will have the same controls and indicator that the original VI had. Open the function box s Block Diagram and it will appear the same as the original VI s Block Diagram. Click the boxed x in the upper left corner of the subvi s Front Panel and a dialog will ask you to save this subvi. Click Save. A dialog window to save the file appears. Make the filename, slopesubvi and save it to the Desktop. Save the main program as Slope on the Desktop. Test your slope program as described in Part 4. Part 4. Testing the Programs Test the programs and report the results in the report. The test for a program should have predetermined set of test inputs and each test input should have an expected result or action. The test inputs here should test the range of the possible temperature inputs and obvious user input errors. Test inputs for the C to F converson program should include positive temperatures to positive temperatures (100 to 212), negative temperatures to positive temperatures (ie -5 deg C to? F), and negative temperatures to negative temperatures (-40 C to? F), and any limits ( C or degrees Fahrenheit). User errors would be attempting to input alpha characters into the input or enter a number below absolute zero. For the slope program test cases should product a positive slope, zero slope, negative slope, infinite slope, and no slope. Part 5. Lab Reporting There should be one report written by both partner. The lab report should follow the example report format on the class website. There should be a Title Page with the name of the report, the date, and the authors. The name should contain the word LabVIEW somewhere. There should be an Abstract consisting of a short explanation of what the report is about. This report was about LabVIEW programs for converting temperatures and determining line slopes. There should be a Table of Contents followed by a List of Figures, a List of Tables, a section describing the Background and References, a section describing the Lab Procedure and Equipment, a Theoretical Analysis section, a Verification Results section, and finally a Discussion section. The List of Figures should contain the figure number and figure title of all figure in the report.

20 The List of Tables should contain the table number and table name of all tables in the report. There will always be at least two tables the table of expected values and the table comparing the expected values with the measured (or produced) values. See Report Format on website. The Background and Reference section should provide the references used to understand, setup, and perform the experiment. It will include a reference to the experiment instructions, reference to books, articles, and manuals used in the experiment. The Lab Procedure and Equipment section will note the above reference to the experiment instructions as the procedure. Any variations from the referenced procedure should be noted in this section. This section should contain everything needed to perform the experiment and duplicate the results, either by reference or explicit statements. Circuit Diagrams should explicitly appear here. Besides the reference to the Lab Procedure, screen shots of the program s front panel and block diagram can appear in this section. The Theoretical Analysis section should explicitly state the formulas used and show the calculations to obtain the expected results. These expected results should use the actual measured values of the components used in the experiment. For this lab the formulas are the conversion formulas and the expected results are the converted temperature values for the input test cases. The Verification Results section should contain the actual results of the experiment and how they compare to the expected results. This information should be presented in a table where the first column is the name of the characteristic being measured, the second column is the expected value of the measurement, the third column is the actual value measured, the forth column is the error between the two values, the fifth column is the percentage error, and the last column is for comments. There should always be a comment if the percentage error is greater than 15%. This comment will express the reason for the large error. For this lab the tables would have the program input values, the expected output values (from the Theoretical Analysis section), the actual output, the difference between these two (should be zero in most cases but there can be some very small errors for some temperature values). The Discussion section should describe difficulties and possible improvements in accuracy concerning the measurements will be made. Any questions raised in the assignment will be answered. Any extensions, improvements, and suggestions for the experiment will be detailed. Questions 1. What is a VI? What are the three main parts of a VI? Briefly describe each. 2. What are the three palettes? Briefly describe each. 3. How is data passed in LabVIEW? 4. How can you tell the difference between controls and indicators on the front panel? On the block diagram?

21 5. Explain the two methods of creating a sub-vi.

22

23

The LabVIEW Programming Environment and Basic Operations

The LabVIEW Programming Environment and Basic Operations Page 1 of 14 UNM The LabVIEW Programming Environment and Basic Operations Introduction In this hands-on, you will learn about the LabVIEW programming environment. You will also write a simple Virtual Instrument

More information

NI LabView READ THIS DOCUMENT CAREFULLY AND FOLLOW THE INSTRIUCTIONS IN THE EXERCISES

NI LabView READ THIS DOCUMENT CAREFULLY AND FOLLOW THE INSTRIUCTIONS IN THE EXERCISES NI LabView READ THIS DOCUMENT CAREFULLY AND FOLLOW THE Introduction INSTRIUCTIONS IN THE EXERCISES According to National Instruments description: LabVIEW is a graphical programming platform that helps

More information

Linear Control Systems LABORATORY

Linear Control Systems LABORATORY Islamic University Of Gaza Faculty of Engineering Electrical Engineering Department Linear Control Systems LABORATORY Prepared By: Eng. Adham Maher Abu Shamla Under Supervision: Dr. Basil Hamed Experiments

More information

OpenStax-CNX module: m Thermometer VI * National Instruments

OpenStax-CNX module: m Thermometer VI * National Instruments OpenStax-CNX module: m12209 1 Thermometer VI * National Instruments This work is produced by OpenStax-CNX and licensed under the Creative Commons Attribution License 1.0 Exercise 1 Complete the following

More information

Getting Started with LabVIEW Virtual Instruments

Getting Started with LabVIEW Virtual Instruments Getting Started with LabVIEW Virtual Instruments Approximate Time You can complete this exercise in approximately 30 minutes. Background LabVIEW programs are called virtual instruments, or VIs, because

More information

Exercise 0 - Open and Run a Virtual Instrument (Slide 12)

Exercise 0 - Open and Run a Virtual Instrument (Slide 12) Exercise 0 - Open and Run a Virtual Instrument (Slide 12) Examine the Signal Generation and Processing VI and run it. Change the frequencies and types of the input signals and notice how the display on

More information

PHYC 500: Introduction to LabView. Exercise 1 (v 1.3) M.P. Hasselbeck, University of New Mexico

PHYC 500: Introduction to LabView. Exercise 1 (v 1.3) M.P. Hasselbeck, University of New Mexico PHYC 500: Introduction to LabView M.P. Hasselbeck, University of New Mexico Exercise 1 (v 1.3) Setup The user interface of LabView is highly customizable. How this is done is a personal preference. For

More information

Lab 4 - Data Acquisition

Lab 4 - Data Acquisition Lab 4 - Data Acquisition 1/13 Lab 4 - Data Acquisition Report A short report is due at 8:00 AM on the Thursday of the next week of classes after you complete this lab. This short report does NOT need to

More information

Lesson 1 Introduction to LabVIEW. TOPICS LabVIEW Environment Front Panel Block Diagram Dataflow Programming LabVIEW Help and Manuals Debugging a VI

Lesson 1 Introduction to LabVIEW. TOPICS LabVIEW Environment Front Panel Block Diagram Dataflow Programming LabVIEW Help and Manuals Debugging a VI Lesson 1 Introduction to LabVIEW TOPICS LabVIEW Environment Front Panel Block Diagram Dataflow Programming LabVIEW Help and Manuals Debugging a VI 1 Virtual Instruments (VIs) Front Panel Controls = Inputs

More information

Lesson 4 Implementing a VI

Lesson 4 Implementing a VI Lesson 4 Implementing a VI A. Front Panel Design B. LabVIEW Data Types C. Documenting Code D. While Loops E. For Loops F. Timing a VI G. Iterative Data Transfer H. Plotting Data I. Case Structures A. Front

More information

Lab 1: Getting familiar with LabVIEW: Part I

Lab 1: Getting familiar with LabVIEW: Part I Lab 1: Getting familiar with LabVIEW: Part I The objective of this first lab is to provide an initial hands-on experience in building a VI. For detailed explanations of the LabVIEW features mentioned here,

More information

LabVIEW. Table of Contents. Lesson 1. Pre-reqs/Technical Skills Basic computer use

LabVIEW. Table of Contents. Lesson 1. Pre-reqs/Technical Skills Basic computer use LabVIEW Lesson 1 Pre-reqs/Technical Skills Basic computer use Expectations Read lesson material Implement steps in software while reading through lesson material Complete quiz on Blackboard Submit completed

More information

LabVIEW Express VI Development Toolkit User Guide

LabVIEW Express VI Development Toolkit User Guide LabVIEW Express VI Development Toolkit User Guide Version 1.0 Contents The LabVIEW Express VI Development Toolkit allows you to create and edit Express VIs, which you can distribute to users for building

More information

Introduction to LabVIEW

Introduction to LabVIEW Introduction to LabVIEW How to Succeed in EE 20 Lab Work as a group of 2 Read the lab guide thoroughly Use help function and help pages in LabVIEW Do the Pre-Lab before you come to the lab Don t do the

More information

Introduction to LabVIEW

Introduction to LabVIEW University College of Southeast Norway Introduction to LabVIEW Hans-Petter Halvorsen, 2016-09-07 http://home.hit.no/~hansha Preface This document explains the basic concepts of LabVIEW. You find additional

More information

Table 1. Inputs and Outputs

Table 1. Inputs and Outputs Goal Description Use a While Loop and an iteration terminal and pass data through a tunnel. Create a VI that continuously generates random numbers between 0 and 1000 until it generates a number that matches

More information

ME 365 EXPERIMENT 3 INTRODUCTION TO LABVIEW

ME 365 EXPERIMENT 3 INTRODUCTION TO LABVIEW ME 365 EXPERIMENT 3 INTRODUCTION TO LABVIEW Objectives: The goal of this exercise is to introduce the Laboratory Virtual Instrument Engineering Workbench, or LabVIEW software. LabVIEW is the primary software

More information

2. The LabView Environment Two panes will open, one is the Front panel, and one is the Block Diagram

2. The LabView Environment Two panes will open, one is the Front panel, and one is the Block Diagram E80 Spring 2015 Lecture 3 LabView 1. Creating a VI (Virtual Instrument) From the File drop-down menu, select New VI 2. The LabView Environment Two panes will open, one is the Front panel, and one is the

More information

Introduction to LabVIEW Exercise-1

Introduction to LabVIEW Exercise-1 Introduction to LabVIEW Exercise-1 Objective In this Laboratory, you will write simple VIs to incorporate basic programming structures in LabVIEW. This section will teach you fundamentals of LabVIEW front

More information

LabVIEW VI Analyzer Toolkit

LabVIEW VI Analyzer Toolkit USER GUIDE LabVIEW VI Analyzer Toolkit Version 1.1 Contents The LabVIEW VI Analyzer Toolkit allows you to interactively and programmatically test VIs to find areas of improvement. The toolkit contains

More information

Computer Interfacing Using LabView

Computer Interfacing Using LabView Computer Interfacing Using LabView Physics 258 Last revised September 25, 2005 by Ed Eyler Purpose: Note: To write a simple LabView program that digitizes data using an ADC on a data acquisition card,

More information

LabVIEW VI Analyzer Toolkit

LabVIEW VI Analyzer Toolkit USER GUIDE LabVIEW VI Analyzer Toolkit The LabVIEW VI Analyzer Toolkit allows you to interactively and programmatically test VIs to find areas for improvement. The toolkit contains tests that address a

More information

Introduction to National Instruments LabVIEW and Data Acquisition (DAQ)

Introduction to National Instruments LabVIEW and Data Acquisition (DAQ) Introduction to National Instruments LabVIEW and Data Acquisition (DAQ) Danial J. Neebel, Joseph R. Blandino, and David J. Lawrence, College of Integrated Science and Technology James Madison University

More information

A. Front Panel Design Lesson 4 Implementing a VI

A. Front Panel Design Lesson 4 Implementing a VI A. Front Panel Design Lesson 4 Implementing a VI Inputs and outputs lead to front panel design Retrieve the inputs by the following methods: TOPICS A. B. C. D. E. F. Front Panel Design LabVIEW Data Types

More information

CISE 318: Computer Control Systems Laboratory Exercises

CISE 318: Computer Control Systems Laboratory Exercises King Fahd University of Petroleum and Minerals Systems Engineering Department CISE 318: Computer Control Systems Laboratory Exercises Prepared by Dr. Lahouari Cheded Mr. Mohammad Shahab Mr Ameenuddin Hussain

More information

Concept: Debugging. Goal. Description. Implementation. Use the debugging tools built into LabVIEW.

Concept: Debugging. Goal. Description. Implementation. Use the debugging tools built into LabVIEW. Goal Description Implementation Use the debugging tools built into LabVIEW. Complete the following steps to load a broken VI and correct the errors. Use single-stepping and execution highlighting to step

More information

Exercise 5: Basic LabVIEW Programming

Exercise 5: Basic LabVIEW Programming Exercise 5: Basic LabVIEW Programming In this exercise we will learn the basic principles in LabVIEW. LabVIEW will be used in later exercises and in the project part, as well in other courses later, so

More information

Step-by-Step Data Acquisition Part II Exercise 2: Generating an Analog Output Waveform

Step-by-Step Data Acquisition Part II Exercise 2: Generating an Analog Output Waveform Step-by-Step Data Acquisition Part II Exercise 2: Generating an Analog Output Waveform In this exercise, you will use the DAQ Assistant to build a LabVIEW VI that generates and outputs an analog waveform.

More information

EXCEL 2007 TIP SHEET. Dialog Box Launcher these allow you to access additional features associated with a specific Group of buttons within a Ribbon.

EXCEL 2007 TIP SHEET. Dialog Box Launcher these allow you to access additional features associated with a specific Group of buttons within a Ribbon. EXCEL 2007 TIP SHEET GLOSSARY AutoSum a function in Excel that adds the contents of a specified range of Cells; the AutoSum button appears on the Home ribbon as a. Dialog Box Launcher these allow you to

More information

SolidWorks 2½D Parts

SolidWorks 2½D Parts SolidWorks 2½D Parts IDeATe Laser Micro Part 1b Dave Touretzky and Susan Finger 1. Create a new part In this lab, you ll create a CAD model of the 2 ½ D key fob below to make on the laser cutter. Select

More information

Virtual Instrumentation With LabVIEW

Virtual Instrumentation With LabVIEW Virtual Instrumentation With LabVIEW Course Goals Understand the components of a Virtual Instrument Introduce LabVIEW and common LabVIEW functions Build a simple data acquisition application Create a subroutine

More information

Dept. of Electrical, Computer and Biomedical Engineering. Data Acquisition Systems and the NI LabVIEW environment

Dept. of Electrical, Computer and Biomedical Engineering. Data Acquisition Systems and the NI LabVIEW environment Dept. of Electrical, Computer and Biomedical Engineering Data Acquisition Systems and the NI LabVIEW environment Data Acquisition (DAQ) Use of some data acquisition technique can be convenient, when not

More information

ni.com Preparing for the CLAD Exam

ni.com Preparing for the CLAD Exam Preparing for the CLAD Exam Breaking Data Flow Situation: Run 2 Loops simultaneously with 1 Stop Button Wiring the Stop Button from one Loop to the other will NOT work. Solution: Use a Local Variable Drawbacks:

More information

LabVIEW basics. BME MIT János Hainzmann, Károly Molnár, Balázs Scherer, Csaba Tóth

LabVIEW basics. BME MIT János Hainzmann, Károly Molnár, Balázs Scherer, Csaba Tóth BME MIT 2007. János Hainzmann, Károly Molnár, Balázs Scherer, Csaba Tóth Table of contents REFERENCES...1 1. INTRODUCTION...2 1.1 VIRTUAL INSTRUMENTATION...2 1.2 VISUAL PROGRAMMING...2 2. GETTING STARTED...4

More information

LabVIEW TM Basics I Introduction Course Manual

LabVIEW TM Basics I Introduction Course Manual LabVIEW TM Basics I Introduction Course Manual Course Software Version 7.0 June 2003 Edition Part Number 320628L-01 LabVIEW Introduction Course Manual Copyright 1993 2003 National Instruments Corporation.

More information

Experiment 1: Introduction to Labview 8.0 (tbc 1/7/2007, 1/13/2009,1/13/2011)

Experiment 1: Introduction to Labview 8.0 (tbc 1/7/2007, 1/13/2009,1/13/2011) Experiment 1: Introduction to Labview 8.0 (tbc 1/7/2007, 1/13/2009,1/13/2011) Objective: To learn how to build virtual instrument panels in Labview 8.0 Tasks: 1. Build the Labview VI shown in the tutorial

More information

SolidWorks Intro Part 1b

SolidWorks Intro Part 1b SolidWorks Intro Part 1b Dave Touretzky and Susan Finger 1. Create a new part We ll create a CAD model of the 2 ½ D key fob below to make on the laser cutter. Select File New Templates IPSpart If the SolidWorks

More information

Above Threshold Warning of Temperature Data

Above Threshold Warning of Temperature Data Above Threshold Warning of Temperature Data Exercise 6 Completed front panel and block diagram. The hidden case Celsius is also shown in this picture. In the following exercise, you will create a program

More information

Small rectangles (and sometimes squares like this

Small rectangles (and sometimes squares like this Lab exercise 1: Introduction to LabView LabView is software for the real time acquisition, processing and visualization of measured data. A LabView program is called a Virtual Instrument (VI) because it,

More information

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

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

More information

Managing Content with AutoCAD DesignCenter

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

More information

MICROSOFT WORD 2010 Quick Reference Guide

MICROSOFT WORD 2010 Quick Reference Guide MICROSOFT WORD 2010 Quick Reference Guide Word Processing What is Word Processing? How is Word 2010 different from previous versions? Using a computer program, such as Microsoft Word, to create and edit

More information

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

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

More information

Microsoft How to Series

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

More information

Lesson 6 Adding Graphics

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

More information

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

How to Get Started. Figure 3

How to Get Started. Figure 3 Tutorial PSpice How to Get Started To start a simulation, begin by going to the Start button on the Windows toolbar, then select Engineering Tools, then OrCAD Demo. From now on the document menu selection

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

CLAD Sample Exam 03. C. A control that output a cluster of the controls / indicators on the tabs.

CLAD Sample Exam 03. C. A control that output a cluster of the controls / indicators on the tabs. Name: Date: CLAD Sample Exam 03 1. Where can a VI be documented so that the description appears in the Show Context Help popup window? A. In the VI Properties Documentation window B. Typing in the Show

More information

Read Temperature Data

Read Temperature Data Read Temperature Data Exercise 5 Completed front panel and block diagram In this exercise, you will create a program using SensorDAQ s Analog Express VI to collect temperature data and display it on a

More information

Labview. Masood Ejaz

Labview. Masood Ejaz Labview A Tutorial By Masood Ejaz Note: This tutorial is a work in progress and written specially for CET 3464 Software Applications in Engineering Technology, a course offered as part of BSECET program

More information

Display Systems International Software Demo Instructions

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

More information

BCI.com Sitecore Publishing Guide. November 2017

BCI.com Sitecore Publishing Guide. November 2017 BCI.com Sitecore Publishing Guide November 2017 Table of contents 3 Introduction 63 Search 4 Sitecore terms 66 Change your personal settings 5 Publishing basics 5 Log in to Sitecore Editing 69 BCI.com

More information

Virtual Instrumentation With LabVIEW

Virtual Instrumentation With LabVIEW Virtual Instrumentation With LabVIEW Section I LabVIEW terms Components of a LabVIEW application LabVIEW programming tools Creating an application in LabVIEW LabVIEW Programs Are Called Virtual Instruments

More information

Here is a step-by-step guide to creating a custom toolbar with text

Here is a step-by-step guide to creating a custom toolbar with text How to Create a Vertical Toolbar with Text Buttons to Access Your Favorite Folders, Templates and Files 2007-2017 by Barry MacDonnell. All Rights Reserved. Visit http://wptoolbox.com. The following is

More information

Tutorial: Getting Started with the LabVIEW Simulation Module

Tutorial: Getting Started with the LabVIEW Simulation Module Tutorial: Getting Started with the LabVIEW Simulation Module - LabVIEW 8.5 Simulati... Page 1 of 10 Cart Help Search You are here: NI Home > Support > Product Reference > Manuals > LabVIEW 8.5 Simulation

More information

Skills Exam Objective Objective Number

Skills Exam Objective Objective Number Overview 1 LESSON SKILL MATRIX Skills Exam Objective Objective Number Starting Excel Create a workbook. 1.1.1 Working in the Excel Window Customize the Quick Access Toolbar. 1.4.3 Changing Workbook and

More information

SUM - This says to add together cells F28 through F35. Notice that it will show your result is

SUM - This says to add together cells F28 through F35. Notice that it will show your result is COUNTA - The COUNTA function will examine a set of cells and tell you how many cells are not empty. In this example, Excel analyzed 19 cells and found that only 18 were not empty. COUNTBLANK - The COUNTBLANK

More information

Certified LabVIEW Associate Developer Examination

Certified LabVIEW Associate Developer Examination Certified LabVIEW Associate Developer Examination Examinee Date: Administrator Date: Note: The use of the computer or any reference materials is NOT allowed during the exam. Instructions: If you did not

More information

Faculty of Computing, Engineering and Technology. Real Time Systems 1 CE LabVIEW David D. Hodgkiss & Staffordshire University 1

Faculty of Computing, Engineering and Technology. Real Time Systems 1 CE LabVIEW David D. Hodgkiss & Staffordshire University 1 Faculty of Computing, Engineering and Technology Real Time Systems 1 CE00345-3 TM LabVIEW 8 2006 David D. Hodgkiss & Staffordshire University 1 Table of Contents Chapter 1 - Introduction. Introduction.

More information

PowerPoint Spring 2002

PowerPoint Spring 2002 PowerPoint 2000 Spring 2002 Table of Contents I. INTRODUCTION... 1 II. GETTING STARTED... 1 A. Opening PowerPoint... 1 B. The Mouse Pointer... 1 C. Working with Text... 2 1. Windows Control Buttons...

More information

AutoCAD 2009 User InterfaceChapter1:

AutoCAD 2009 User InterfaceChapter1: AutoCAD 2009 User InterfaceChapter1: Chapter 1 The AutoCAD 2009 interface has been enhanced to make AutoCAD even easier to use, while making as much screen space available as possible. In this chapter,

More information

Handout created by Cheryl Tice, Instructional Support for Technology, GST BOCES

Handout created by Cheryl Tice, Instructional Support for Technology, GST BOCES Handout created by Cheryl Tice, Instructional Support for Technology, GST BOCES Intro to FrontPage OVERVIEW: This handout provides a general overview of Microsoft FrontPage. AUDIENCE: All Instructional

More information

Basic Concepts. Launching MultiAd Creator. To Create an Alias. file://c:\documents and Settings\Gary Horrie\Local Settings\Temp\~hh81F9.

Basic Concepts. Launching MultiAd Creator. To Create an Alias. file://c:\documents and Settings\Gary Horrie\Local Settings\Temp\~hh81F9. Page 1 of 71 This section describes several common tasks that you'll need to know in order to use Creator successfully. Examples include launching Creator and opening, saving and closing Creator documents.

More information

The toolbars at the top are the standard toolbar and the formatting toolbar.

The toolbars at the top are the standard toolbar and the formatting toolbar. Lecture 8 EXCEL Excel is a spreadsheet (all originally developed for bookkeeping and accounting). It is very useful for any mathematical or tabular operations. It allows you to make quick changes in input

More information

PowerPoint Launching PowerPointX

PowerPoint Launching PowerPointX PowerPoint 2004 Launching PowerPointX 1. Start PowerPoint by clicking on the PowerPoint icon in the dock or finding it in the hard drive in the Applications folder under Microsoft Office 2004. PowerPoint

More information

Certified LabVIEW Associate Developer Examination

Certified LabVIEW Associate Developer Examination Certified LabVIEW Associate Developer Examination Examinee Date: Administrator Date: Note: The use of the computer or any reference materials is NOT allowed during the exam. Instructions: If you did not

More information

XnView Image Viewer. a ZOOMERS guide

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

More information

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

WINDOWS NT BASICS

WINDOWS NT BASICS WINDOWS NT BASICS 9.30.99 Windows NT Basics ABOUT UNIVERSITY TECHNOLOGY TRAINING CENTER The University Technology Training Center (UTTC) provides computer training services with a focus on helping University

More information

The Fundamentals. Document Basics

The Fundamentals. Document Basics 3 The Fundamentals Opening a Program... 3 Similarities in All Programs... 3 It's On Now What?...4 Making things easier to see.. 4 Adjusting Text Size.....4 My Computer. 4 Control Panel... 5 Accessibility

More information

Introduction to Labview and Temperature Measurement

Introduction to Labview and Temperature Measurement Introduction to Labview and Temperature Measurement Objective This lab is intended to familiarize you with the LABVIEW software and the data acquisition board used in this class and with temperature measurements

More information

Certified LabVIEW Associate Developer Exam. Test Booklet

Certified LabVIEW Associate Developer Exam. Test Booklet Certified LabVIEW Associate Developer Exam Test Booklet Note: The use of the computer or any reference materials is NOT allowed during the exam. Instructions: If you did not receive this exam in a sealed

More information

NAME EET 2259 Lab 3 The Boolean Data Type

NAME EET 2259 Lab 3 The Boolean Data Type NAME EET 2259 Lab 3 The Boolean Data Type OBJECTIVES - Understand the differences between numeric data and Boolean data. -Write programs using LabVIEW s Boolean controls and indicators, Boolean constants,

More information

For many students, creating proper bookmarks can be one of the more confounding areas of formatting the ETD.

For many students, creating proper bookmarks can be one of the more confounding areas of formatting the ETD. Step 6: Bookmarks This PDF explains Step 6 of the step-by-step instructions that will help you correctly format your ETD to meet UCF formatting requirements. UCF requires that all major and chapter headings

More information

How To Capture Screen Shots

How To Capture Screen Shots What Is FastStone Capture? FastStone Capture is a program that can be used to capture screen images that you want to place in a document, a brochure, an e-mail message, a slide show and for lots of other

More information

Quick Start Guide. ARIS Architect. Version 9.8 Service Release 2

Quick Start Guide. ARIS Architect. Version 9.8 Service Release 2 ARIS Architect Version 9.8 Service Release 2 October 2015 This document applies to ARIS Version 9.8 and to all subsequent releases. Specifications contained herein are subject to change and these changes

More information

Microsoft PowerPoint 2003 Basic Activities

Microsoft PowerPoint 2003 Basic Activities Microsoft PowerPoint 2003 Basic Activities Activity 1 Creating a new blank presentation... 1 1A. Applying Layouts... 1 1B. Applying a Slide Design... 1 1C. Applying a Background... 2 1D. Entering Text...

More information

Use signatures in Outlook 2010

Use  signatures in Outlook 2010 Use e-mail signatures in Outlook 2010 Quick Reference Card Download and use a signature template Note This procedure will take you away from this page. If necessary, print this page before you follow these

More information

LabVIEW TM Core 1 Course Manual

LabVIEW TM Core 1 Course Manual LabVIEW TM Core 1 Course Manual Course Software Version 2012 August 2012 Edition Part Number 325290D-01 LabVIEW Core 1 Course Manual Copyright 1993 2012 National Instruments. All rights reserved. Under

More information

PowerPoint X. 1. The Project Gallery window with the PowerPoint presentation icon already selected. 2. Click on OK.

PowerPoint X. 1. The Project Gallery window with the PowerPoint presentation icon already selected. 2. Click on OK. PowerPoint X Launching PowerPointX 1. Start PowerPointX by clicking on the PowerPoint icon in the dock or finding it in the hard drive in the Applications folder under Microsoft PowerPoint. PowerPoint

More information

Homework Assignment 9 LabVIEW tutorial

Homework Assignment 9 LabVIEW tutorial Homework Assignment 9 LabVIEW tutorial Due date: Wednesday, December 8 (midnight) For this homework assignment, you will complete a tutorial on the LabVIEW data acquistion software. This can be done on

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

The Department of Construction Management and Civil Engineering Technology CMCE-1110 Construction Drawings 1 Lecture Introduction to AutoCAD What is

The Department of Construction Management and Civil Engineering Technology CMCE-1110 Construction Drawings 1 Lecture Introduction to AutoCAD What is The Department of Construction Management and Civil Engineering Technology CMCE-1110 Construction Drawings 1 Lecture Introduction to AutoCAD What is AutoCAD? The term CAD (Computer Aided Design /Drafting)

More information

Getting Started. Custom Reports Software

Getting Started. Custom Reports Software Getting Started Custom Reports Software Custom Reports software Custom reporting The Custom Reports software lets you transfer quantitative results from Data Analysis into the Custom Reports spreadsheet

More information

Microsoft Word: Steps To Success (The Bare Essentials)

Microsoft Word: Steps To Success (The Bare Essentials) Microsoft Word: Steps To Success (The Bare Essentials) Workbook by Joyce Kirst 2005 Microsoft Word: Step to Success (The Bare Essentials) Page Contents 1 Starting Word 2 Save 3 Exit 5 Toolbars, Alignment,

More information

Basic Data Acquisition with LabVIEW

Basic Data Acquisition with LabVIEW Basic Data Acquisition with LabVIEW INTRODUCTION This tutorial introduces the creation of LabView Virtual Instruments (VI s), in several individual lessons. These lessons create a simple sine wave signal,

More information

MICROSOFT WORD XP INTERMEDIATE

MICROSOFT WORD XP INTERMEDIATE MICROSOFT WORD XP INTERMEDIATE Starting Word Click the start button, move the pointer to All Programs. Move the pointer to Microsoft Office and then select Microsoft Word and click the application or click

More information

Understanding the Interface

Understanding the Interface 2. Understanding the Interface Adobe Photoshop CS2 for the Web H O T 2 Understanding the Interface The Welcome Screen Interface Overview Customizing Palette Locations Saving Custom Palette Locations Customizing

More information

Introducing Gupta Report Builder

Introducing Gupta Report Builder Business Reporting Chapter 1 Introducing Gupta Report Builder You can use Report Builder to design reports. This chapter describes: Our approach to building reports. Some of the reports you can build.

More information

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

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

More information

Virtual Instruments with LabVIEW

Virtual Instruments with LabVIEW Telemark University College Department of Electrical Engineering, Information Technology and Cybernetics Virtual Instruments with LabVIEW HANS-PETTER HALVORSEN, 2011.01.04 Faculty of Technology, Postboks

More information

Guide to WB Annotations

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

More information

CS Multimedia and Communications REMEMBER TO BRING YOUR MEMORY STICK TO EVERY LAB! Lab 02: Introduction to Photoshop Part 1

CS Multimedia and Communications REMEMBER TO BRING YOUR MEMORY STICK TO EVERY LAB! Lab 02: Introduction to Photoshop Part 1 CS 1033 Multimedia and Communications REMEMBER TO BRING YOUR MEMORY STICK TO EVERY LAB! Lab 02: Introduction to Photoshop Part 1 Upon completion of this lab, you should be able to: Open, create new, save

More information

Microsoft PowerPoint 2013 Beginning

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

More information

InDesign Part II. Create a Library by selecting File, New, Library. Save the library with a unique file name.

InDesign Part II. Create a Library by selecting File, New, Library. Save the library with a unique file name. InDesign Part II Library A library is a file and holds a collection of commonly used objects. A library is a file (extension.indl) and it is stored on disk. A library file can be open at any time while

More information

Chapter11 practice file folder. For more information, see Download the practice files in this book s Introduction.

Chapter11 practice file folder. For more information, see Download the practice files in this book s Introduction. Make databases user friendly 11 IN THIS CHAPTER, YOU WILL LEARN HOW TO Design navigation forms. Create custom categories. Control which features are available. A Microsoft Access 2013 database can be a

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

GIMP WEB 2.0 BUTTONS

GIMP WEB 2.0 BUTTONS GIMP WEB 2.0 BUTTONS Web 2.0 Navigation: Bar with Icons WEB 2.0 NAVIGATION: NAVIGATION BAR WITH ICONS This navigation bar will be designed with four clickable text links and icon links. In the Menus section,

More information

Payment Function Exercise

Payment Function Exercise Payment Function Exercise Follow the directions below to create a payment function exercise. Read through each individual direction before performing it, like you are following recipe instructions. Remember

More information