Window (further define the behaviour of objects)

Size: px
Start display at page:

Download "Window (further define the behaviour of objects)"

Transcription

1 Introduction to Visual Basic Visual Basic offers a very comprehensive programming environment that can be a bit overwhelming at the start. The best rule is to ignore all that you do not need until you need it! Make sure that you get help from the lab tutors if you are unsure. When you startup Visual Basic, you are presented with a New Project and a default option to Open a Standard EXE application. Choose Open. The VB environment looks like this: Menus (some choices must be further specified through dialog boxes) Toolbar (quick access to some commands) Project Window (display a form in the form design window, or its code in the code window) Properties Window (change the appearance and/or behaviour of objects) Toolbox (create objects) Code Form design window (design the appearance of objects on your forms) Window (further define the behaviour of objects)

2 Terminology Project: Collection of forms, code modules. Project Window lists all the files in the application. Form: Window that displays controls and graphics useful to the overall project. Can be private (normal) or public. Code Window: To make application respond to events, code is written for the required events eg. click command button (click event) or enter text (keypress event) Properties Window: Allows programmer to set the properties of each object eg. name, caption etc.. Toolbox: Allows programmer to easily create the desired GUI by selecting the appropriate controls. A First Application: A VB application to convert temperatures between Fahrenheit and Celsius. The Temperature Conversion application consists of these elements: Recall the steps to creating an application: 1. Design the interface. 2. Plan properties. 3. Plan code. 4. Implement each of the above 1. Create the interface. To create an application, you first need to open a new project: choose the New Project command from the File menu. Every new project automatically contains one form. (You can add as many additional forms as your application needs.) The Temperature Conversion application requires only one form:

3 Next, you can select the tools you need from the Toolbox to draw the controls you want on the form. In this application, 2 text boxes will accept user input and display text. To create a control, select the tool from the Toolbox, and then hold down the left mouse button while dragging out an area on the form. For this application, you will require 2 text boxes and 2 labels. 2. Set properties. You set the properties of a control in the Properties window. When you select a form or control, its properties and their settings are displayed in the Properties window. You use the Name property to refer to a control in code. In this case, we'll make txtcels the name of this text box.

4 The Caption property specifies the text that is displayed in the control. We'll change the label's Caption property to "Celsius". We'll also change the Name property of the other text box to txtfahr and the Caption property of its label to "Fahrenheit". 3. Write code. We now need to add code to make the application respond to the user's actions. As with any programming language, you need to develop your algorithm at this stage before attempting to enter code. When you double-click a control, the focus shifts to the Code window. The name of the control appears in the Object list box. The Procedure list box contains a list of events for the control. Since we want to run the code in this application when a user presses a key, we'll select the KeyPress event from the Procedures list box.

5 We'll use the following formulae to convert the temperatures: Cels = (Fahr - 32) * 5/9 Fahr = (Cels * 9/5) + 32 We'll enter the code for the event procedure: (Recall ASCII codes) We must also attach a similar event procedure to the other text box, which will update the Celsius text when Fahrenheit is changed by the user (cf Lab Assignment) Saving Your Work Please ensure that you save your work correctly on the Network Drive (Not the local hard drive). Create a separate directory/folder for each of your assignments and use this directory/folder for your work. Use Save Project As..from the File menu to save the finished project It will ask you to save your forms first. Make sure you select the correct folder in which to save your work. It will then ask you to save the overall project. Choose an appropriate name. Running your application To run your application use Start from the Run menu.

CT862 Section 1 Introduction

CT862 Section 1 Introduction CT862 Section 1 Introduction VB.NET: VB introduced in 1991 Provided the first easily accessible means of writing Windows applications o The VB IDE was inherently graphical and mirrored the Windows OS itself

More information

Agenda. First Example 24/09/2009 INTRODUCTION TO VBA PROGRAMMING. First Example. The world s simplest calculator...

Agenda. First Example 24/09/2009 INTRODUCTION TO VBA PROGRAMMING. First Example. The world s simplest calculator... INTRODUCTION TO VBA PROGRAMMING LESSON2 dario.bonino@polito.it Agenda First Example Simple Calculator First Example The world s simplest calculator... 1 Simple Calculator We want to design and implement

More information

INTRODUCTION TO VISUAL BASIC 2010

