The first tim e you use Visual Studio it is im portant to get the initial settings right. Load Visual Studio 2010 from the Start menu:

Size: px
Start display at page:

Download "The first tim e you use Visual Studio it is im portant to get the initial settings right. Load Visual Studio 2010 from the Start menu:"

Transcription

1 Visual Studio is an I nt egrated Developm ent Environm ent (I DE) for program m ing in Visual Basic (it can also do C# and C+ + but we will not be covering those). I t is perfectly possible to write Visual Basic program s in Notepad, but an I DE provides tools to m ake the process easier! The first tim e you use Visual Studio it is im portant to get the initial settings right. Load Visual Studio 2010 from the Start menu: The first tim e, it m ay take quite a while and show a message loading user settings - be patient! A window will appear offering a choice of settings. You need to select Visu al Basic d ev elop m en t set t in gs.

2 When you start a new project you will be offered som e choices about the type of project. For now, we will only be working with Windows Form s proj ects. You MUST name your project at the start. This is because Visual Studio creates a folder with several files and subfolders for each project. Name this one My Fir st Pr oj ect, and click OK. Now you will see a Form in the Design window. There are some other parts of Visual Studio that we need to know about before we go any further. The Toolbox is The Debug button. Used to Run your program, to try it out. you click on it. I t is a good idea to pin the toolbox open. The Properties panel. You will use this a lot to set up the features of your form!

3 Before we can create any code, we need to design & create a Form. This is the User I nterface (UI ), so it needs to be carefully thought out. Your UI will contain the action buttons, and often the m ethods of input and output. This first sim ple project will dem onstrate the m ain ways of doing this. On the right is a simple form design. We will go through the ways of doing this, then look at the code that we need to add to make it work. Enter your nam e: Start By Mr X Am ple, Start by looking in the Properties panel on the right. Near the top you should find the Name Form1. Scroll down to find the Text property and change this from Form1 to My Fir st Pr oj ect change to My First Project. 2.From the Toolbox, click on Button, and drag its shape out on the form. 3.Now go to the Properties panel. Near the top of the list you will find the Name, which will be Button1. Change this to b t n St ar t. 4.Further down the list you will find the Text property. Change this to St ar t. I t s really im portant that you nam e the objects correctly - the code we shall add later refers to the object nam es, so if you don t name them correctly the code won t work

4 5.From the Toolbox, add a Label at the top of the Form. 6.Change the Name to lb len t er Nam e, and the Text property to En t er y our n am e: 7.Add another label at the bottom of the form. Change the Name t o lb lau t h or, and the Text property to your own nam e and the date. Enter your nam e: Start By Mr X Am ple, From the Toolbox, add a Textbox below lblentername. Change the Name to t x t I n pu t. 9.Add a second Textbox below the Start button and change the Name to t x t Ou t pu t. You now have the Form com pleted, and you can begin the code. Bef or e y ou g o an y f u r t h er, click t h e SA VE ALL b u t t on! At this point, you can try running the code with the Debug button. I t won t do anything, but it will display your finished form. Now do quest ion 7 on your sheet

5 1.On the Form, Double-click on the Start button. You will see the view switch to a window with some code in it. Double-clicking on any obj ect on a Form creates this in it ial code f or t h e obj ect. This code is called a m ethod stub. You should not delete any of it. 2.I n the gap in the m iddle of the m ethod stub is where you can add further code. 3. Enter this code into the gap: Dim MyName As String MyName = txtinput.text txtoutput.text = " WelcometoVB,"& MyName This line defines the variable My Nam e This line makes My Nam e equal to whatever is typed in the Input text box 4.Run the code and see if it works. This line makes a m essage appear in the Output text box, including the value of MyNam e

6 You have seen one method of input and output. You will now change the code to use som e other ways. 1.This tim e, delete both the Textboxes (txtoutput and txtinput) from the Form. 2.Change the code as follows:. Delete the line MyName = txtinput.text and replace it with MyName = Input Box("Enter Your Name" ) Then delete the line and replace it with txtoutput.text = ("Welcome to VB, " & MyName) MsgBox("Welcome to VB, " & MyName) 3.Save All, then Run the modified code. This time the differences will be very obvious! There are several ways of getting inputs and outputs. When you are designing a program you need to choose the best method for the purpose.

7 Here s another line to add to your code. 1.Add this line after MsgBox( " Wel come t o VB, " & MyName) and before End Sub: MsgBox(That s All Folks!) 2.Save All, then Run the modified code. What happens? I s it what you expected? Why? Next

8 You just added this line of code: MsgBox(That s All Folks!) I t didn t work. Why not? Can you work out what you need to do to fix it? 1.Change the code so that it works. 2.Save All, then Run the modified code. The process of finding and correcting errors in code is known as DEBUGGI NG.

Using RefWorks to Create an Annotated Bibliography

Using RefWorks to Create an Annotated Bibliography Using RefWorks to Create an Annotated Bibliography Stage 1 : Gathering inform ation and m anaging the sources. Before you begin, open two windows in your browser. In one open Ref Works from the library

More information

1. Create your First VB.Net Program Hello World

1. Create your First VB.Net Program Hello World 1. Create your First VB.Net Program Hello World 1. Open Microsoft Visual Studio and start a new project by select File New Project. 2. Select Windows Forms Application and name it as HelloWorld. Copyright

More information

PART 1: Getting Started

PART 1: Getting Started Programming in C++ / FASTTRACK TUTORIALS Introduction PART 1: Getting Started Welcome to the first article in the C++ FASTTRACK tutorial series! These tutorials are designed to take you from zero to a

More information

Your First Windows Form

Your First Windows Form Your First Windows Form From now on, we re going to be creating Windows Forms Applications, rather than Console Applications. Windows Forms Applications make use of something called a Form. The Form is

More information

To get started with Visual Basic 2005, I recommend that you jump right in

To get started with Visual Basic 2005, I recommend that you jump right in In This Chapter Chapter 1 Wading into Visual Basic Seeing where VB fits in with.net Writing your first Visual Basic 2005 program Exploiting the newfound power of VB To get started with Visual Basic 2005,

More information

NWA3000-N Series. Wireless N Business WLAN 3000 Series Access Point. Default Login Details.

NWA3000-N Series. Wireless N Business WLAN 3000 Series Access Point. Default Login Details. NWA3000-N Series Wireless N Business WLAN 3000 Series Access Point NWA3560-N: 802.11 a/b/g/n Dual-Radio Business Access Point (Indoor) NWA3160-N: 802.11 a/b/g/n Business Access Point (Indoor) NWA3550-N:

More information

Copyright 2018 MakeUseOf. All Rights Reserved.

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

More information

Installing a Custom AutoCAD Toolbar (CUI interface)

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

More information

Toolkit Activity Installation and Registration

Toolkit Activity Installation and Registration Toolkit Activity Installation and Registration Installing the Toolkit activity on the Workflow Server Install the Qfiche Toolkit workflow activity by running the appropriate SETUP.EXE and stepping through

More information

University of California at Berkeley College of Engineering Department of Electrical Engineering and Computer Science

University of California at Berkeley College of Engineering Department of Electrical Engineering and Computer Science University of California at Berkeley College of Engineering Department of Electrical Engineering and Computer Science EECS 150 Fall 2000 Original Lab By: J.Wawrzynek and N. Weaver Edited by B. Choi, R.

More information

COPYRIGHTED MATERIAL. Visual Basic: The Language. Part 1

COPYRIGHTED MATERIAL. Visual Basic: The Language. Part 1 Part 1 Visual Basic: The Language Chapter 1: Getting Started with Visual Basic 2010 Chapter 2: Handling Data Chapter 3: Visual Basic Programming Essentials COPYRIGHTED MATERIAL Chapter 1 Getting Started

More information

Getting started 7. Setting properties 23

Getting started 7. Setting properties 23 Contents 1 2 3 Getting started 7 Introduction 8 Installing Visual Basic 10 Exploring the IDE 12 Starting a new project 14 Adding a visual control 16 Adding functional code 18 Saving projects 20 Reopening

More information

University of California at Berkeley College of Engineering Department of Electrical Engineering and Computer Science. EECS 150 Spring 2000

University of California at Berkeley College of Engineering Department of Electrical Engineering and Computer Science. EECS 150 Spring 2000 University of California at Berkeley College of Engineering Department of Electrical Engineering and Computer Science EECS 150 Spring 2000 Lab 1 Introduction to Xilinx Design Software 1 Objectives In this

More information

Better Games Through Usability Evaluation and Testing By Sauli Laitinen Gamasutra June 23, 2005

Better Games Through Usability Evaluation and Testing By Sauli Laitinen Gamasutra June 23, 2005 1 of 10 7/1/2008 5:12 PM CMP Game Group Presents: Better Games Through Usability Evaluation and Testing By Sauli Laitinen Gamasutra June 23, 2005 URL: http://www.gamasutra.com/features/20050623/laitinen_01.shtml

More information

The Filter Property Selecting a File The Save Menu The SaveFileDialog Control The Edit Menu The Copy Menu...

The Filter Property Selecting a File The Save Menu The SaveFileDialog Control The Edit Menu The Copy Menu... Part One Contents Introduction...3 What you need to do the course...3 The Free Visual Basic Express Edition...3 Additional Files...4 Getting Started...5 The Toolbox...9 Properties...15 Saving your work...21

More information

SAMLab Tip Sheet #4 Creating a Histogram

SAMLab Tip Sheet #4 Creating a Histogram Creating a Histogram Another great feature of Excel is its ability to visually display data. This Tip Sheet demonstrates how to create a histogram and provides a general overview of how to create graphs,

More information

Installing and Using Dev-C++

Installing and Using Dev-C++ Installing and Using Dev-C++ 1. Installing Dev-C++ Orwell Dev-C++ is a professional C++ IDE, but not as big and complex as Visual Studio. It runs only on Windows; both Windows 7 and Windows 8 are supported.

More information

SCRIPT REFERENCE. UBot Studio Version 4. The Browser Commands

SCRIPT REFERENCE. UBot Studio Version 4. The Browser Commands SCRIPT REFERENCE UBot Studio Version 4 The Browser Commands Navigate This command will navigate to whatever url you insert into the url field within the command. In the section of the command labeled Advanced,

More information

Chapter 13: Remotely Download Via Modem_Link

Chapter 13: Remotely Download Via Modem_Link Chapter 13: Remotely Download Via _Link 13.1: Introduction COM4 of The I-8417/8817/8437/8837 & COM2 of the W-8xx7 supports full modem signals. It has embedded the _Link protocol for remotely download and

More information

Lesson 10: Exercise: Tip Calculator as a Universal App

Lesson 10: Exercise: Tip Calculator as a Universal App Lesson 10: Exercise: Tip Calculator as a Universal App In this lesson we're going to take the work that we did in the previous lesson and translate it into a Universal App, which will allow us to distribute

More information

Installing VS Code. Instructions for the Window OS.

Installing VS Code. Instructions for the Window OS. Installing VS Code Instructions for the Window OS. VS Code is a free text editor created by Microsoft. It is a lightweight version of their commercial product, Visual Studio. It runs on Microsoft Windows,

More information

Quadrics QsNet II : A network for Supercomputing Applications

Quadrics QsNet II : A network for Supercomputing Applications Quadrics QsNet II : A network for Supercomputing Applications David Addison, Jon Beecroft, David Hewson, Moray McLaren (Quadrics Ltd.), Fabrizio Petrini (LANL) You ve bought your super computer You ve

More information

U.S. Pacific Albacore Electronic Logbook

U.S. Pacific Albacore Electronic Logbook U.S. Pacific Albacore Electronic Logbook Table of Contents U.S. Pacific Albacore Electronic Logbook... 1 Table of Contents... 1 Introduction and Installation... 2 Using the Pacific Albacore Logbook Program...

More information

Department of Computer Science. Software Usage Guide. CSC132 Programming Principles 2. By Andreas Grondoudis

Department of Computer Science. Software Usage Guide. CSC132 Programming Principles 2. By Andreas Grondoudis Department of Computer Science Software Usage Guide To provide a basic know-how regarding the software to be used for CSC132 Programming Principles 2 By Andreas Grondoudis WHAT SOFTWARE AM I GOING TO NEED/USE?...2

More information

Step 5 How to download free Music from YouTube You need a YouTube account to download free Music from YouTube. If you don t have a YouTube account,

Step 5 How to download free Music from YouTube You need a YouTube account to download free Music from YouTube. If you don t have a YouTube account, Step 5 How to download free Music from YouTube You need a YouTube account to download free Music from YouTube. If you don t have a YouTube account, Step 2 shows you how to create an account. If you already

More information

COPYRIGHTED MATERIAL. section I The Visual Studio IDE and Controls. lesson 1: Getting Started with the Visual Studio IDE. lesson 2: Creating Controls

COPYRIGHTED MATERIAL. section I The Visual Studio IDE and Controls. lesson 1: Getting Started with the Visual Studio IDE. lesson 2: Creating Controls section I The Visual Studio IDE and Controls The lessons in this section of the book explain how to use the Visual Studio integrated development environment (IDE). They explain how to use the IDE to create

More information

Using Visual Studio. Solutions and Projects

Using Visual Studio. Solutions and Projects Using Visual Studio Solutions and Projects A "solution" contains one or several related "projects". Formerly, the word workspace was used instead of solution, and it was a more descriptive word. For example,

More information

Scripting with CAMMaster and Visual Basic 2008

Scripting with CAMMaster and Visual Basic 2008 Introduction CAMMaster is a very high performance CAM software program. Most of the functions that you can perform manually can be automated by utilizing the methods and properties that are exposed by

More information

COPYRIGHTED MATERIAL. Part I: Getting Started. Chapter 1: IDE. Chapter 2: Controls in General. Chapter 3: Program and Module Structure

COPYRIGHTED MATERIAL. Part I: Getting Started. Chapter 1: IDE. Chapter 2: Controls in General. Chapter 3: Program and Module Structure Part I: Getting Started Chapter 1: IDE Chapter 2: Controls in General Chapter 3: Program and Module Structure Chapter 4: Data Types, Variables, and Constants Chapter 5: Operators Chapter 6: Subroutines

More information

How to get started with Theriak-Domino and some Worked Examples

How to get started with Theriak-Domino and some Worked Examples How to get started with Theriak-Domino and some Worked Examples Dexter Perkins If you can follow instructions, you can download and install Theriak-Domino. However, there are several folders and many files

More information

Installing Thunderbird

Installing Thunderbird by Len Nasman, Bristol Village Ohio Computer Club Copyright 2018 ~may be copied with permission Introduction The thing to remember is that to send and receive email you must have three things: 1. An email

More information

Dive Into Visual C# 2008 Express

Dive Into Visual C# 2008 Express 1 2 2 Dive Into Visual C# 2008 Express OBJECTIVES In this chapter you will learn: The basics of the Visual Studio Integrated Development Environment (IDE) that assists you in writing, running and debugging

More information

Software Diagnostics Developer Edition Software Diagnostics

Software Diagnostics Developer Edition Software Diagnostics Software Diagnostics Developer Edition 1.0 201 0 Software Diagnostics SD Developer Edition User Guide for Software Diagnostics Developer Edition 1.0 by Software Diagnostics This document describes the

More information

Lesson 13 Transcript: User-Defined Functions

Lesson 13 Transcript: User-Defined Functions Lesson 13 Transcript: User-Defined Functions Slide 1: Cover Welcome to Lesson 13 of DB2 ON CAMPUS LECTURE SERIES. Today, we are going to talk about User-defined Functions. My name is Raul Chong, and I'm

More information

File Associations - Changing Defaults. Created by Sherry Surdam

File Associations - Changing Defaults. Created by Sherry Surdam File Associations - Changing Defaults Created by Sherry Surdam Preamble Before we start discussing file associations and how to use them, you need to know that Windows XP and Vista handle changing associations

More information

The same command line options are available on our per-machine installs as well.

The same command line options are available on our per-machine installs as well. Engage Configuration Installer Parameters You can pass command line parameters to the Engage setup executable. These parameters are helpful for unattended silent installs particularly when deploying to

More information

Getting started 7. Setting properties 23

Getting started 7. Setting properties 23 Contents 1 2 3 Getting started 7 Introducing Visual Basic 8 Installing Visual Studio 10 Exploring the IDE 12 Starting a new project 14 Adding a visual control 16 Adding functional code 18 Saving projects

More information

Instructions for Using the Databases

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

More information

Introduction to Programming SAMPLE. Examination Paper. Time: 3 hours

Introduction to Programming SAMPLE. Examination Paper. Time: 3 hours Introduction to Programming SAMPLE Examination Paper Answer ALL questions. Produce a Word document using the instructions provided in the Background information section. Time: 3 hours The maximum mark

More information

UV Mapping to avoid texture flaws and enable proper shading

UV Mapping to avoid texture flaws and enable proper shading UV Mapping to avoid texture flaws and enable proper shading Foreword: Throughout this tutorial I am going to be using Maya s built in UV Mapping utility, which I am going to base my projections on individual

More information

SysexFiler -- Triton to Kronos Combi Conversion

SysexFiler -- Triton to Kronos Combi Conversion SysexFiler -- Triton to Kronos Combi Conversion by Tim Godfrey SysexFiler is a general purpose Sysex manager for Windows, extended to perform specific conversion tasks for a few synths. It is not a polished

More information

Header. Article. Footer

Header. Article. Footer Styling your Interface There have been various versions of HTML since its first inception. HTML 5 being the latest has benefited from being able to look back on these previous versions and make some very

More information

Visual Software MDS 3.0. User Manual PRELIMINARY. Copyright Reliable Health Systems, LLC 2610 Nostrand Avenue Brooklyn, NY 11210

Visual Software MDS 3.0. User Manual PRELIMINARY. Copyright Reliable Health Systems, LLC 2610 Nostrand Avenue Brooklyn, NY 11210 Visual Software PRELIMINARY Copyright 2010 Reliable Health Systems, LLC 2610 Nostrand Avenue Brooklyn, NY 11210 www.reliablehealth.com Tel: 718-338-2400 Fax: 718-338-2741 Reliable Health Systems, LLC 2610

More information

Power Vision 1.5 (Cod )

Power Vision 1.5 (Cod ) ELECTRICAL NETWORK ANALYSIS SOFTWARE Power Vision 1.5 (Cod. 775 353) USER S MANUAL (Cod. M 981 358 / 02 D) 2002 - CIRCUTOR, S.A. INDEX 1.- POWER VISION SOFTWARE INSTALLATION...4 2.- INTRODUCTION TO POWER

More information

Opening Microsoft Visual Studio. On Microsoft Windows Vista and XP to open the visual studio do the following:

Opening Microsoft Visual Studio. On Microsoft Windows Vista and XP to open the visual studio do the following: If you are a beginner on Microsoft Visual Studio 2008 then you will at first find that this powerful program is not that easy to use for a beginner this is the aim of this tutorial. I hope that it helps

More information

Unlocking Hidden Outfits

Unlocking Hidden Outfits Ever wanted to get your hands on some of the hidden outfits or hair styles buried inside the game files? With this simple tutorial you ll be able to do just that! For this tutorial I extracted the Villain

More information

Excel 2010 Macro Vba For Loop Through Rows In A Sheet

Excel 2010 Macro Vba For Loop Through Rows In A Sheet Excel 2010 Macro Vba For Loop Through Rows In A Sheet I'm using Excel 2013 & I'm putting together a macro to automate copy/pasting I've not used VBA for a very long time so I'm at a bit of a loss as to

More information

BobCAD-CAM FAQ #50: How do I use a rotary 4th axis on a mill?

BobCAD-CAM FAQ #50: How do I use a rotary 4th axis on a mill? BobCAD-CAM FAQ #50: How do I use a rotary 4th axis on a mill? Q: I ve read FAQ #46 on how to set up my milling machine. How do I enable 4th axis to actually use it? A: Enabling 4th axis in the machine

More information

A Quick Tour GETTING STARTED WHAT S IN THIS CHAPTER?

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

More information

First Visual Basic Lab Paycheck-V1.0

First Visual Basic Lab Paycheck-V1.0 VISUAL BASIC LAB ASSIGNMENT #1 First Visual Basic Lab Paycheck-V1.0 Copyright 2013 Dan McElroy Paycheck-V1.0 The purpose of this lab assignment is to enter a Visual Basic project into Visual Studio and

More information

Advanced Com puter Architecture: s1/ 2005

Advanced Com puter Architecture: s1/ 2005 Advanced Com puter Architecture: s1/ 2005 Project Presen tation David Mirabito Handling branches through context fking Currently: b eq Hypothetical instruction stream (operands rem oved) Currently: b eq

More information

Introduction to Programming. January Examination Paper. Time: 3 hours

Introduction to Programming. January Examination Paper. Time: 3 hours Introduction to Programming January 2016 Examination Paper Answer ALL questions. Produce a Word document using the instructions provided in the Background information section. Time: 3 hours The maximum

More information

Tutorial - Hello World

Tutorial - Hello World Tutorial - Hello World Spirit Du Ver. 1.1, 25 th September, 2007 Ver. 2.0, 7 th September, 2008 Ver. 2.1, 15 th September, 2014 Contents About This Document... 1 A Hello Message Box... 2 A Hello World

More information

Setting up a ColdFusion Workstation

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

More information

INTRODUCTION TO 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

How to read/write text file

How to read/write text file How to read/write text file Contents Use StreamWriter... 1 Create button click event handler... 2 Create StreamWriter... 3 Write to file... 5 Close file... 8 Test file writing... 9 Use StreamReader...

More information

Running Wordstar 6 on Windows 7 Using vdos

Running Wordstar 6 on Windows 7 Using vdos Running Wordstar 6 on Windows 7 Using vdos Thanks to Dennis McCunney for helping me learn how to set vdos up. DISCLAIMER #1: As explained below, I am running Wordstar 6 for DOS on a Windows 7 (64- bit)

More information

QUICK REFERENCE GUIDE

QUICK REFERENCE GUIDE Folders new projects. Organise your folders to find files quickly and easily 1 Look in your yellow storage Folders it can be organised into simple folder structures to help with browsing 2 Click on your

More information

Creating Simple Links

Creating Simple Links Creating Simple Links Linking to another place is one of the most used features on web pages. Some links are internal within a page. Some links are to pages within the same web site, and yet other links

More information

Teacher Tips. Impero learning series Impero Solutions Ltd. English

Teacher Tips. Impero learning series Impero Solutions Ltd. English Impero learning series English 2015 Impero Solutions Ltd. Impero installation guide table of contents Teacher Tips 3 Restricting Individual Users Lock Screen, Keyboard & Mouse Run Website/Program on all

More information

Creating a multilingual site in WebPlus

Creating a multilingual site in WebPlus Creating a multilingual site in WebPlus One of the problems faced by a number of WebPlus users involves organizing a multilingual website. Ordinarily, the easiest way to do this is to create your primary

More information

Starting Visual Studio 2005

Starting Visual Studio 2005 Starting Visual Studio 2005 1 Startup Language 1. Select Language 2. Start Visual Studio If this is your first time starting VS2005 after installation, you will probably see this screen. It is asking you

More information

Install Visual Studio Community Version 2017

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

More information

Organizing Your

Organizing Your Organizing Your Email Floyd County Schools Technology Department Table of Contents Organizing Your Email Folder... 1 Cleaning Out Your Outlook Email... 1 Recovering Deleted Items from Deleted Items...

More information

Hello World! Computer Programming for Kids and Other Beginners. Chapter 1. by Warren Sande and Carter Sande. Copyright 2009 Manning Publications

Hello World! Computer Programming for Kids and Other Beginners. Chapter 1. by Warren Sande and Carter Sande. Copyright 2009 Manning Publications Hello World! Computer Programming for Kids and Other Beginners by Warren Sande and Carter Sande Chapter 1 Copyright 2009 Manning Publications brief contents Preface xiii Acknowledgments xix About this

More information

Using CodeWarrior V4.5 Assembler with Adapt9S12X and Serial Monitor

Using CodeWarrior V4.5 Assembler with Adapt9S12X and Serial Monitor Using CodeWarrior V4.5 Assembler with Adapt9S12X and Serial Monitor This document assumes that CodeWarrior has already been installed on your PC. It further assumes that you have all the necessary hardware,

More information

Excel Macro Runtime Error Code 1004 Saveas Of Object _workbook Failed

Excel Macro Runtime Error Code 1004 Saveas Of Object _workbook Failed Excel Macro Runtime Error Code 1004 Saveas Of Object _workbook Failed The code that follows has been courtesy of this forum and the extensive help i received from everyone. But after an Runtime Error '1004'

More information

Power Vision 1.7 (Cod )

Power Vision 1.7 (Cod ) ELECTRICAL NETWORK ANALYSIS SOFTWARE Power Vision 1.7 (Cod. 775 353) USER S MANUAL (Cod. M 981 358 / 05B) 2005 - CIRCUTOR, S.A. INDEX 1.- POWER VISION SOFTWARE INSTALLATION...4 2.- INTRODUCTION TO POWER

More information

Using Microsoft Outlook Data Files

Using Microsoft Outlook Data Files Using Microsoft Outlook Data Files Microsoft Outlook Data Files (ODF) are used for storing correspondence received via Microsoft Outlook. Essentially, an ODF is a folder, just like any other you might

More information

Getting Help from LinkedIn

Getting Help from LinkedIn Getting Help from LinkedIn via Trouble Tickets and Twitter Getting Help from LinkedIn via Trouble Tickets can be either very complicated or very simple. If you need help from LinkedIn, the LinkedIn trouble

More information

1. MS EXCEL. a. Charts/Graphs

1. MS EXCEL. a. Charts/Graphs 1. MS EXCEL 3 tips to make your week easier! (MS Excel) In this guide we will be focusing on some of the unknown and well known features of Microsoft Excel. There are very few people, if any at all, on

More information

Moving from FrameMaker to Blaze: Best Practices

Moving from FrameMaker to Blaze: Best Practices Moving from Adobe FrameMaker to MadCap Blaze is easy, although to get the best results you need to do some planning before you start. This document discusses suggestions and issues to make the import result

More information

Step 4 Part F - How to Download a Video on YouTube and Delete a Video

Step 4 Part F - How to Download a Video on YouTube and Delete a Video Step 4 Part F - How to Download a Video on YouTube and Delete a Video When you finish Edit your Video on your YouTube account and save it or save as new Video, you may want to Download it to your computer.

More information

A Step-by-Step Guide to getting started with Hot Potatoes

A Step-by-Step Guide to getting started with Hot Potatoes A Step-by-Step Guide to getting started with Hot Potatoes Hot Potatoes Software: http://web.uvic.ca/hrd/hotpot/ Andrew Balaam Objectives: To put together a short cycle of exercises linked together based

More information

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

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

More information

Excel VBA. Microsoft Excel is an extremely powerful tool that you can use to manipulate, analyze, and present data.

Excel VBA. Microsoft Excel is an extremely powerful tool that you can use to manipulate, analyze, and present data. Excel VBA WHAT IS VBA AND WHY WE USE IT Microsoft Excel is an extremely powerful tool that you can use to manipulate, analyze, and present data. Sometimes though, despite the rich set of features in the

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

Customizing DAZ Studio

Customizing DAZ Studio Customizing DAZ Studio This tutorial covers from the beginning customization options such as setting tabs to the more advanced options such as setting hot keys and altering the menu layout. Introduction:

More information

Tutorial: Modify UI 01 How to Load a UI Canvas Using Flow Graph

Tutorial: Modify UI 01 How to Load a UI Canvas Using Flow Graph Tutorial: Modify UI 01 How to Load a UI Canvas Using Flow Graph This tutorial is the first tutorial in the Creating an Options Menu tutorial series and walks you through the steps to load a canvas using

More information

Using Dreamweaver CC. Logo. 4 Creating a Template. Page Heading. Page content in this area. About Us Gallery Ordering Contact Us Links

Using Dreamweaver CC. Logo. 4 Creating a Template. Page Heading. Page content in this area. About Us Gallery Ordering Contact Us Links Using Dreamweaver CC 4 Creating a Template Now that the main page of our website is complete, we need to create the rest of the pages. Each of them will have a layout that follows the plan shown below.

More information

This guide does not cover every aspect of the WatchManager software and/or setups. Additional online or telephonic support may be required.

This guide does not cover every aspect of the WatchManager software and/or setups. Additional online or telephonic support may be required. User's Guide This guide does not cover every aspect of the WatchManager software and/or setups. Additional online or telephonic support may be required. WatchManager Demonstration Data Installation 2014

More information

Page design and working with frames

Page design and working with frames L E S S O N 2 Page design and working with frames Lesson objectives Suggested teaching time To a learn about designing web pages and creating framesets in your web, you will: 35-45 minutes a b c Discuss

More information

Quartus II Tutorial. September 10, 2014 Quartus II Version 14.0

Quartus II Tutorial. September 10, 2014 Quartus II Version 14.0 Quartus II Tutorial September 10, 2014 Quartus II Version 14.0 This tutorial will walk you through the process of developing circuit designs within Quartus II, simulating with Modelsim, and downloading

More information

Interface. 2. Interface Adobe InDesign CS2 H O T

Interface. 2. Interface Adobe InDesign CS2 H O T 2. Interface Adobe InDesign CS2 H O T 2 Interface The Welcome Screen Interface Overview The Toolbox Toolbox Fly-Out Menus InDesign Palettes Collapsing and Grouping Palettes Moving and Resizing Docked or

More information

How to Hide Your Affiliate Links

How to Hide Your Affiliate Links How to Hide Your Affiliate Links 1 st Edition v.1.0.1 Akinori Furukoshi DISCLAIMER This book was written to provide information regarding the subject matter. It is distributed with the understanding that

More information

User's Guide Low Poly OBJ Importer v1.0

User's Guide Low Poly OBJ Importer v1.0 User's Guide Low Poly OBJ Importer v1.0 Chapter 1 How It Works 1 Chapter 2 Quick Start 2 Chapter 3 Main Interface 3 Import 3 Object/SubObject Selector 4 Fill Options 5 Stroke Options 7 Global Options 8

More information

Lesson 11. Programming a PIC

Lesson 11. Programming a PIC Elmer 160 Lesson 11 Overview Lesson 11 In this section In this lesson, we will use the FPP program to load our code into a PIC. Following is a list of topics in this section: Description See Page Setting

More information

AMD and OpenCL. Mike Houst on Senior Syst em Archit ect Advanced Micro Devices, I nc.

AMD and OpenCL. Mike Houst on Senior Syst em Archit ect Advanced Micro Devices, I nc. AMD and OpenCL Mike Houst on Senior Syst em Archit ect Advanced Micro Devices, I nc. Overview Brief overview of ATI Radeon HD 4870 architecture and operat ion Spreadsheet perform ance analysis Tips & tricks

More information

Configuring Thunderbird for GMail

Configuring Thunderbird for GMail Configuring Thunderbird for GMail There are a couple of settings that need to be changed on Gmail before you can add the account to Thunderbird. 1) Log in to Gmail and click on Settings (which looks like

More information

Box User Guide. Contents

Box User Guide. Contents Box User Guide In this handy guide, we ll show you how to share, access and mange your content from anywhere. You ll see the play-by-plays you need to get the Box basics under your belt, plus some tips

More information

6.189 D ay 6. Name: R eadings. E x er cise 6. 1 { W ar mup: F inding B ugs

6.189 D ay 6. Name: R eadings. E x er cise 6. 1 { W ar mup: F inding B ugs 6.189 D ay 6 Name: T urn in your written answers to 6.1 and 6.2, stapled to your printed code les, tomorrow at the start of lecture. R eadings How T o T hink L ike A C omputer Scientist, chapter 10. E

More information

Blu Ray Burning in MZ280 Step 1 - Set Toast up to burn a Blu-ray Video Disc.

Blu Ray Burning in MZ280 Step 1 - Set Toast up to burn a Blu-ray Video Disc. Blu Ray Burning in MZ280 Step 1 - Set Toast up to burn a Blu-ray Video Disc. Open Toast. On the main screen, click the Video button in the upper-left portion of the screen, and select Blu-ray Video from

More information

Splicing Instructions

Splicing Instructions Splicing Instructions When we create our experiments, we need to be able to play individual words as experiment stimuli. In order to get these individual words, we have a native speaker of whatever language

More information

Adobe Premiere: Getting Started

Adobe Premiere: Getting Started Prepared by Ansel Herz for the UW Department of Communication http://www.com.washington.edu/tech/irc/ Questions? Comments? Contact Kristina Bowman at kriscb@uw.edu. Adobe Premiere: Getting Started This

More information

Pedal Box / Pedal Board Usage Manual Table of Contents

Pedal Box / Pedal Board Usage Manual Table of Contents Pedal Box / Pedal Board Usage Manual Table of Contents Introduction...2 Understanding how it works, and what it does...3 Devices Files (or Device banksticks)...3 Master Settings (or Master bankstick)...4

More information

CSCU9B2 Practical 1: Introduction to HTML 5

CSCU9B2 Practical 1: Introduction to HTML 5 CSCU9B2 Practical 1: Introduction to HTML 5 Aim: To learn the basics of creating web pages with HTML5. Please register your practical attendance: Go to the GROUPS\CSCU9B2 folder in your Computer folder

More information

Creating Specific Views and Match Lines

Creating Specific Views and Match Lines Creating Specific Views and Match Lines As you can see, the Autodesk Revit Architecture platform is all about the views. In fact, by using Revit, not only are you replacing the application you use for

More information

Getting Started with Visual Basic.NET

Getting Started with Visual Basic.NET Visual Basic.NET Programming for Beginners This Home and Learn computer course is an introduction to Visual Basic.NET programming for beginners. This course assumes that you have no programming experience

More information

Literate Testing: Automated Testing with doctest. Jim Fulton, Tim Peters, PyCon 2004

Literate Testing: Automated Testing with doctest. Jim Fulton, Tim Peters, PyCon 2004 Literate Testing: Automated Testing with doctest Jim Fulton, jim@zope.com Tim Peters, tim@zope.com PyCon 2004 Unit testing is an im portant practice for im proving the quality of software and for en abling

More information

How to Install and Setup VoIPOffice Communicator for Mac

How to Install and Setup VoIPOffice Communicator for Mac Page 1 of 10 How to Install and Setup VoIPOffice Communicator for Mac (Software Release 3.8.10) This guide will show you how to install and setup VoIPOffice Communicator for Mac. Click the button below

More information