Using Visual Basic Studio 2008

Size: px
Start display at page:

Download "Using Visual Basic Studio 2008"

Transcription

1 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 that can be seen, touched, or used. Every object is created from a class. A class is a pattern or blueprint used to create an object. An Integrated Development Environment (IDE) contains all the tools and features needed to create, run, and test programs, and includes an editor and compiler. Visual Studio 2008 is an IDE used to create Windows- or Web-based programs. It includes Visual Basic 2008, Visual C , and Visual C# 2008 Applications are programs or suites of programs. A Windows-based application has a Windows user interface and runs from a desktop computer (including laptops). A Web-based application suns off a server and is accessed with a computer browser. From a programming point of view, applications can be thought of as solutions to a problem. Within the solution, projects and files for the entire application can be found. The project is a container that stores files associated with a specific piece of the solution. Any solution may contain more than one project. Starting Microsoft Visual Studio 2008 When you load VB 2008, the following (or similar, depending on install settings) screen will open:

2 To create a new project, select Create project from the Recent Projects box. From the New Project dialog box, select the Windows Forms Application template. In the Name box, replace the existing text with a descriptive application name. Application names should not contain spaces.

3 The Windows Form Designer Window The Windows Form Designer window: Allows you to create (design) the GUI. Windows Form object (or form): The form is the graphical object that contains a title bar, a system menu and maximize, minimize and close buttons. Other objects such as buttons and text boxes to the form to create the GUI Often, in designing the Interface, pencil and paper are used prior to building the Interface using a computer. The Interface design is extremely important for the end user of the application.

4 Solution Explorer window: The Solution Explorer window displays a list of projects contained in this solution as well as the items contained in each project. It can be used to switch between Design and Code windows. The Properties Window Properties are a set of attributes that determine an object s appearance and behavior. Property values are displayed in the Properties window in either alphabetical order or by category. A property value is set by typing or selecting a new value. By pressing enter, or clicking outside the Properties window, the new value is applied. Default property values are assigned when an object is created and the properties displayed are those of the object that is selected. The Toolbox Window The Toolbox contains objects that can be added to other objects, such as a form. Each tool, which represents an object, has an icon and a name to identify it. The Controls are the objects displayed on a form.

5 Commonly changed properties of a Windows Form Class definition: block of code that defines the attributes and behaviors of an object All class definitions are contained in namespaces which defines a group of related classes. The period that separates words in an object s name to indicate a hierarchy of namespaces is called the Dot member access operator. Name property: used to refer to an object in code Give each object a meaningful name and use appropriate prefix (Hungarian Notation) and Pascal case, where the first letter of each word is uppercase. The First part of the name should indicate the object s purpose and the second should indicate the object s class. Text property: controls the caption displayed on form s title bar StartPosition property: determines the form s position on the screen when the application starts. Font: general shape of characters in text Point: a measure of font sizes; one point = 1/72 inch To add a control to the VB Form Select the tool in the toolbox And do one of the following: a) without releasing the mouse button, drag the pointer to the form b) click on the form where you want to place the control c) place the mouse on the form and click and drag the mouse until the control is the desired size. To manipulate controls on a VB Form Select the control by clicking on it in the designer window. Move a control by dragging it to the desired location. Resize a control by using the sizing handles that appear when a control is selected. Delete controls by selecting it in the designer window and then pressing the delete key on your keyboard.

6 Naming controls All controls have a Name property which labels the particular control. Without assigning unique names to the controls, it becomes difficult to distinguish one control from another inside the Visual Basic code. Naming Conventions o Names can be as short as one character or as long as 40 characters. o Names must begin with a letter of the alphabet (upper or lower case). o Names can contain letters, numbers or underscores. o Names cannot be the same as reserved words (specific command words for coding). o Names should make sense. o Names should consist of a three letter prefix that designates the type of control followed by a unique text description. Common prefixes for naming Controls Form frm PictureBox pic Button cmd Timer tmr Label lbl Vertical Scroll Bar vsb Textbox txt Menustrip mnu Checkbox chk GroupBox grb Radio Button rb Horizontal scroll Bar hsb ListBox lst Combobox cbo Setting Properties Once you have your controls in place, the next step is to set the controls properties. Recall that properties are characteristics or attributes that define the colour, behaviour, position, or text. Properties are set at design time by selecting the object(s) from the Properties window. The Properties window consists of two sections: Object Box Property List - displays the name of the control whose properties are being set. - displays the set of properties belonging to the control named in the Object Box and the current value of the properties. Each control has a different set of properties. Change only the ones that you want to differ from their default values. The Name property is the only property that must be changed. When choosing names for controls, ensure use of appropriate prefixes and descriptive words for the purpose of the controls.