INTRODUCTION TO VISUAL BASIC 2010 INTRODUCTION TO VISUAL BASIC 2010 Microsoft Visual Basic is a set of programming tools that allows you to create applications for the Windows operating system. With Visual Basic, even a beginner can create

More information

CS 150 Lab 3 Arithmetic and the Debugger. Lab 3.0 We are going to begin using the Visual Studio 2017 debugger to aid with debugging programs.

CS 150 Lab 3 Arithmetic and the Debugger. Lab 3.0 We are going to begin using the Visual Studio 2017 debugger to aid with debugging programs. CS 150 Lab 3 Arithmetic and the Debugger The main objective of today s lab is to use some basic mathematics to solve a few real world problems. In doing so, you are to begin getting accustomed to using

More information

Extending the Unit Converter

Extending the Unit Converter Extending the Unit Converter You wrote a unit converter previously that converted the values in selected cells from degrees Celsius to degrees Fahrenheit. You could write separate macros to do different

More information

Text box. Command button. 1. Click the tool for the control you choose to draw in this case, the text box.

Text box. Command button. 1. Click the tool for the control you choose to draw in this case, the text box. Visual Basic Concepts Hello, Visual Basic See Also There are three main steps to creating an application in Visual Basic: 1. Create the interface. 2. Set properties. 3. Write code. To see how this is done,

More information

Using Visual Basic Studio 2008

Using Visual Basic Studio 2008 Using Visual Basic Studio 2008 Recall that object-oriented programming language is a programming language that allows the programmer to use objects to accomplish a program s goal. An object is anything

More information

Lab 7 Macros, Modules, Data Access Pages and Internet Summary Macros: How to Create and Run Modules vs. Macros 1. Jumping to Internet

Lab 7 Macros, Modules, Data Access Pages and Internet Summary Macros: How to Create and Run Modules vs. Macros 1. Jumping to Internet Lab 7 Macros, Modules, Data Access Pages and Internet Summary Macros: How to Create and Run Modules vs. Macros 1. Jumping to Internet 1. Macros 1.1 What is a macro? A macro is a set of one or more actions

More information

Skill Area 336 Explain Essential Programming Concept. Programming Language 2 (PL2)

Skill Area 336 Explain Essential Programming Concept. Programming Language 2 (PL2) Skill Area 336 Explain Essential Programming Concept Programming Language 2 (PL2) 336.2-Apply Basic Program Development Techniques 336.2.1 Identify language components for program development 336.2.2 Use

More information

FOR 240 Homework Assignment 4 Using DBGridView and Other VB Controls to Manipulate Database Introduction to Computing in Natural Resources

FOR 240 Homework Assignment 4 Using DBGridView and Other VB Controls to Manipulate Database Introduction to Computing in Natural Resources FOR 240 Homework Assignment 4 Using DBGridView and Other VB Controls to Manipulate Database Introduction to Computing in Natural Resources This application demonstrates how a DataGridView control can be

More information

Computer Science Lab Exercise 2

Computer Science Lab Exercise 2 osc 127 Lab 2 1 of 10 Computer Science 127 - Lab Exercise 2 Excel User-Defined Functions - Repetition Statements (pdf) During this lab you will review and practice the concepts that you learned last week

More information

Creating a Text Frame. Create a Table and Type Text. Pointer Tool Text Tool Table Tool Word Art Tool

Creating a Text Frame. Create a Table and Type Text. Pointer Tool Text Tool Table Tool Word Art Tool Pointer Tool Text Tool Table Tool Word Art Tool Picture Tool Clipart Tool Creating a Text Frame Select the Text Tool with the Pointer Tool. Position the mouse pointer where you want one corner of the text

More information

Update Service for EASY-SOFT

Update Service for EASY-SOFT Update Service for EASY-SOFT If you have installed EASY-SOFT version 5.10 or higher, or EASY-SOFT V6.00 Basic or higher, the installation of a software update is no longer started via the Moeller website,

More information

FIT 100. Lab 8: Writing and Running Your First Visual Basic Program Spring 2002

FIT 100. Lab 8: Writing and Running Your First Visual Basic Program Spring 2002 FIT 100 Lab 8: Writing and Running Your First Visual Basic Program Spring 2002 1. Create a New Project and Form... 1 2. Add Objects to the Form and Name Them... 3 3. Manipulate Object Properties... 3 4.

More information

Display Input and Output (I/O)