7 Some commonly changed properties (for commonly used controls): Label - used to display text on a form. At run time the person using the application cannot change the text on a label. With the label control, you can add descriptive text to the form at any location by using different styles, sizes and fonts. Label Name: identifies an object, used by the programmer. Text: text that is displayed in the label, seen by the user. Font: used to display a dialog box for changing font face, size, & style of the Label s Caption. TextAlign: left, right or center justifies Label s Caption. Button - Used during run time to initiate actions called events. Command Buttons give users pushbutton access to events that you place within an application. Button Name: identifies an object, used by the programmer. Text: text that is displayed on the button, seen by the user. Text box - Also used to display text on a form, but their contents can be changed at run time by the person using the application. It frequently is used as a way for the user to supply information to the application. The Text Box control works just like a mini word processor. Textbox Name: identifies an object, used by the programmer. CharacterCasing: Normal, Upper or Lower. Upper entries are converted to uppercase, Normal are kept as entered and Lower are converted to lowercase. MaxLength: sets a numeric value indicating the maximum number of characters allowed in a text box. Radio buttons used in groups to enable the end user to make choices. Only one radio button can be selected at any given time. RadioButton Name: identifies an object, used by the programmer. Text: text that is displayed beside the button, seen by the user. Checked: set to True or False to display the radio button as selected or not selected, respectively.

8 Group Boxes used to group related objects. They are absolutely necessary when using radio buttons. In VB, you must add the group box control prior to adding the radio buttons on a form in order for them to function properly. Groupbox Name: identifies an object, used by the programmer. Text: text that is displayed at the top of the group, seen by the user. CheckvBoxes used to allow the user to select options. Unlike radio buttons, more than one check box can be selected at a time. CheckBox Name: identifies an object, used by the programmer. Text: text that is displayed beside the box, seen by the user. Checked: set to True or False to display the check box as selected or not selected, respectively Lab #1 Creating Forms in VB We will create the following form in VB. This is an exercise in creating a form. At this time, we will not be programming anything for this form. Open VB Studio 2008 and Create a Project. Give the project the name Wizard Application Add a Label, a Picture Box and three Buttons to the Form.

9 Make the following changes to the Controls. Clicking on the element will make the properties for that element appear in the Properties window. Label Name lblwizard Text Wizard Picture Box Name picwizard Image Browse to the location of this image, as specified by your teacher Button1 Name cmdshow Text Show Button2 Name cmdhide Text Hide Button 3 Name cmdexit Text Exit Form1 Name - frmwizardviewer Text Wizard Viewer

10 Saving and Running Applications Solutions should be saved frequently. An asterisk appears on the Designer and Code tab if a change was made since the last time the solution was saved. When saving an application, ensure that you select the Save All option from the File menu. Failing to do so could result in saving only a portion of your solution. Your application will consist of at least one form, as well as code for that form. To run an application from the IDE, click the Start Debugging button on the toolbar, or select Start Debugging from the Debug menu. Running applications can be terminated by Closing your application window, by clicking the Stop Debugging button or selecting Stop Debugging from the Debug menu. Lab #1 Continued The asterisk (*) at the end of the tab for the filename indicates that the file has been modified but not saved. Save all of the files in your application. All files should be saved in your g drive in a folder called CMP621. Additional folders should be used for your own benefit and organization.

11 Saving the file does not change the name of the form. To do this, in the Solution Explorer window, select the form 1 file. The Property window changes to reflect what you have selected. Change the name of the form to MainForm. Save All and close the project. Opening an existing Project A VB 2008 application includes a project file (.vbproj), form files (.vb) and a solution file (.sln). The solution file icon will have a tiny number 9 beside it, this is the file that you want to open to open the entire application.

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

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

Computer Science 110. NOTES: module 8

Computer Science 110. NOTES: module 8 Computer Science 110 NAME: NOTES: module 8 Introducing Objects As we have seen, when a Visual Basic application runs, it displays a screen that is similar to the Windows-style screens. When we create a

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