Display Input and Output (I/O) 2000 UW CSE CSE / ENGR 142 Programming I isplay Input and Output (I/O) -1 Writing Useful Programs It s hard to write useful programs using only variables and assignment statements Even our Fahrenheit to

More information

Two scenarios are presented to illustrate updating the future year 2040 network. They are:

Two scenarios are presented to illustrate updating the future year 2040 network. They are: Appendix C: Practice Scenarios Two scenarios are presented to illustrate updating the future year 2040 network. They are: 1) Roadway attribute change 2) Geographic layout change First, some background

More information

More Skills 11 Capture a Screen with the Snipping Tool

More Skills 11 Capture a Screen with the Snipping Tool INTRODUCTION Office More Skills 11 Capture a Screen with the Snipping Tool The Snipping Tool is a Windows Vista program that creates screen captures. A screen capture is a picture of your computer screen,

More information

Boolean Expressions. So, for example, here are the results of several simple Boolean expressions:

Boolean Expressions. So, for example, here are the results of several simple Boolean expressions: Boolean Expressions Now we have the ability to read in some information, calculate some formulas and display the information to the user in a nice format. However, the real power of computer programs lies

More information

Hands-on Lab 1: LabVIEW NI-DAQ Basics 1

Hands-on Lab 1: LabVIEW NI-DAQ Basics 1 Hands-on Lab 1: LabVIEW NI-DAQ Basics 1 This lab reviews LabVIEW concepts needed towards the course s final objective of position regulation using computer-controlled state feedback. Specific LabVIEW concepts

More information

CS 105 Lab As a review of what we did last week a. What are two ways in which the Python shell is useful to us?

CS 105 Lab As a review of what we did last week a. What are two ways in which the Python shell is useful to us? 1 CS 105 Lab 3 The purpose of this lab is to practice the techniques of making choices and looping. Before you begin, please be sure that you understand the following concepts that we went over in class:

More information

PROGRAMMING LANGUAGE 2 (SPM3112) NOOR AZEAN ATAN MULTIMEDIA EDUCATIONAL DEPARTMENT UNIVERSITI TEKNOLOGI MALAYSIA

PROGRAMMING LANGUAGE 2 (SPM3112) NOOR AZEAN ATAN MULTIMEDIA EDUCATIONAL DEPARTMENT UNIVERSITI TEKNOLOGI MALAYSIA PROGRAMMING LANGUAGE 2 (SPM3112) INTRODUCTION TO VISUAL BASIC NOOR AZEAN ATAN MULTIMEDIA EDUCATIONAL DEPARTMENT UNIVERSITI TEKNOLOGI MALAYSIA Topics Visual Basic Components Basic Operation Screen Size

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

A Hands-on Experience with Arc/Info 8 Desktop

A Hands-on Experience with Arc/Info 8 Desktop Demo of Arc/Info 8 Desktop page 1 of 17 A Hands-on Experience with Arc/Info 8 Desktop Prepared by Xun Shi and Ted Quinby Geography 377 December 2000 In this DEMO, we introduce a brand new edition of ArcInfo,

More information

Visual C# Program: Temperature Conversion Program

Visual C# Program: Temperature Conversion Program C h a p t e r 4B Addendum Visual C# Program: Temperature Conversion Program In this chapter, you will learn how to use the following Visual C# Application functions to World Class standards: Writing a

More information

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

Learn the three palettes. Learn how data is passed in LabVIEW. Create a subvi using two different methods. 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)

More information

Lecture 7: Functions. CS1068+ Introductory Programming in Python. Dr Kieran T. Herley 2018/19. Department of Computer Science University College Cork

Lecture 7: Functions. CS1068+ Introductory Programming in Python. Dr Kieran T. Herley 2018/19. Department of Computer Science University College Cork Lecture 7: Functions CS1068+ Introductory Programming in Python Dr Kieran T. Herley 2018/19 Department of Computer Science University College Cork Summary Functions in Python. Terminology and execution.

More information

END-TERM EXAMINATION

END-TERM EXAMINATION (Please Write your Exam Roll No. immediately) END-TERM EXAMINATION DECEMBER 2006 Exam. Roll No... Exam Series code: 100274DEC06200274 Paper Code : MCA-207 Subject: Front End Design Tools Time: 3 Hours

More information

GETTING STARTED WITH MAPOBJECTS LT USING VISUAL BASIC