Lecture 1 Introduction Phil Smith

Lecture 1 Introduction Phil Smith 2014-2015 Lecture 1 Introduction Phil Smith Learning Outcomes LO1 Understand the principles of object oriented programming LO2 Be able to design object oriented programming solutions LO3 Be able to implement

More information

Program and Graphical User Interface Design

Program and Graphical User Interface Design CHAPTER 2 Program and Graphical User Interface Design OBJECTIVES You will have mastered the material in this chapter when you can: Open and close Visual Studio 2010 Create a Visual Basic 2010 Windows Application

More information

Dive Into Visual C# 2010 Express

Dive Into Visual C# 2010 Express Dive Into Visual C# 2010 Express 2 Seeing is believing. Proverb Form ever follows function. Louis Henri Sullivan Intelligence is the faculty of making artificial objects, especially tools to make tools.

More information

Introduction to the Visual Studio 2005

Introduction to the Visual Studio 2005 Chapter 1 Introduction to the Visual Studio 2005 1 INTRODUCTION Included in Visual Studio.NET Visual Basic (VB.Net, VB 7.0) C++ C# (đọc là CSharp) J# (J Sharp).NET Framework 2 CÀI ĐẶT Visual Studio.NET

More information

Introductionto the Visual Basic Express 2008 IDE

Introductionto the Visual Basic Express 2008 IDE 2 Seeing is believing. Proverb Form ever follows function. Louis Henri Sullivan Intelligence is the faculty of making artificial objects, especially tools to make tools. Henri-Louis Bergson Introductionto

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

CST242 Windows Forms with C# Page 1

CST242 Windows Forms with C# Page 1 CST242 Windows Forms with C# Page 1 1 2 4 5 6 7 9 10 Windows Forms with C# CST242 Visual C# Windows Forms Applications A user interface that is designed for running Windows-based Desktop applications A

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

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

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

Programming in C# Project 1:

Programming in C# Project 1: Programming in C# Project 1: Set the text in the Form s title bar. Change the Form s background color. Place a Label control on the Form. Display text in a Label control. Place a PictureBox control on

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.1-Examine Basic Language Environment 336.1.1 Describe the basic operating environment of the language 336.1.2 Define

More information

CIS 3260 Intro. to Programming with C#

CIS 3260 Intro. to Programming with C# Running Your First Program in Visual C# 2008 McGraw-Hill 2010 The McGraw-Hill Companies, Inc. All rights reserved. Run Visual Studio Start a New Project Select File/New/Project Visual C# and Windows must

More information

Visual Basic Program Coding STEP 2

Visual Basic Program Coding STEP 2 Visual Basic Program Coding 129 STEP 2 Click the Start Debugging button on the Standard toolbar. The program is compiled and saved, and then is run on the computer. When the program runs, the Hotel Room

More information

Start Visual Basic. Session 1. The User Interface Form (I/II) The Visual Basic Programming Environment. The Tool Box (I/II)

Start Visual Basic. Session 1. The User Interface Form (I/II) The Visual Basic Programming Environment. The Tool Box (I/II) Session 1 Start Visual Basic Use the Visual Basic programming environment Understand Essential Visual Basic menu commands and programming procedure Change Property setting Use Online Help and Exit Visual

More information

Welcome Application. Introducing the Visual Studio.NET IDE. Objectives. Outline

Welcome Application. Introducing the Visual Studio.NET IDE. Objectives. Outline 2 T U T O R I A L Objectives In this tutorial, you will learn to: Navigate Visual Studio.NET s Start Page. Create a Visual Basic.NET solution. Use the IDE s menus and toolbars. Manipulate windows in the

More information

Creating Web Applications Using ASP.NET 2.0

Creating Web Applications Using ASP.NET 2.0 12 Creating Web Applications Using ASP.NET 2.0 12 Chapter CXXXX 39147 Page 1 07/14/06--JHR After studying Chapter 12, you should be able to: Define the terms used when talking about the Web Create a Web

More information

Chapter 2 Visual Basic Interface

Chapter 2 Visual Basic Interface Visual Basic Interface Slide 1 Windows GUI A GUI is a graphical user interface. The interface is what appears on the screen when an application is running. A GUI is event-driven, which means it executes