GETTING STARTED WITH MAPOBJECTS LT USING VISUAL BASIC ii GETTING STARTED WITH MAPOBJECTS LT USING VISUAL BASIC Contents 1 The Map control 1 LT 2 Map tools 5 3 Map display 15 4 Adding data at run time 21 CONTENTS iii iv GETTING STARTED WITH MAPOBJECTS LT USING

More information

To complete this project, you will need the following folder:

To complete this project, you will need the following folder: = CHAPTER 1 Windows 7 More Skills 12 Use Libraries to Organize Files A library is a collection of files and folders stored in different locations on your computer that can be viewed as a single folder.

More information

Spring CS Homework 3 p. 1. CS Homework 3

Spring CS Homework 3 p. 1. CS Homework 3 Spring 2018 - CS 111 - Homework 3 p. 1 Deadline 11:59 pm on Friday, February 9, 2018 Purpose CS 111 - Homework 3 To try out another testing function, check-within, to get more practice using the design

More information

To learn more about the Milestones window choose: Help Help Topics Select the Index tab and type in the feature. For Example toolbox.

To learn more about the Milestones window choose: Help Help Topics Select the Index tab and type in the feature. For Example toolbox. To learn more about the Milestones window choose: Help Help Topics Select the Index tab and type in the feature. For Example toolbox. 1 of 12 CHOOSE THE DATES TAB TO: 1. Set the schedule s Date Range.

More information

TFA. KlimaLogg Pro. User Manual. Revision: 1.1

TFA. KlimaLogg Pro. User Manual. Revision: 1.1 TFA KlimaLogg Pro User Manual Revision: 1.1 Table of Contents Overview... 2 Getting Started... 2 Setting up the KlimaLogg Pro device... 2 Installing the USB-Stick... 2 Installation... 2 System Requirements...

More information

17. Introduction to Visual Basic Programming

17. Introduction to Visual Basic Programming 17. Introduction to Visual Basic Programming Visual Basic (VB) is the fastest and easiest way to create applications for MS Windows. Whether you are an experienced professional or brand new to Windows

More information

Exercise 2b: Applying Entity Attributes, Masking, and Creating Groups

Exercise 2b: Applying Entity Attributes, Masking, and Creating Groups Exercise 2b: Applying Entity Attributes, Masking, and Creating Groups This exercise uses the model file, truck.key and the corresponding d3plot file as the results file. Step 1: Turning components on and

More information

GRAPHIC WEB DESIGNER PROGRAM

GRAPHIC WEB DESIGNER PROGRAM NH111 Outlook Level 1 16 Total Hours COURSE TITLE: Outlook Level 1 COURSE OVERVIEW: This course provides students with the knowledge and skills to utilize Microsoft Outlook to manage all aspects of email

More information

182 Introduction to Microsoft Visual InterDev 6 Chapter 7

182 Introduction to Microsoft Visual InterDev 6 Chapter 7 iw3htp_07.fm Page 182 Thursday, April 13, 2000 12:29 PM 182 Introduction to Microsoft Visual InterDev 6 Chapter 7 7 Introduction to Microsoft Visual InterDev 6 New tab Other tabs for opening existing projects

More information

Application Note. PowerStar 5/6 - LabView VI Integration

Application Note. PowerStar 5/6 - LabView VI Integration Application Note PowerStar 5/6 - LabView VI Integration INTRODUCTION This application note describes how to integrate LabView VI s into PowerStar 5 and 6. Parameters may be passed from PowerStar to a LabView

More information

Quick Trial Balance Pro - Accounting Cycle. Accounting Cycle: Home Screen

Quick Trial Balance Pro - Accounting Cycle. Accounting Cycle: Home Screen Accounting Cycle: Home Screen The Accounting Cycle is the processes, or steps, that are repeated each month, or year, when you process a client's data. When you click the Accounting Cycle button on the

More information

Lab 2: Introduction to mydaq and LabView

Lab 2: Introduction to mydaq and LabView Lab 2: Introduction to mydaq and LabView Lab Goals: Learn about LabView Programming Tools, Debugging and Handling Errors, Data Types and Structures, and Execution Structures. Learn about Arrays, Controls

More information

Experiment 8 SIMULINK

Experiment 8 SIMULINK Experiment 8 SIMULINK Simulink Introduction to simulink SIMULINK is an interactive environment for modeling, analyzing, and simulating a wide variety of dynamic systems. SIMULINK provides a graphical user

More information

Microsoft Visual Basic 2005: Reloaded

Microsoft Visual Basic 2005: Reloaded Microsoft Visual Basic 2005: Reloaded Second Edition Chapter 1 An Introduction to Visual Basic 2005 Objectives After studying this chapter, you should be able to: Explain the history of programming languages

More information

1 Information system An information system is the combination of technology(computers) and people that enable an organization to collect data, store them, and transform them into information Data Data

More information

Virtual Desktop Infrastructure Setup for Android

Virtual Desktop Infrastructure Setup for Android Virtual Desktop Infrastructure Setup for Android Virtual Desktop Infrastructure (VDI) allows you to connect to a virtual computer and use software that you don t have installed on your own computer or

More information

GIS LAB 1. Basic GIS Operations with ArcGIS. Calculating Stream Lengths and Watershed Areas.

GIS LAB 1. Basic GIS Operations with ArcGIS. Calculating Stream Lengths and Watershed Areas. GIS LAB 1 Basic GIS Operations with ArcGIS. Calculating Stream Lengths and Watershed Areas. ArcGIS offers some advantages for novice users. The graphical user interface is similar to many Windows packages

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

Web Services Introduction to Web Services Web Services can convert your applications into Web-applications. Web Services are published, found, and

Web Services Introduction to Web Services Web Services can convert your applications into Web-applications. Web Services are published, found, and Web Services Introduction to Web Services Web Services can convert your applications into Web-applications. Web Services are published, found, and used through the Web. What are Web Services? Web services

More information

Modification of an Existing Workflow

Modification of an Existing Workflow Modification of an Existing Workflow April 3, 2019 Sample to Insight QIAGEN Aarhus Silkeborgvej 2 Prismet 8000 Aarhus C Denmark Telephone: +45 70 22 32 44 www.qiagenbioinformatics.com ts-bioinformatics@qiagen.com

More information

The New Enhancements in ModelBuilder in ArcGIS 10

The New Enhancements in ModelBuilder in ArcGIS 10 The New Enhancements in ModelBuilder in ArcGIS 10 Article ID : TT100036 Software : ArcGIS Desktop 10 Platform : Windows XP, Windows Vista, Windows 7 Date : 1 st May, 2011 Introduction ModelBuilder is a

More information

2 USING VB.NET TO CREATE A FIRST SOLUTION

2 USING VB.NET TO CREATE A FIRST SOLUTION 25 2 USING VB.NET TO CREATE A FIRST SOLUTION LEARNING OBJECTIVES GETTING STARTED WITH VB.NET After reading this chapter, you will be able to: 1. Begin using Visual Studio.NET and then VB.NET. 2. Point

More information

Visual Studio.NET enables quick, drag-and-drop construction of form-based applications

Visual Studio.NET enables quick, drag-and-drop construction of form-based applications Visual Studio.NET enables quick, drag-and-drop construction of form-based applications Event-driven, code-behind programming Visual Studio.NET WinForms Controls Part 1 Event-driven, code-behind programming

More information

LESSON A. The Splash Screen Application

LESSON A. The Splash Screen Application The Splash Screen Application LESSON A LESSON A After studying Lesson A, you should be able to: Start and customize Visual Studio 2010 or Visual Basic 2010 Express Create a Visual Basic 2010 Windows application

More information

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

Interaction Style Categories. COSC 3461 User Interfaces. Windows. Window Manager

Interaction Style Categories. COSC 3461 User Interfaces. Windows. Window Manager COSC User Interfaces Module 2 Supplemental Materials WIMP Interfaces Interaction Style Categories Command-line interfaces Menus Natural Language Question/answer and query dialog Form-fills and spreadsheets

More information

10.4 Inputs without Waiting

10.4 Inputs without Waiting book 2003/10/13 16:01 page 243 #257 10.4 Inputs without Waiting 243 10.4 Inputs without Waiting Key Term The previous programs for activating input devices and handling the events generated by them all

More information

1) Log on to the computer using your PU net ID and password.

1) Log on to the computer using your PU net ID and password. CS 150 Lab Logging on: 1) Log on to the computer using your PU net ID and password. Connecting to Winter: Winter is the computer science server where all your work will be stored. Remember, after you log

More information

Create a worksheet that collects, displays and saves temperature data

Create a worksheet that collects, displays and saves temperature data DASYLab Techniques Create a worksheet that collects, displays and saves temperature data This document describes how to create a worksheet that acquires and processes temperature data using Measurement