More information

Tutorial 2 - Welcome Application Introducing, the Visual Studio.NET IDE

Tutorial 2 - Welcome Application Introducing, the Visual Studio.NET IDE 1 Tutorial 2 - Welcome Application Introducing, the Visual Studio.NET IDE Outline 2.1 Test-Driving the Welcome Application 2.2 Overview of the Visual Studio.NET 2003 IDE 2.3 Creating a Project for the

More information

Visual Basic 2008 The programming part

Visual Basic 2008 The programming part Visual Basic 2008 The programming part Code Computer applications are built by giving instructions to the computer. In programming, the instructions are called statements, and all of the statements that

More information

Tutorial 3 - Welcome Application

Tutorial 3 - Welcome Application 1 Tutorial 3 - Welcome Application Introduction to Visual Programming Outline 3.1 Test-Driving the Welcome Application 3.2 Constructing the Welcome Application 3.3 Objects used in the Welcome Application

More information

Full file at https://fratstock.eu Programming in Visual Basic 2010

Full file at https://fratstock.eu Programming in Visual Basic 2010 OBJECTIVES: Chapter 2 User Interface Design Upon completion of this chapter, your students will be able to 1. Use text boxes, masked text boxes, rich text boxes, group boxes, check boxes, radio buttons,

More information

Controls. By the end of this chapter, student will be able to:

Controls. By the end of this chapter, student will be able to: Controls By the end of this chapter, student will be able to: Recognize the (Properties Window) Adjust the properties assigned to Controls Choose the appropriate Property Choose the proper value for the

More information

University of Bahrain College of Applied Studies

University of Bahrain College of Applied Studies University of Bahrain College of Applied Studies CSA 212: Human Interface and Design Activity 5: Front page 2003 Name : Student ID No : Section Instructor : : Demonstrator : Date : Total Marks : 10 Marks

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

Corel Ventura 8 Introduction

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

More information

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

REVIEW OF CHAPTER 1 1

REVIEW OF CHAPTER 1 1 1 REVIEW OF CHAPTER 1 Trouble installing/accessing Visual Studio? 2 Computer a device that can perform calculations and make logical decisions much faster than humans can Computer programs a sequence of

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

Chapter 1. Introduction to Programming and Visual Basic Pearson Addison-Wesley. All rights reserved. Addison Wesley is an imprint of

Chapter 1. Introduction to Programming and Visual Basic Pearson Addison-Wesley. All rights reserved. Addison Wesley is an imprint of Chapter 1 Introduction to Programming and Visual Basic Addison Wesley is an imprint of 2011 Pearson Addison-Wesley. All rights reserved. Section 1.1 COMPUTER SYSTEMS: HARDWARE AND SOFTWARE Computer systems

More information

Chapter 12: Using Controls

Chapter 12: Using Controls Chapter 12: Using Controls Examining the IDE s Automatically Generated Code A new Windows Forms project has been started and given the name FormWithALabelAndAButton A Label has been dragged onto Form1

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

Microsoft Word Important Notice