More information

How to import a WSDL Data Source and Prepare it for Use in Framework Manager

How to import a WSDL Data Source and Prepare it for Use in Framework Manager Tip or Technique How to import a WSDL Data Source and Prepare it for Use in Framework Manager Product(s): Composite Software 4.5.0 Area of Interest: Infrastructure Manager 2 Copyright Copyright 2008 Cognos

More information

The first program we write will display a picture on a Windows screen, with buttons to make the picture appear and disappear.

The first program we write will display a picture on a Windows screen, with buttons to make the picture appear and disappear. 4 Programming with C#.NET 1 Camera The first program we write will display a picture on a Windows screen, with buttons to make the picture appear and disappear. Begin by loading Microsoft Visual Studio

More information

LESSON B. The Toolbox Window

LESSON B. The Toolbox Window The Toolbox Window After studying Lesson B, you should be able to: Add a control to a form Set the properties of a label, picture box, and button control Select multiple controls Center controls on the

More information

Free Microsoft Office 2010 training from MedCerts. Course Outline

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

More information

CUSTOMISE FIELDS AND LAYOUTS 2010

CUSTOMISE FIELDS AND LAYOUTS 2010 CUSTOMISE FIELDS AND LAYOUTS 2010 CUSTOMIZE YOUR FIELDS AND LAYOUTS Step 1 Define your fields Step 2 Customize your layouts Note: Changing the name of a field in the Define Fields box does not change the

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

igrafx Self-Paced Training Companion

igrafx Self-Paced Training Companion Introduction to this Self-Paced Training Companion The igrafx family of products provides you with easy to use tools to document, improve, and manage your processes. This document is a companion to the

More information

AEMLog users guide V User Guide - Advanced Engine Management 2205 West 126 th st Hawthorne CA,

AEMLog users guide V User Guide - Advanced Engine Management 2205 West 126 th st Hawthorne CA, AEMLog users guide V 1.00 User Guide - Advanced Engine Management 2205 West 126 th st Hawthorne CA, 90250 310-484-2322 INTRODUCTION...2 DOCUMENTATION...2 INSTALLING AEMLOG...4 TRANSFERRING DATA TO AND

More information

The File menu contains all the operations that we will discuss in this lesson: New, Open, Close, Save and Save As.

The File menu contains all the operations that we will discuss in this lesson: New, Open, Close, Save and Save As. Excel 2003 Create, open and save workbooks Introduction Page 1 By the end of this lesson, learners should be able to: State the differences between New, Open, Close Save and Save As Create a workbook Save

More information

Tutorial 1 Exploring ArcGIS

Tutorial 1 Exploring ArcGIS Tutorial 1 Exploring ArcGIS Before beginning this tutorial, you should make sure your GIS network folder is mapped on the computer you are using. Please refer to the How to map your GIS server folder as

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

Viewer. Quick Reference Guide

Viewer. Quick Reference Guide Viewer Quick Reference Guide igrafx 2009 Viewer Quick Reference Guide Table of Contents igrafx Viewer Quick Reference Guide........................................................3 igrafx Viewer Interface..................................................

More information

Activity Graphical Analysis with Excel and Logger Pro

Activity Graphical Analysis with Excel and Logger Pro Activity Graphical Analysis with Excel and Logger Pro Purpose Vernier s Logger Pro is a graphical analysis software that will allow you to collect, graph and manipulate data. Microsoft s Excel is a spreadsheet

More information

introduction Objective Modelling the cover

introduction Objective Modelling the cover Tutorials PIVOT JOINT Pivot Joint (LINK) tutorial /8 Related files PivotJointPackage2007.zip includes Automation Module.vcm and AutomationModule.3ds Description The Pivot Joint Package 2007 includes all

More information

Introduction to the Visual Studio.NET Integrated Development Environment IDE. CSC 211 Intermediate Programming

Introduction to the Visual Studio.NET Integrated Development Environment IDE. CSC 211 Intermediate Programming Introduction to the Visual Studio.NET Integrated Development Environment IDE CSC 211 Intermediate Programming Visual Studio.NET Integrated Development Environment (IDE) The Start Page(Fig. 1) Helpful links

More information

Nikon Capture NX "How To..." Series

Nikon Capture NX How To... Series 1 of 8 5/15/2007 2:24 PM Nikon Capture NX "How To..." Series Article 22 - How to convert multiple RAW NEF images to JPEG Purpose: Using the "Batch" process, you can convert all RAW NEF images in a single

More information

Microsoft Office Outlook 2007: Intermediate Course 01 Customizing Outlook

Microsoft Office Outlook 2007: Intermediate Course 01 Customizing Outlook Microsoft Office Outlook 2007: Intermediate Course 01 Customizing Outlook Slide 1 Customizing Outlook Course objectives Create a custom toolbar and customize the menu bar; customize the Quick Access toolbar,

More information

SYSTEM DESIGN SPECIFICATIONS ZIGBEE BASIC SYSTEM

SYSTEM DESIGN SPECIFICATIONS ZIGBEE BASIC SYSTEM SYSTEM DESCRIPTION This specification describes and defines the basic requirements of the CE3200 ZigBee temperature sensor mote. The ZigBee temperature sensor mote awakens from powerdown idle every two

More information

Word 2016 Advanced. North American Edition SAMPLE

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

More information

PDU Utility. User Manual

PDU Utility. User Manual PDU Utility User Manual Table of Contents 1. Introduction... 1 2. Installation... 2 3. PDU Utility Interface... 4 1. Introduction General PDU Utility is PDU monitoring, management software. It has been

More information

CPE 101, reusing/mod slides from a UW course (used by permission) Lecture 5: Input and Output (I/O)

CPE 101, reusing/mod slides from a UW course (used by permission) Lecture 5: Input and Output (I/O) CPE 101, reusing/mod slides from a UW course (used by permission) Lecture 5: Input and Output (I/O) Overview (5) Topics Output: printf Input: scanf Basic format codes More on initializing variables 2000

More information

ACCOUNT MANAGEMENT IN COLOR iqc / imatch

ACCOUNT MANAGEMENT IN COLOR iqc / imatch ACCOUNT MANAGEMENT IN COLOR iqc / imatch Color iqc / Color imatch contains an account management system that allows an administrator to create, modify, and mange groups of users and control what permissions

More information

DW DIGs Model Windows Tricks

DW DIGs Model Windows Tricks Window Menu 1. Window > Cascade Windows All open windows that aren't minimized at the bottom of the screen will be offset diagonally so you can see the title bar of each. 2. Window > Tile Windows All open

More information

Quick Start Guide for. uezgui wqs. Copyright 2010, Future Designs, Inc., All Rights Reserved, Rev 1.0

Quick Start Guide for. uezgui wqs. Copyright 2010, Future Designs, Inc., All Rights Reserved, Rev 1.0 Quick Start Guide for uezgui-2478-43wqs Copyright 2010, Future Designs, Inc., All Rights Reserved, Rev 1.0 1. Introduction The uezgui is optimized to save development time in typical embedded control applications.

More information

CENTURION Pro Diagnostic Motorcycle Scan Tool USER S GUIDE. Version 1.0

CENTURION Pro Diagnostic Motorcycle Scan Tool USER S GUIDE. Version 1.0 CENTURION Pro Diagnostic Motorcycle Scan Tool USER S GUIDE Version 1.0 CHAPTER 1: Preliminaries Introduction Centurion is a user-friendly tool that can diagnose engine and system problems and perform many

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

About Boxoft All to AMR Converter

About Boxoft All to AMR Converter Note: This product is distributed on a try-before-you-buy basis. All features described in this documentation are enabled. The registered version does not have time limit About Boxoft All to AMR Converter

More information

Procedures. This is a common situation -- there is some functionality that computers should have that the do not the solution is to write a procedure

Procedures. This is a common situation -- there is some functionality that computers should have that the do not the solution is to write a procedure Procedures Procedures are familiar in everyday life -- they are a standard process for achieving some objective. Procedures in computers are similar: They are a standard process of computing some result.

More information

Chapter 1 GUI Applications

Chapter 1 GUI Applications Chapter 1 GUI Applications 1. GUI Applications So far we've seen GUI programs only in the context of Applets. But we can have GUI applications too. A GUI application will not have any of the security limitations

More information

Connecting OSI PI Client to Top Server

Connecting OSI PI Client to Top Server Connecting OSI PI Client to Top Server Page 2 of 12 Table of Contents INTRODUCTION 3 CONNECTING TO TOPSERVER FROM OSI PI 4 MODIFYING THE OPCINT.BAT FILE 8 CONFIGURING OSI PI 9 Creating a Display 9 Creating