Microsoft Word Important Notice Microsoft Word 2013 Important Notice All candidates who follow an ICDL/ECDL course must have an official ICDL/ECDL Registration Number (which is proof of your Profile Number with ICDL/ECDL and will track

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

Full file at

Full file at T U T O R I A L 3 Objectives In this tutorial, you will learn to: Set the text in the Form s title bar. Change the Form s background color. Place a Label control on the Form. Display text in a Label control.

More information

Chapter 12: Using Controls

Chapter 12: Using Controls Chapter 12: Using Controls Using a LinkLabel LinkLabel Similar to a Label Provides the additional capability to link the user to other sources Such as Web pages or files Default event The method whose

More information

Microsoft Windows 7 is an operating system program that controls:

Microsoft Windows 7 is an operating system program that controls: Microsoft Windows 7 - Illustrated Unit A: Introducing Windows 7 Objectives Start Windows and view the desktop Use pointing devices Use the Start button Use the taskbar Work with windows 2 Objectives Use

More information

CIS 3260 Intro. to Programming with C#

CIS 3260 Intro. to Programming with C# Introduction to Programming and Visual C# 2008 McGraw-Hill 2010 The McGraw-Hill Companies, Inc. All rights reserved. Describe the process of visual program design and development Explain the term object-oriented

More information

Location of menu elements

Location of menu elements E Creating Menus Appendix E C5779 39147 Page 1 07/10/06--JHR In Visual Basic 2005, you use a MenuStrip control to include one or more menus in an application. You instantiate a MenuStrip control using

More information

NiceForm User Guide. English Edition. Rev Euro Plus d.o.o. & Niceware International LLC All rights reserved.

NiceForm User Guide. English Edition. Rev Euro Plus d.o.o. & Niceware International LLC All rights reserved. www.nicelabel.com, info@nicelabel.com English Edition Rev-0910 2009 Euro Plus d.o.o. & Niceware International LLC All rights reserved. www.nicelabel.com Head Office Euro Plus d.o.o. Ulica Lojzeta Hrovata

More information

Graphical User Interface Canvas Frame Event structure Platform-free GUI operations Operator << Operator >> Operator = Operator ~ Operator + Operator

Graphical User Interface Canvas Frame Event structure Platform-free GUI operations Operator << Operator >> Operator = Operator ~ Operator + Operator Graphical User Interface Canvas Frame Event structure Platform-free GUI operations Operator > Operator = Operator ~ Operator + Operator - Operator [] Operator size Operator $ Operator? Operator!

More information

Chapter 2. Creating Applications with Visual Basic Pearson Addison-Wesley. All rights reserved. Addison Wesley is an imprint of

Chapter 2. Creating Applications with Visual Basic Pearson Addison-Wesley. All rights reserved. Addison Wesley is an imprint of Chapter 2 Creating Applications with Visual Basic Addison Wesley is an imprint of 2011 Pearson Addison-Wesley. All rights reserved. Section 2.1 FOCUS ON PROBLEM SOLVING: BUILDING THE DIRECTIONS APPLICATION

More information

Microsoft Windows 7 - Illustrated Unit A: Introducing Windows 7

Microsoft Windows 7 - Illustrated Unit A: Introducing Windows 7 Microsoft Windows 7 - Illustrated Unit A: Introducing Windows 7 Objectives Start Windows and view the desktop Use pointing devices Use the Start button Use the taskbar Work with windows 2 Objectives Use

More information

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

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

More information

UNIT 1 INTRODUCTION TO VISUAL BASICS 6.0

UNIT 1 INTRODUCTION TO VISUAL BASICS 6.0 UNIT 1 INTRODUCTION TO VISUAL BASICS 6.0 The VB6 IDE (Integrated Development Environment) is a very simple and fully featured IDE. If you start out programming in VB6 you may end up being too spoiled to

More information

ANSWER KEY. Chapter 1. Introduction to Computers

ANSWER KEY. Chapter 1. Introduction to Computers 3 ANSWER KEY Chapter 1. Introduction to Computers Exercises A. 1. c. 2. a. 3. b. 4. a. B. 1. False 2. True 3. True 4. True 5. False 6. True C. 1. Processing 2. Notebooks 3. Output 4. Data 5. PARAM D. 1.

More information

Introduction to the Visual Basic Express 2005IDE

Introduction to the Visual Basic Express 2005IDE 2 Introduction to the Visual Basic Express 2005IDE OBJECTIVES In this chapter, you will learn The basics of the VisualStudio Integrated Development Environment (IDE) that assists you in writing, running

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

Visual Basic.NET. 1. Which language is not a true object-oriented programming language?

Visual Basic.NET. 1. Which language is not a true object-oriented programming language? Visual Basic.NET Objective Type Questions 1. Which language is not a true object-oriented programming language? a.) VB.NET b.) VB 6 c.) C++ d.) Java Answer: b 2. A GUI: a.) uses buttons, menus, and icons.

More information

Bold, Italic and Underline formatting.

Bold, Italic and Underline formatting. Using Microsoft Word Character Formatting You may be wondering why we have taken so long to move on to formatting a document (changing the way it looks). In part, it has been to emphasise the fact that

More information

Microsoft Windows XP. Operating System. Starting Windows XP. You might be asked to enter your username and password

Microsoft Windows XP. Operating System. Starting Windows XP. You might be asked to enter your username and password Microsoft Windows Operating System Starting Windows Windows automatically starts when you turn on your computer You might be asked to enter your username and password The Windows desktop uses a graphical

More information

Getting Familiar with Microsoft Word 2010 for Windows

Getting Familiar with Microsoft Word 2010 for Windows Lesson 1: Getting Familiar with Microsoft Word 2010 for Windows Microsoft Word is a word processing software package. You can use it to type letters, reports, and other documents. This tutorial teaches

More information

GUI Design and Event- Driven Programming

GUI Design and Event- Driven Programming 4349Book.fm Page 1 Friday, December 16, 2005 1:33 AM Part 1 GUI Design and Event- Driven Programming This Section: Chapter 1: Getting Started with Visual Basic 2005 Chapter 2: Visual Basic: The Language

More information

How to Edit Your Website

How to Edit Your Website How to Edit Your Website A guide to using your Content Management System Overview 2 Accessing the CMS 2 Choosing Your Language 2 Resetting Your Password 3 Sites 4 Favorites 4 Pages 5 Creating Pages 5 Managing

More information

User Guide 701P Wide Format Solution Wide Format Scan Service

User Guide 701P Wide Format Solution Wide Format Scan Service User Guide 701P44865 6204 Wide Format Solution Wide Format Scan Service Xerox Corporation Global Knowledge & Language Services 800 Phillips Road Bldg. 845-17S Webster, NY 14580 Copyright 2006 Xerox Corporation.

More information

JobSite OnLine User s Guide Table of Contents

JobSite OnLine User s Guide Table of Contents JobSite OnLine User s Guide Table of Contents For the Beginner: 2 Preparing and Logging In to Run JobSite OnLine...2 How Drawings and Specs are Organized - Ease of Use...3 Searching for Files or Containers...4

More information

Introduction to Windows

Introduction to Windows Introduction to Windows Naturally, if you have downloaded this document, you will already be to some extent anyway familiar with Windows. If so you can skip the first couple of pages and move on to the

More information

CST272 Getting Started Page 1

CST272 Getting Started Page 1 CST272 Getting Started Page 1 1 2 3 4 5 6 8 Introduction to ASP.NET, Visual Studio and C# CST272 ASP.NET Static and Dynamic Web Applications Static Web pages Created with HTML controls renders exactly

More information

Introduction. Getting Started. Selecting a Template. 1 of 1

Introduction. Getting Started. Selecting a Template. 1 of 1 1 of 1 Introduction Visual materials are one of the most effective means of communicating a message. They can give a presentation a professional quality. Visuals help a speaker to be well prepared, organized,

More information

Getting Started with. Microsoft Office 2010

Getting Started with. Microsoft Office 2010 Getting Started with Microsoft Office 2010 Microsoft Office 2010 Objectives Explore the programs in Microsoft Office Start programs and switch between them Explore common window elements Minimize, maximize,

More information

Microsoft Visual C# 2005: Developing Applications Table of Contents

Microsoft Visual C# 2005: Developing Applications Table of Contents Table of Contents INTRODUCTION...INTRO-1 Prerequisites...INTRO-2 Installing the Practice Files...INTRO-3 Software Requirements...INTRO-3 Sample Database...INTRO-3 Security...INTRO-4 Installation...INTRO-4

More information

Starting a new diagram. To start a new diagram, click the Picture button. A new document opens with a Main Idea symbol.

Starting a new diagram. To start a new diagram, click the Picture button. A new document opens with a Main Idea symbol. Kidspiration Tutorial This is a tutorial that introduces basic Kidspiration diagram and writing tools. The tutorial takes about 30 minutes from start to finish. You use Kidspiration the same way in most

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

Lehigh University Library & Technology Services

Lehigh University Library & Technology Services Lehigh University Library & Technology Services Start Word Open a file called day2 Microsoft WORD 2003 Day 2 Click the Open button on the Standard Toolbar Go to the A: drive and highlight day2 and click

More information

Visual C# Program: Resistor Sizing Calculator

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

More information

SMART Recorder. Record. Pause. Stop

SMART Recorder. Record. Pause. Stop SMART Recorder The recorder is used to record actions that are done on the interactive screen. If a microphone is attached to the computer, narration can be recorded. After the recording has been created,

More information

Word Processing. 2 Monroe County Library System

Word Processing. 2 Monroe County Library System 2 Monroe County Library System http://monroe.lib.mi.us Word Processing Word Pad Quick Guide... 4 Help Menu... 6 Invitation... 7 Saving... 12 Printing... 13 Insert a Picture... 14 Saving to a CD... 15 In