More information

Quick Reference Card. GeneChip Sequence Analysis Software 4.1. I. GSEQ Introduction

Quick Reference Card. GeneChip Sequence Analysis Software 4.1. I. GSEQ Introduction Quick Reference Card GeneChip Sequence Analysis Software 4.1 I. GSEQ Introduction GeneChip Sequence Analysis Software (GSEQ) is used to analyze data from the Resequencing Arrays GSEQ allows you to: Analyze

More information

CS 115 Exam 1, Fall 2015 Thu. 09/24/2015

CS 115 Exam 1, Fall 2015 Thu. 09/24/2015 CS 115 Exam 1, Fall 2015 Thu. 09/24/2015 Name: Section: Rules and Hints You may use one handwritten 8.5 11 cheat sheet (front and back). This is the only additional resource you may consult during this

More information

Paint Tutorial (Project #14a)

Paint Tutorial (Project #14a) Paint Tutorial (Project #14a) In order to learn all there is to know about this drawing program, go through the Microsoft Tutorial (below). (Do not save this to your folder.) Practice using the different

More information

Thermacam Reporter 2000 Professional Template Building Tutorial

Thermacam Reporter 2000 Professional Template Building Tutorial Introduction: This tutorial will guide you step-by-step through the process of creating a new template using Thermacam Reporter 2000 Professional. The template consists of an item page with an IR image

More information

Windows 2000 Safe Mode

Windows 2000 Safe Mode LAB PROCEDURE 29 Windows 2000 Safe Mode OBJECTIVES 1. Restart and try various startup options. RESOURCES Troubleshooting 1. Marcraft 8000 Trainer with Windows 2000 installed 2. A PS2 mouse 3. A LAN connection

More information

AEMLog Users Guide. Version 1.01

AEMLog Users Guide. Version 1.01 AEMLog Users Guide Version 1.01 INTRODUCTION...2 DOCUMENTATION...2 INSTALLING AEMLOG...4 AEMLOG QUICK REFERENCE...5 THE MAIN GRAPH SCREEN...5 MENU COMMANDS...6 File Menu...6 Graph Menu...7 Analysis Menu...8

More information

KingSCADA Quick Start Manual How to create a new project

KingSCADA Quick Start Manual How to create a new project KingSCADA Quick Start Manual How to create a new project KingSCADA Hardware Requirements (recommended): Processor Pentium IV and above CPU speed 2GHz and above 32 bit CPU 2GB RAM and above 20G HDD and

More information

LAB: INTRODUCTION TO FUNCTIONS IN C++

LAB: INTRODUCTION TO FUNCTIONS IN C++ LAB: INTRODUCTION TO FUNCTIONS IN C++ MODULE 2 JEFFREY A. STONE and TRICIA K. CLARK COPYRIGHT 2014 VERSION 4.0 PALMS MODULE 2 LAB: FUNCTIONS IN C++ 2 Introduction This lab will provide students with an

More information

Linux Command Homework Individual/Team (1-2 Persons) Homework Assignment Turn In One Copy Per Person 5 Points

Linux Command Homework Individual/Team (1-2 Persons) Homework Assignment Turn In One Copy Per Person 5 Points All of the work in this project is my own! I have not left copies of my code in public folders on university computers. I have not given any of this project to others. I will not give any portion of this

More information

1. Brief introduction of PDF Pinter

1. Brief introduction of PDF Pinter User Manual of VeryDOC PDF Printer 1. Brief introduction of PDF Pinter... 1 2. How to use... 2 2.1 Download and install... 2 2.2 How to register it... 2 3. When use it as virtual printer... 3 3.1 Set PDF

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

Getting Started. Microsoft QUICK Source 7

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

More information

Operating Manual SMMS WAVE TOOL FILE CONVERTER

Operating Manual SMMS WAVE TOOL FILE CONVERTER SMMS WAVE TOOL FILE CONVERTER Table of Contents 1 Terms of use......................................................... 3 2 Operating environment................................................. 4 3 Installation...........................................................

More information

Import and preprocessing of raw spectrum data

Import and preprocessing of raw spectrum data BioNumerics Tutorial: Import and preprocessing of raw spectrum data 1 Aim Comprehensive tools for the import of spectrum data, both raw spectrum data as processed spectrum data are incorporated into BioNumerics.

More information