More information

Unit 2: Using Windows 7 Lesson 9

Unit 2: Using Windows 7 Lesson 9 Unit : Using Windows 7 Lesson 9 Lesson 9 Looking at the Windows Desktop Objectives In this lesson, you will be introduced to the Windows desktop and how to navigate around in Windows. On successful completion,

More information

Adobe Acrobat 5.0. Overview. Internet & Technology Training Services Miami Dade County Public Schools

Adobe Acrobat 5.0. Overview. Internet & Technology Training Services Miami Dade County Public Schools Adobe Acrobat 5.0 Overview Internet & Technology Training Services Miami Dade County Public Schools Preparing Microsoft Office Documents in.pdf Format Converting Documents to.pdf Format Using the Tool

More information

Address Bar. Application. The space provided on a web browser that shows the addresses of websites.

Address Bar. Application. The space provided on a web browser that shows the addresses of websites. Address Bar The space provided on a web browser that shows the addresses of websites. Application Computer software designed to help users perform Specific tasks. Back Button A button at the top of the

More information

Getting Started with OneNote 2016

Getting Started with OneNote 2016 1 Getting Started with OneNote 2016 Understanding OneNote 2016 Concepts Getting Started Managing Notebooks Navigating and Viewing Notebooks Learning Objective: Explore the user interface, create, save,

More information

Microsoft Visual Basic 2005 CHAPTER 6. Loop Structures

Microsoft Visual Basic 2005 CHAPTER 6. Loop Structures Microsoft Visual Basic 2005 CHAPTER 6 Loop Structures Objectives Add a MenuStrip object Use the InputBox function Display data using the ListBox object Understand the use of counters and accumulators Understand

More information

Using event-driven programming Installing Visual Basic 2015 Touring the Visual Basic 2015 integrated development environment

Using event-driven programming Installing Visual Basic 2015 Touring the Visual Basic 2015 integrated development environment 1 WHAT YOU WILL LEARN IN THIS CHAPTER: Using event-driven programming Installing Visual Basic 2015 Touring the Visual Basic 2015 integrated development environment (IDE) Creating a simple Windows program

More information

Visual C# Program: Simple Game 3

Visual C# Program: Simple Game 3 C h a p t e r 6C Visual C# Program: Simple Game 3 In this chapter, you will learn how to use the following Visual C# Application functions to World Class standards: Opening Visual C# Editor Beginning a

More information

Windows Me Navigating

Windows Me Navigating LAB PROCEDURE 11 Windows Me Navigating OBJECTIVES 1. Explore the Start menu. 2. Start an application. 3. Multi-task between applications. 4. Moving folders and files around. 5. Use Control Panel settings.

More information

build a digital portfolio in WebPlus X4

build a digital portfolio in WebPlus X4 How to build a digital portfolio in WebPlus X4 Get started Open Serif WebPlus and select Start New Site from the Startup Wizard. WebPlus will open a blank website for you. Take a few moments to familiarise

More information

Easy Windows Working with Disks, Folders, - and Files

Easy Windows Working with Disks, Folders, - and Files Easy Windows 98-3 - Working with Disks, Folders, - and Files Page 1 of 11 Easy Windows 98-3 - Working with Disks, Folders, - and Files Task 1: Opening Folders Folders contain files, programs, or other

More information

Inspiration 8 IE: tutorial

Inspiration 8 IE: tutorial Inspiration 8 IE: tutorial Edition 3a, June 2006 If you would like this document in an alternative format please ask at The Library Help and Information Point where a folder of examples is available. On

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

23 - Report & Export

23 - Report & Export 23 - Report & Export Contents 23 - REPORT & EXPORT... 1 SMART PUBLISHER... 1 Opening Smart Publisher... 1 Smart Publisher Settings... 2 The Finished Report... 5 Alias Names for Codes... 6 The Word Template

More information

Chapter 7 Inserting Spreadsheets, Charts, and Other Objects

Chapter 7 Inserting Spreadsheets, Charts, and Other Objects Impress Guide Chapter 7 Inserting Spreadsheets, Charts, and Other Objects OpenOffice.org Copyright This document is Copyright 2007 by its contributors as listed in the section titled Authors. You can distribute

More information

Libraries. Multi-Touch. Aero Peek. Sema Foundation 10 Classes 2 nd Exam Review ICT Department 5/22/ Lesson - 15

Libraries. Multi-Touch. Aero Peek. Sema Foundation 10 Classes 2 nd Exam Review ICT Department 5/22/ Lesson - 15 10 Classes 2 nd Exam Review Lesson - 15 Introduction Windows 7, previous version of the latest version (Windows 8.1) of Microsoft Windows, was produced for use on personal computers, including home and

More information

C H A P T E R T W E N T Y E I G H T. Create, close, and open a Web application. Add an image, text box, label, and button to a Web page

C H A P T E R T W E N T Y E I G H T. Create, close, and open a Web application. Add an image, text box, label, and button to a Web page 28 GETTING WEB-IFIED After studying Chapter 28, you should be able to: Create, close, and open a Web application View a Web page in a browser window and full screen view Add static text to a Web page Add

More information

1 THE PNP BASIC COMPUTER ESSENTIALS e-learning (MS Powerpoint 2007)

1 THE PNP BASIC COMPUTER ESSENTIALS e-learning (MS Powerpoint 2007) 1 THE PNP BASIC COMPUTER ESSENTIALS e-learning (MS Powerpoint 2007) 2 THE PNP BASIC COMPUTER ESSENTIALS e-learning (MS Powerpoint 2007) TABLE OF CONTENTS CHAPTER 1: GETTING STARTED... 4 MICROSOFT OFFICE

More information

Introduction. Programming and

Introduction. Programming and try { // Convert C H Ainput P values T E to R numeric and assign to quantityinteger 1 = int.parse(quantitytextbox.text try { pricedecimal = decimal.parse(pricetextbox.te // Calculate values. extendedpricedecimal

More information

Creating Postcards in Microsoft Publisher

Creating Postcards in Microsoft Publisher Creating Postcards in Microsoft Publisher Open Publisher either from the desktop or through the Start menu. Once Publisher opens, select Postcards from the menu on the right hand side of the screen. Scroll

More information

PowerPoint 2016 Building a Presentation

PowerPoint 2016 Building a Presentation PowerPoint 2016 Building a Presentation What is PowerPoint? PowerPoint is presentation software that helps users quickly and efficiently create dynamic, professional-looking presentations through the use

More information

Dreamweaver CS 5.5. University Information Technology Services. Training, Outreach, Learning Technologies, and Video Production

Dreamweaver CS 5.5. University Information Technology Services. Training, Outreach, Learning Technologies, and Video Production Dreamweaver CS 5.5 Creating Web Pages with a Template University Information Technology Services Training, Outreach, Learning Technologies, and Video Production Copyright 2012 KSU Department of Information

More information

Discovering Computers & Microsoft Office Office 2010 and Windows 7: Essential Concepts and Skills

Discovering Computers & Microsoft Office Office 2010 and Windows 7: Essential Concepts and Skills Discovering Computers & Microsoft Office 2010 Office 2010 and Windows 7: Essential Concepts and Skills Objectives Perform basic mouse operations Start Windows and log on to the computer Identify the objects

More information

Understanding Word Processing

Understanding Word Processing Understanding Word Processing 3.0 Introduction In this chapter you are going to learn how to create a simple memo or note or a complex and complicated multi column business document using word processing

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

WinView. Getting Started Guide

WinView. Getting Started Guide WinView Getting Started Guide Version 4.3.12 June 2006 Copyright 2006 Mincom Limited All rights reserved. No part of this document may be reproduced, transferred, sold or otherwise disposed of without

More information

C# Continued. Learning Objectives:

C# Continued. Learning Objectives: Learning Objectives: C# Continued Open File Dialog and Save File Dialog File Input/Output Importing Pictures from Files and saving Bitmaps Reading and Writing Text Files Try and Catch Working with Strings

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

Advanced Microsoft Word 2010

Advanced Microsoft Word 2010 Advanced Microsoft Word 2010 WordArt WordArt gives your letters special effects. You can change the formatting, direction, and texture of your text by adding WordArt. When you click the WordArt icon on

More information

Roxen Content Provider

Roxen Content Provider Roxen Content Provider Generation 3 Templates Purpose This workbook is designed to provide a training and reference tool for placing University of Alaska information on the World Wide Web (WWW) using the

More information