STUDENT SOLUTIONS MANUAL

Size: px
Start display at page:

Download "STUDENT SOLUTIONS MANUAL"

Transcription

1 Student Solutions Manual (Page 1 of 211) STUDENT SOLUTIONS MANUAL to accompany An Introduction to Programming Using Visual Basic 2010, 8th Edition by David I. Schneider

2 Student Solutions Manual (Page 2 of 211) Copyright 2011 by Pearson Higher Education. All rights reserved.

3 Student Solutions Manual (Page 3 of 211) CONTENTS Chapter Comments Chapter 2 Visual Basic Controls and Events Exercises 2.2 Visual Basic Controls 11 Exercises 2.3 Visual Basic Events 15 Chapter 3 Variables, Input, and Output Exercises 3.1 Numbers 18 Exercises 3.2 Strings 21 Exercises 3.3 Input and Output 26 Chapter 4 Decisions Exercises 4.1 Relational and Logical Operators 30 Exercises 4.2 If Blocks 31 Exercises 4.3 Select Case Blocks 38 Exercises 4.4 Input via User Selection 42 Chapter 5 General Procedures Exercises 5.1 Function Procedures 47 Exercises 5.2 Sub Procedures, Part I 50 Exercises 5.3 Sub Procedures, Part II 55 Chapter 6 Repetition Exercises 6.1 Do Loops 57 Exercises 6.2 For Next Loops 62 Exercises 6.3 List Boxes and Loops 68 Chapter 7 Arrays Exercises 7.1 Creating and Accessing Arrays 77 Exercises 7.2 Using LINQ with Arrays 85 Exercises 7.3 Arrays of Structures 89 Exercises 7.4 Two-Dimensional Arrays 99 Chapter 8 Text Files Exercises 8.1 Managing Text Files 106 Exercises 8.2 StreamReaders, StreamWriters, Structured Exception Handling 111 Exercises 8.3 XML 115 Chapter 9 Additional Controls and Objects Exercises 9.1 List Boxes and Combo Boxes 120 Exercises 9.2 Eight Additional Controls and Objects 125 Exercises 9.3 Multiple-Form Programs 132 Exercises 9.4 Graphics 142

4 Student Solutions Manual (Page 4 of 211) Chapter 10 Databases Exercises 10.1 An Introduction to Databases 151 Exercises 10.2 Editing and Designing Databases 164 Chapter 11 Object-Oriented Programming Exercises 11.1 Classes and Objects 165 Exercises 11.2 Working with Objects 172 Exercises 11.3 Inheritance 186 Chapter 12 Web Applications Exercises 12.1 Programming for the Web, Part Exercises 12.2 Programming for the Web, Part Exercises 12.3 Using Databases in Web Programs 204

5 Student Solutions Manual (Page 5 of 211) Chapter 1 Chapter Comments 1. Your instructor might skip this chapter. If so, I recommend that you take a quick look at two items from the chapter. Look at the last question and answer on page 3 to see how the appearance of a program varies with the version of Windows being used. Also, look at the discussion of "Displaying File Extensions" on pages 5 and 6. I recommend that you configure Windows to show all file extensions. Chapter 2 1. On page 44 you are asked to run a program that was downloaded from the Pearson website for the book. All of the programs appearing in Examples and Case Studies can be downloaded from that website. There is never any need for you to manually type in the code for a program in this textbook. The website also contains all the text files, databases, and pictures needed for the exercises. All of these files are contained in the folders Ch02, Ch03, Ch04, and so on. Each chapter file contains a subfolder named Text_Files_for_Exercises which contains the text files needed for that chapter s exercises. The folder Ch09 has a subfolder named Pictures that contains picture files. The folders Ch10 and "Ch12" have a subfolder named Databases containing all the databases needed for the exercises. Each program is contained in a folder with a name in the form chapter section example number. For instance, the program in Chapter 3, Section 1, Example 2 is contained in the folder Many of the programs make use of a text file in the subfolder Debug of the program s bin subfolder. 2. At the top of page 44, we explain our use of ellipses (...) as place holders for the phrase "ByVal sender As System.Object, ByVal e As System.EventArgs". A program will not run when the phrase is replaced with an ellipsis. However, a program will run if the phrase is simply deleted. Therefore, if you use Ctrl+C to copy code from this Student Solutions Manual and paste it into your own program, the code will execute after you delete the ellipses. 3. Every program you write requires use of the Properties window. By default, the Properties window is docked to the right side of the IDE. You might find the Properties window easier to use if you undock it while setting properties. If you double-click on the Properties window s title bar, the window will become undocked and larger. After you have finished using the Properties window, right-click on its title bar and click on Dock. Note: This process also can be used to undock (and redock) the Toolbar and the Solution Explorer window.

6 Student Solutions Manual (Page 6 of 211) Chapter 3 1. Figure 3.1 on page 70 shows the settings for Options Explicit, Strict, and Infer set to On. Most instructors will recommend that the first two Options be set to On. Option Infer, on the other hand, is controversial. (The default setting is On.) If you want to learn more about the effect of Option Infer, take a quick look at the discussion of local type inference on page On page 77, we discuss line continuation. In earlier versions of Visual Basic, the underscore character was needed to continue a statement onto another line. Beginning with VB2010, the underscore character can be omitted when a line that obviously has a continuation (such as, when the line ends with a comma or an arithmetic operator) and therefore will seldom be needed in the programs you write. Underscore characters frequent appear in the answer section of the book and in the Student Solutions Manual following the word "Handles". This was necessary due to the fact that we must limit the length of lines in a printed page. 3. A discussion of sending output to the printer is presented at the end of Section 3.3. This material is optional. If your instructor decides to skip this topic, you might want to take a quick look (just a few minutes) to see what's involved in printing the output of a program. This material is not needed in the textbook. I included it at the request of some instructors. Chapter 4 1. Section 4.1 is unusual in that you will not be asked to write any programs in the exercise set. However, the concepts presented in this section will be fundamental to the rest of the textbook. 2. In Chapter 3 we used list boxes to display data. In Section 4.4, we show how list boxes are used to allow the user to make selections. Another control used to make a selection from a list, a combo box, will be discussed in Chapter The first two sentences after Figure 4.12 on page 149 should read as follows: When you click on an unselected item in a list box, the SelectedIndexChanged event is raised. When you click on a check box or on an unchecked radio button, the CheckedChanged event is raised.

7 Student Solutions Manual (Page 7 of 211) Chapter 5 1. Except for the three case studies, Function procedures appear in many more programs than Sub procedures. The use of Sub procedures is part of good programming practice, but it is not essential. Any computer program can be written without Sub procedures. However, there are a number of programs in this textbook that would be very difficult to write without Function procedures. 2. The above comment is not intended to diminish the importance of Sub procedures. They are a fundamental component of good program design. However, if you find Sub procedures somewhat confusing at first, don't worry. You will still be able to work the exercises. You will eventually become comfortable with Sub procedures after seeing them used in subsequent chapters. Chapter 6 1. There are two types of loops presented in this chapter Do loops and For...Next loops. A third type of loop, called a For Each loop, will be presented in Section Loops have traditionally been used to process lists of data. For instance, loops can be used with a list of numbers to compute the sum of the numbers, the average of the numbers, the largest number in the list and the smallest number in the lists. The algorithms for calculating sums and averages is obvious. In Example 4 of Section 6.3, the maximum value of the numbers in a list box are calculated with the following algorithm: (a) Declare a variable named max. (b) Assign a value to the variable that is guaranteed to be less than or equal to the maximum value in the list. One possibility is to set the value of max equal to the first number in the list. Another possibility requires some knowledge of the number in the list. For instance, if the number are all grades on an exam, the initial value of max can be set to 0. (c) Use a loop to examine the numbers one at a time. Whenever a number is greater than the current value of max, change the value of max to be that number. After the loop has executed, the value of max will be the largest number in the list. Example 4 uses an analogous algorithm to find the smallest number in the list box. These two algorithms appear several times in the textbook in both examples and exercises. 3. Section 6.3 presents techniques for processing lists of data with loops. In Section 7.2, a method for processing lists without using loops will be presented.

8 Student Solutions Manual (Page 8 of 211) Chapter 7 1. A very important idea to take away from Section 7.1 is that there are four ways to fill an array. Let's illustrate the ways by filling an array with the names of the first three presidents. (a) Dim pres() As String = {"Washington", "Jefferson", "Adams} (b) Dim pres() As String = IO.File.ReadAllLines("Pres.txt"), where the text file Pres.txt is located in the program's bin\debug folder of the program and contains three lines (each containing the name of a president). (c) Dim strvar As String = "Washington,Jefferson,Adams" Dim pres() As String = strvar.split(","c) (d) Dim pres(2) As String pres(0) = "Washington" pres(1) = "Jefferson" pres(2) = "Adams" In the first three ways, the array is declared and sized automatically at the same time it is filled. The second and third ways will be the most used in this book. 2. Section 7.3 is perhaps the most challenging section in the book. However, the techniques presented in this section are very powerful and are heavily used later in the book with text files and databases. The techniques also are presented in Section 8.1 in a slightly different form. Some instructors will skip Section 7.3 and rely solely on Section Some important text files used in this chapter are as follows: a. Baseball.txt: contains statistics for all of the players in the major league who had at least 350 at bats in b. Justices.txt: contains all people who served on the U.S. Supreme Court prior to May c. SBWinners.txt: contains all Super Bowl winners up to and including Chapter 8 1. The two sections in this chapter are independent of each other. 2. The preliminaries section at the beginning of Section 8.1 can be omitted if you covered Section 8.3. The techniques presented in the preliminaries will take a fair amount of effort to master. However, the payoff will be substantial. 3. Section 8.1 shows some modern techniques for combining lists of data. In earlier versions of Visual Basic, these tasks could only be carried out with complicated algorithms involving loops.

9 Student Solutions Manual (Page 9 of 211) 4. Some important data files used in this chapter are as follows: a. Baseball.xml: contains statistics for all of the players in the major league who had at least 350 at bats in b. Justices.txt: contains all people who served on the U.S. Supreme Court prior to the summer of Justice Stevens retired in the summer of If you want to update the file after his replacement is named, change the last entry in his record to 2010 and add a record for the person replacing him. c. Senate111.txt: contains the composition of the U.S. Senate as of May 1, d. USPres.txt: contains the names of all U.S. Chapter 9 1. Most of Chapter 9 is not needed in the remainder of the book. However, the chapter shows how to use several tools that are familiar to you from major programs you have used. 2. Programs written by professional programmers often use more than one form. Section 9.3 shows how this is done. However, since this is an introductory book, all programs outside of Section 9.3 use only one form. Chapter The steps for binding a database to a program may look complicated at first. However, after you get used to it you will find it easy and quick to carry out. Also, when you work several exercises using the same database, you can just bind the database once and write a different event procedure for each exercise. 2. Some important databases used in this chapter are as follows: a. Baseball.accdb: contains statistics for all of the players in the major league who had at least 350 at bats in b. Justices.accdb: contains all people who served on the U.S. Supreme Court prior to the summer of c. UN.accdb: contains the composition of the United Nations as of May 1, d. Exchrate.accdb: contains currency exchange rates in December Chapter This chapter is independent of the rest of the book.

10 Student Solutions Manual (Page 10 of 211) Chapter The programs in the chapter are not created with Visual Basic. Most people will use Visual Web Developer that is contained on the DVD packaged with this book. However, if you have a complete version of Visual Studio, you do not have to install Visual Web Developer. The Visual Studio File menu contains the items New Web Site and Open Web Site that you can use to create and access Web programs. 2. Be sure to read the solution to the practice problem in Section It shows you how to save a lot of time when writing the programs for the exercise set.

11 Student Solutions Manual (Page 11 of 211) CHAPTER 2 EXERCISES After a button is clicked it has a blue border. 3. Click on the form to make it the selected object. Click on the Properties window or Press F4 to activate the Properties window. Select the Text property. Type "CHECKING ACCOUNT". 5. Double-click the TextBox icon in the Toolbox. Activate the Properties window. Select the BackColor property. Click on the down-arrow to the right of the Settings box. Click on the Custom tab, and then click on the desired yellow in the palette. Click on the form to see the empty yellow text box. 7. Double-click on the Label icon in the Toolbox. Activate the Properties window, and select the AutoSize property. Set the AutoSize property to False. Select the Text property and type the requested sentence. Select the TextAlign property. Click on the down-arrow button to the right of the Settings box, and click on one of the center rectangles. Resize the label so that the sentence occupies three lines. 9. Double-click on the TextBox icon in the Toolbox. Activate the Properties window. Set the Name property to txtlanguage. Select the Text property and type "Visual Basic 2010". Select the Font property and click on the ellipsis to the right of the Settings box. Scroll up the Font list box, and click on Courier New in the Font box. Click OK. Widen the text box to accommodate its text. 11. Double-click on the Button icon in the Toolbox. Activate the Properties window, and select the BackColor property. Click on the down-arrow button to the right of the Settings box. Click on the Custom tab, and then click on the white square in upper-left corner of the palette. Select the Text property and type "PUSH". Select the Font property, and click on the ellipsis. Click on Italic (with XP or Vista) or Oblique (with Windows 7) in the "Font style" list. Click on 24 in the Size box and click OK. Resize the button.

12 Student Solutions Manual (Page 12 of 211) 13. Double-click on the Button icon in the Toolbox. Activate the Properties window. Select the Text property and type "PUS&H". Click on the form to see the resulting button. 15. Double-click on the Label icon in the Toolbox. Activate the Properties window. Select the Name property and type "lblaka". Select the Text property and type "ALIAS". Select the AutoSize property and set it to False. Select the Font property and click on the ellipsis. Click on Italic (with XP or Vista) or Oblique (with Windows 7) in the "Font style" list. Click OK. Select the TextAlign property, click on the down-arrow box to the right of the Settings box, and click on one of the center rectangles. 17. Double-click on the Label icon in the Toolbox. Activate the Properties window, and select the TextAlign property. Click on the down-arrow box to the right of the Settings box, and click on one of the rectangles on the right. Select the AutoSize property and set it to False. Select the Text property, type "VISUAL BASIC", and press Enter. If the words " VISUAL BASIC " are on one line, resize the label until the words occupy two lines. 19. Double-click on the Label icon in the Toolbox. Activate the Properties window, and select the Font property. Click on the ellipsis to the right of the Settings box. Click on Wingdings in the Font box. Click on the largest size available (72) in the Size box. Click OK. Select the Text property and change the setting to a less than sign (<). Click on the label. (Note: If you didn't know that the less than symbol corresponded to a diskette in the Wingdings font, you could double-click on the diskette character in the Character Map, click the Copy button, select the Text property, and press Ctrl+V. The less than character will appear in the Text settings box.) 21. Double-click on the ListBox icon in the Toolbox. Activate the Properties window, and select the BackColor property. Click on the down-arrow button to the right of the Settings box. Click on the Custom tab and click on the desired yellow square in the palette. Click on the form to see the yellow list box.

13 Student Solutions Manual (Page 13 of 211) 23. In the Solution Explorer window, right click on Form1.vb and select Rename from the context menu. Type frmyellow.vb. Right-click on the form in the Form Designer, and select Properties from the context menu. Click on BackColor property in the Properties window. Click on the down-arrow button in the right part of the Settings box, click on the Custom tab, and click on a yellow square. 25. Begin a new project. Change the text in the form's title bar to "Dynamic Duo". Place two buttons on the form. Position and resize the buttons as shown. Enter Batman as the text of the first button, and enter Robin as the text of the second button. Increase the font size for both buttons to Begin a new project. Change the text in the form's title bar to "Fill the Blank". Place a label, a text box, and another label on the form at appropriate locations. Change the Text setting of the first label to "I m the king of the" and the Text setting of the second label to "A Quote by Leonardo DiCaprio". 29. Begin a new project. Change the text in the form's title bar to "Uncle's Advice". Place five labels and three buttons on the form. Change the Text setting of each label as indicated. Change the settings of the buttons' Text properties to "1", "2", and "3". Resize and position the labels and buttons Each arrow key moves the text box in the indicated direction. 37. Pressing the right and left arrow keys widens and narrows the text boxes, buttons, and list boxes in the group of selected controls. The up and down arrow keys shorten and lengthen the buttons and list boxes in the group. The arrow keys have no effect on the labels, and only the left and right arrow keys affect the text boxes.

14 Student Solutions Manual (Page 14 of 211) 39. Drag a label and a list box onto the form. Click on the label. Hold down the Ctrl key and click on the list box. (You have now selected a group of two controls.) In the Properties window, click on the plus sign (in XP) or the right-pointing triangle (Vista or Windows 7) to the left of the Font property. Click on the Size property, change the setting to 12, and press the Enter key. (Alternative: Replace the last three lines with the following steps.) In the Properties window, select the Font property. Click on the ellipsis button to the right of the Settings box. Click on 12 in the Size list and click OK. 41. The label is positioned just to the left of the text box, and the middles of the two controls are aligned. 43. Center refers to the midpoint horizontally, whereas middle refers to the midpoint vertically. 45. First blue snap line: tops of the two controls are aligned Purple snap line: middles of the two controls are aligned Second blue snap line: bottoms of the two controls are aligned 47. The setting is cycling through the different available colors.

15 Student Solutions Manual (Page 15 of 211) EXERCISES The word "Hello" 3. The word "Hello" on an orange-colored background 5. The text box vanishes. 7. The word "Hello" in green letters 9. The word "Hello" on a gold background. 11. Form1.Text should be Me.Text. 13. Red should be replaced with Color.Red. 15. Font.Size is a read-only property. The statement txtoutput.text = txtbox.font.size is valid since it is reading the value of txtbox.font.size. However, txtbox.font.size = 20 is not valid since it is setting the value of txtbox.font.size. 17. lbltwo.text = "E.T. phone home." 19. txtbox.forecolor = Color.Red txtbox.text = "The stuff that dreams are made of." 21. txtbox.enabled = False 23. lbltwo.visible = False 25. btnoutcome.enabled = True 27. txtboxtwo.focus() 29. The Enter event occurs when a control gets the focus. 31. Private Sub Label1_Click(...) Handles Label1.Click lstoutput.items.add("click") Private Sub Label1_DoubleClick(...) Handles Label1.DoubleClick lstoutput.items.add("double Click") Whenever the DoubleClick event is raised, the Click event is also raised. 33. Private Sub btnleft_click(...) Handles btnleft.click txtbox.text = "Left Justify" txtbox.textalign = HorizontalAlignment.Left Private Sub btncenter_click(...) Handles btncenter.click txtbox.text = "Center" txtbox.textalign = HorizontalAlignment.Center Private Sub btnright_click(...) Handles btnright.click txtbox.text = "Right Justify" txtbox.textalign = HorizontalAlignment.Right

16 Student Solutions Manual (Page 16 of 211) 35. Private Sub btnred_click(...) Handles btnred.click txtbox.backcolor = Color.Red Private Sub btnblue_click(...) Handles btnblue.click txtbox.backcolor = Color.Blue Private Sub btnwhite_click(...) Handles btnwhite.click txtbox.forecolor = Color.White Private Sub btnyellow_click(...) Handles btnyellow.click txtbox.forecolor = Color.Yellow 37. Private Sub txtlife_enter(...) Handles txtlife.enter txtquote.text = "I like life, it's something to do." Private Sub txtfuture_enter(...) Handles txtfuture.enter txtquote.text = "The future isn't what it used to be." Private Sub txttruth_enter(...) Handles txttruth.enter txtquote.text = "Tell the truth and run." 39. Private Sub btnone_click(...) Handles btnone.click btnone.visible = False btntwo.visible = True btnthree.visible = True btnfour.visible = True Private Sub btntwo_click(...) Handles btntwo.click btnone.visible = True btntwo.visible = False btnthree.visible = True btnfour.visible = True Private Sub btnthree_click(...) Handles btnthree.click btnone.visible = True btntwo.visible = True btnthree.visible = False btnfour.visible = True Private Sub btnfour_click(...) Handles btnfour.click btnone.visible = True btntwo.visible = True btnthree.visible = True btnfour.visible = False

17 Student Solutions Manual (Page 17 of 211) 41. Private Sub btnvanish_click(...) Handles btnvanish.click lblface.visible = False Private Sub btnreappear_click(...) Handles btnreappear.click lblface.visible = True 43. Private Sub btnany_click(...) Handles btnone.click, btntwo.click txtoutput.text = "You just clicked on a button."

18 Student Solutions Manual (Page 18 of 211) CHAPTER 3 EXERCISES Not valid 13. Valid 15. Not valid Private Sub btncompute_click(...) Handles btncompute.click lstoutput.items.add((7 * 8) + 5) 25. Private Sub btncompute_click(...) Handles btncompute.click lstoutput.items.add(0.055 * 20) 27. Private Sub btncompute_click(...) Handles btncompute.click lstoutput.items.add(17 * ( )) 29. x y Private Sub btnevaluate_click(...) Handles btnevaluate.click Dim x, y As Double 0 0 x = y = 3 * x 2 6 x = y lstresults.items.clear() 11 6 lstresults.items.add(x + 4) 11 6 y = y The third line should read c = a + b 41. The first assignment statement should not contain a comma. The second assignment statement should not contain a dollar sign W is not a valid variable name. 45. Dim quantity As Integer =

19 Student Solutions Manual (Page 19 of 211) 59. Private Sub btncompute_click(...) Handles btncompute.click Dim revenue, costs, profit As Double revenue = costs = profit = revenue - costs lstoutput.items.add(profit) 61. Private Sub btncompute_click(...) Handles btncompute.click Dim price, discountpercent, markdown As Double price = discountpercent = 30 markdown = (discountpercent / 100) * price price = price - markdown lstoutput.items.add(math.round(price, 2)) 63. Private Sub btncompute_click(...) Handles btncompute.click Dim balance As Double balance = 100 balance += 0.05 * balance balance += 0.05 * balance balance += 0.05 * balance lstoutput.items.add(math.round(balance, 2)) 65. Private Sub btncompute_click(...) Handles btncompute.click Dim balance As Double balance = 100 balance = balance * (1.05 ^ 10) lstoutput.items.add(math.round(balance, 2)) 67. Private Sub btncompute_click(...) Handles btncompute.click Dim acres, yieldperacre, corn As Double acres = 30 yieldperacre = 18 corn = yieldperacre * acres lstoutput.items.add(corn)

20 Student Solutions Manual (Page 20 of 211) 69. Private Sub btncompute_click(...) Handles btncompute.click Dim distance, elapsedtime, averagespeed As Double distance = 233 elapsedtime = 7-2 averagespeed = distance / elapsedtime lstoutput.items.add(averagespeed) 71. Private Sub btncompute_click(...) Handles btncompute.click Dim waterperpersonperday, people, days, waterused As Double waterperpersonperday = 1600 people = days = 365 waterused = waterperpersonperday * people * days lstoutput.items.add(waterused)

Chapter 3. Fundamentals of Programming in Visual Basic

Chapter 3. Fundamentals of Programming in Visual Basic Page 1 of 114 [Page 41] Chapter 3. Fundamentals of Programming in Visual Basic (This item omitted from WebBook edition) 3.1 Visual Basic Controls 42 Starting a New Visual Basic Program A Text Box Walkthrough

More information

Chapter 2 Visual Basic, Controls, and Events. 2.1 An Introduction to Visual Basic 2.2 Visual Basic Controls 2.3 Visual Basic Events

Chapter 2 Visual Basic, Controls, and Events. 2.1 An Introduction to Visual Basic 2.2 Visual Basic Controls 2.3 Visual Basic Events Chapter 2 Visual Basic, Controls, and Events 2.1 An Introduction to Visual Basic 2.2 Visual Basic Controls 2.3 Visual Basic Events 1 2.1 An Introduction to Visual Basic 2010 Why Windows and Why Visual

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

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

Tutorial 03 understanding controls : buttons, text boxes

Tutorial 03 understanding controls : buttons, text boxes Learning VB.Net Tutorial 03 understanding controls : buttons, text boxes Hello everyone welcome to vb.net tutorials. These are going to be very basic tutorials about using the language to create simple

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

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

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

INSTRUCTOR SOLUTIONS MANUAL

INSTRUCTOR SOLUTIONS MANUAL Instructor Solutions Manual (Page 1 of 443) INSTRUCTOR SOLUTIONS MANUAL to accompany An Introduction to Programming Using Visual Basic, 10th Edition by David I. Schneider Instructor Solutions Manual (Page

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

INFORMATICS LABORATORY WORK #4

INFORMATICS LABORATORY WORK #4 KHARKIV NATIONAL UNIVERSITY OF RADIO ELECTRONICS INFORMATICS LABORATORY WORK #4 MAZE GAME CREATION Associate Professor A.S. Eremenko, Associate Professor A.V. Persikov Maze In this lab, you build a maze

More information

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

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

More information

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

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

TSM Report Designer. Even Microsoft Excel s Data Import add-in can be used to extract TSM information into an Excel spread sheet for reporting.

TSM Report Designer. Even Microsoft Excel s Data Import add-in can be used to extract TSM information into an Excel spread sheet for reporting. TSM Report Designer The TSM Report Designer is used to create and modify your TSM reports. Each report in TSM prints data found in the databases assigned to that report. TSM opens these databases according

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

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

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

More information

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

Introducing Visual Basic

Introducing Visual Basic Introducing Visual Basic September 8, 2006 Chapter 3 - VB 2005 by Schneider 1 Today Chapter 3 provides a great walkthrough intro to VB We re going to take a detailed look at this today (and pick it up

More information

HOUR 4 Understanding Events

HOUR 4 Understanding Events HOUR 4 Understanding Events It s fairly easy to produce an attractive interface for an application using Visual Basic.NET s integrated design tools. You can create beautiful forms that have buttons to

More information

Tutorials. Lesson 3 Work with Text

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

More information

Introduction to Personal Computing

Introduction to Personal Computing Introduction to Personal Computing Academic Computing Services www.ku.edu/acs Abstract: This document explains the basics of the Microsoft Windows operating system. It is intended for users who are either

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

Table of Contents Lesson 1: Introduction to the New Interface... 2 Lesson 2: Prepare to Work with Office

Table of Contents Lesson 1: Introduction to the New Interface... 2 Lesson 2: Prepare to Work with Office Table of Contents Lesson 1: Introduction to the New Interface... 2 Exercise 1: The New Elements... 3 Exercise 2: Use the Office Button and Quick Access Toolbar... 4 The Office Button... 4 The Quick Access

More information

November Copyright 2016 Open Systems Holdings Corp. All rights reserved.

November Copyright 2016 Open Systems Holdings Corp. All rights reserved. This document describes the intended features and technology for TRAVERSE 11 as of November, 2016. Features and technology are subject to change and there is no guarantee that any particular feature or

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

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

Using Microsoft Excel

Using Microsoft Excel Using Microsoft Excel Formatting a spreadsheet means changing the way it looks to make it neater and more attractive. Formatting changes can include modifying number styles, text size and colours. Many

More information

A Complete Tutorial for Beginners LIEW VOON KIONG

A Complete Tutorial for Beginners LIEW VOON KIONG I A Complete Tutorial for Beginners LIEW VOON KIONG Disclaimer II Visual Basic 2008 Made Easy- A complete tutorial for beginners is an independent publication and is not affiliated with, nor has it been

More information

Microsoft Office Suite

Microsoft Office Suite Module 3 MODULE OVERVIEW Part 1 Getting Familiar with Microsoft Word 2007 for Windows Part 2 Microsoft Word 2007 Basic Features Part 3 More Basic Features Microsoft Office Suite Microsoft Word 2007 Part

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

CHAPTER 1 COPYRIGHTED MATERIAL. Getting to Know AutoCAD. Opening a new drawing. Getting familiar with the AutoCAD and AutoCAD LT Graphics windows

CHAPTER 1 COPYRIGHTED MATERIAL. Getting to Know AutoCAD. Opening a new drawing. Getting familiar with the AutoCAD and AutoCAD LT Graphics windows CHAPTER 1 Getting to Know AutoCAD Opening a new drawing Getting familiar with the AutoCAD and AutoCAD LT Graphics windows Modifying the display Displaying and arranging toolbars COPYRIGHTED MATERIAL 2

More information

Designer Reference 1

Designer Reference 1 Designer Reference 1 Table of Contents USE OF THE DESIGNER...4 KEYBOARD SHORTCUTS...5 Shortcuts...5 Keyboard Hints...5 MENUS...7 File Menu...7 Edit Menu...8 Favorites Menu...9 Document Menu...10 Item Menu...12

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

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

Microsoft. An Introduction

Microsoft. An Introduction Microsoft Amarillo College Revision Date: February 7, 2011 Table of Contents SLIDE MASTER... 2 ACCESSING THE SLIDE MASTER... 2 BACKGROUNDS... 2 FONT COLOR OF SLIDE TITLES... 3 FONT COLOR OF BULLET LEVELS...

More information

Excel 2010 Foundation. Excel 2010 Foundation SAMPLE

Excel 2010 Foundation. Excel 2010 Foundation SAMPLE Excel 2010 Foundation Excel 2010 Foundation Excel 2010 Foundation Page 2 2010 Cheltenham Courseware Pty. Ltd. All trademarks acknowledged. E&OE. No part of this document may be copied without written permission

More information

Creating Reports in Access 2007 Table of Contents GUIDE TO DESIGNING REPORTS... 3 DECIDE HOW TO LAY OUT YOUR REPORT... 3 MAKE A SKETCH OF YOUR

Creating Reports in Access 2007 Table of Contents GUIDE TO DESIGNING REPORTS... 3 DECIDE HOW TO LAY OUT YOUR REPORT... 3 MAKE A SKETCH OF YOUR Creating Reports in Access 2007 Table of Contents GUIDE TO DESIGNING REPORTS... 3 DECIDE HOW TO LAY OUT YOUR REPORT... 3 MAKE A SKETCH OF YOUR REPORT... 3 DECIDE WHICH DATA TO PUT IN EACH REPORT SECTION...

More information

Excel 2013 Foundation. Excel 2013 Foundation SAMPLE

Excel 2013 Foundation. Excel 2013 Foundation SAMPLE Excel 2013 Foundation Excel 2013 Foundation Excel 2013 Foundation Page 2 2013 Cheltenham Group Pty. Ltd. All trademarks acknowledged. E&OE. No part of this document may be copied without written permission

More information

Excel 2016 Foundation SAMPLE

Excel 2016 Foundation SAMPLE Excel 2016 Foundation Excel 2016 Foundation Excel 2016 Foundation Page 2 2015 Cheltenham Group Pty. Ltd. All trademarks acknowledged. E&OE. No part of this document may be copied without written permission

More information

For many people, learning any new computer software can be an anxietyproducing

For many people, learning any new computer software can be an anxietyproducing 1 Getting to Know Stata 12 For many people, learning any new computer software can be an anxietyproducing task. When that computer program involves statistics, the stress level generally increases exponentially.

More information

Visual Basic 2008 Anne Boehm

Visual Basic 2008 Anne Boehm TRAINING & REFERENCE murach s Visual Basic 2008 Anne Boehm (Chapter 3) Thanks for downloading this chapter from Murach s Visual Basic 2008. We hope it will show you how easy it is to learn from any Murach

More information

Lesson 8: Presentation Enhancements Microsoft PowerPoint 2016

Lesson 8: Presentation Enhancements Microsoft PowerPoint 2016 Lesson 8: Presentation Enhancements Microsoft PowerPoint 2016 IN THIS CHAPTER, YOU WILL LEARN HOW TO Set up presentations for delivery. View and change slide masters. Add WordArt text. Create hyperlinks.

More information

VHSE - COMPUTERISED OFFICE MANAGEMENT MODULE III - Communication and Publishing Art - PageMaker

VHSE - COMPUTERISED OFFICE MANAGEMENT MODULE III - Communication and Publishing Art - PageMaker INTRODUCTION : It is one Adobe PageMaker 7.0 software is the ideal page layout program for business, education, and small- and home-office professionals who want to create high-quality publications such

More information

Introduction to Microsoft Excel

Introduction to Microsoft Excel Create it Introduction to Microsoft Excel It's the beginning of the year (or you just got your new computer) and you want to create an electronic grade book to keep track of student achievement and do

More information

PowerPoint Slide Basics. Introduction

PowerPoint Slide Basics. Introduction PowerPoint 2016 Slide Basics Introduction Every PowerPoint presentation is composed of a series of slides. To begin creating a slide show, you'll need to know the basics of working with slides. You'll

More information

Faculty Development Seminar Series Constructing Posters in PowerPoint 2003 Using a Template

Faculty Development Seminar Series Constructing Posters in PowerPoint 2003 Using a Template 2008-2009 Faculty Development Seminar Series Constructing Posters in PowerPoint 2003 Using a Template Office of Medical Education Research and Development Michigan State University College of Human Medicine

More information

Budget Exercise for Intermediate Excel

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

More information

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

Drawing Tools. Drawing a Rectangle

Drawing Tools. Drawing a Rectangle Chapter Microsoft Word provides extensive DRAWING TOOLS that allow you to enhance the appearance of your documents. You can use these tools to assist in the creation of detailed publications, newsletters,

More information

Chapter 4: Single Table Form Lab

Chapter 4: Single Table Form Lab Chapter 4: Single Table Form Lab Learning Objectives This chapter provides practice with creating forms for individual tables in Access 2003. After this chapter, you should have acquired the knowledge

More information

Excel 2016 Foundation. North American Edition SAMPLE

Excel 2016 Foundation. North American Edition SAMPLE Excel 2016 Foundation Excel 2016 Foundation North American Edition Excel 2016 Foundation Page 2 2015 Cheltenham Group Pty. Ltd. All trademarks acknowledged. E&OE. No part of this document may be copied

More information

STUDENT WORKBOOK. Teach Yourself: Computer Basics Expert. In 24 Hours or less

STUDENT WORKBOOK. Teach Yourself: Computer Basics Expert. In 24 Hours or less STUDENT WORKBOOK Teach Yourself: Computer Basics Expert In 24 Hours or less Student Workbook Table of Contents Section 1: Understanding Applications... 1 Lesson 1.1: Application Basics... 2 Step-By-Step...

More information

-Using Excel- *The columns are marked by letters, the rows by numbers. For example, A1 designates row A, column 1.

-Using Excel- *The columns are marked by letters, the rows by numbers. For example, A1 designates row A, column 1. -Using Excel- Note: The version of Excel that you are using might vary slightly from this handout. This is for Office 2004 (Mac). If you are using a different version, while things may look slightly different,

More information

SKILL AREA 210: USE A WORD PROCESSING SOFTWARE. Lesson 1: Getting Familiar with Microsoft Word 2007 for Windows...5

SKILL AREA 210: USE A WORD PROCESSING SOFTWARE. Lesson 1: Getting Familiar with Microsoft Word 2007 for Windows...5 Contents Microsoft Word 2007...5 Lesson 1: Getting Familiar with Microsoft Word 2007 for Windows...5 The Microsoft Office Button...6 The Quick Access Toolbar...6 The Title Bar...6 The Ribbon...6 The Ruler...6

More information

Microsoft Excel for Beginners

Microsoft Excel for Beginners Microsoft Excel for Beginners training@health.ufl.edu Basic Computing 4 Microsoft Excel 2.0 hours This is a basic computer workshop. Microsoft Excel is a spreadsheet program. We use it to create reports

More information

Lesson 4 Page Styles

Lesson 4 Page Styles Lesson 4 Page Styles The Concept of Styles: Styles: In the context of LibreOffice Writer, Styles refers to the characteristics of a part of a document. For example, a Page Style includes information about

More information

EXCEL BASICS: MICROSOFT OFFICE 2010

EXCEL BASICS: MICROSOFT OFFICE 2010 EXCEL BASICS: MICROSOFT OFFICE 2010 GETTING STARTED PAGE 02 Prerequisites What You Will Learn USING MICROSOFT EXCEL PAGE 03 Opening Microsoft Excel Microsoft Excel Features Keyboard Review Pointer Shapes

More information

MICROSOFT WORD XP INTERMEDIATE

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

More information

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

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

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

Let s Make a Front Panel using FrontCAD

Let s Make a Front Panel using FrontCAD Let s Make a Front Panel using FrontCAD By Jim Patchell FrontCad is meant to be a simple, easy to use CAD program for creating front panel designs and artwork. It is a free, open source program, with the

More information

ECDL Module 4 REFERENCE MANUAL

ECDL Module 4 REFERENCE MANUAL ECDL Module 4 REFERENCE MANUAL Spreadsheets Microsoft Excel XP Edition for ECDL Syllabus Four PAGE 2 - ECDL MODULE 4 (USING MICROSOFT EXCEL XP) - MANUAL 4.1 USING THE APPLICATION... 4 4.1.1 FIRST STEPS

More information

Mission Statement The Monroe County Library System enriches the equality of life for all residents of the

Mission Statement The Monroe County Library System enriches the equality of life for all residents of the Mission Statement The Monroe County Library System enriches the equality of life for all residents of the county by providing free access to informational, education and recreational resources. Contents

More information

Managing Content with AutoCAD DesignCenter

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

More information

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

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

More information

Remote Access Synchronization DL Parent

Remote Access Synchronization DL Parent Remote Access Synchronization DL Parent 205 Distance Learning Features Switched-On Schoolhouse 2008 School Edition has two optional distance learning features available: SOS Remote Access and SOS Synchronization.

More information

EXCEL BASICS: MICROSOFT OFFICE 2007

EXCEL BASICS: MICROSOFT OFFICE 2007 EXCEL BASICS: MICROSOFT OFFICE 2007 GETTING STARTED PAGE 02 Prerequisites What You Will Learn USING MICROSOFT EXCEL PAGE 03 Opening Microsoft Excel Microsoft Excel Features Keyboard Review Pointer Shapes

More information

1: Getting Started with Microsoft Excel

1: Getting Started with Microsoft Excel 1: Getting Started with Microsoft Excel The Workspace 1 Menu commands 2 Toolbars 3 Cell References 4 Cell Entries 4 Formatting 5 Saving and Opening Workbook Files 7 The Workspace Figure 1 shows the Microsoft

More information

CHAPTER 1 COPYRIGHTED MATERIAL. Finding Your Way in the Inventor Interface

CHAPTER 1 COPYRIGHTED MATERIAL. Finding Your Way in the Inventor Interface CHAPTER 1 Finding Your Way in the Inventor Interface COPYRIGHTED MATERIAL Understanding Inventor s interface behavior Opening existing files Creating new files Modifying the look and feel of Inventor Managing

More information

Welcome to MicroStation

Welcome to MicroStation Welcome to MicroStation Module Overview This module will help a new user become familiar with the tools and features found in the MicroStation design environment. Module Prerequisites Fundamental knowledge

More information

Introduction to Excel 2007 for ESL students

Introduction to Excel 2007 for ESL students Introduction to Excel 2007 for ESL students Download at http://www.rtlibrary.org/excel2007esl.pdf Developed 2010 by Barb Hauck-Mah, Rockaway Township Library for The American Dream Starts @your Library

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

Part II: Creating Visio Drawings

Part II: Creating Visio Drawings 128 Part II: Creating Visio Drawings Figure 5-3: Use any of five alignment styles where appropriate. Figure 5-4: Vertical alignment places your text at the top, bottom, or middle of a text block. You could

More information

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

InDesign Tools Overview

InDesign Tools Overview InDesign Tools Overview REFERENCE If your palettes aren t visible you can activate them by selecting: Window > Tools Transform Color Tool Box A Use the selection tool to select, move, and resize objects.

More information

WINDOWS NT BASICS

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

More information

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

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

More information

Excel 2016: Part 1. Updated January 2017 Copy cost: $1.50

Excel 2016: Part 1. Updated January 2017 Copy cost: $1.50 Excel 2016: Part 1 Updated January 2017 Copy cost: $1.50 Getting Started Please note that you are required to have some basic computer skills for this class. Also, any experience with Microsoft Word is

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

Formatting, Saving and Printing in Word 2013

Formatting, Saving and Printing in Word 2013 Revision 3 (--04) Computer Basics Formatting, Saving and Printing in Word 03 MICROSOFT WORD 03: This program allows you to create new documents, make easy changes, insert media, and effectively save and

More information

FUN TECH TIPS 101 SUMMER CLOVIS UNIFIED SCHOOL DISTRICT INFORMATION TECHNOLOGY SERVICES Prepared by Tanie McKinzie, TSS III

FUN TECH TIPS 101 SUMMER CLOVIS UNIFIED SCHOOL DISTRICT INFORMATION TECHNOLOGY SERVICES Prepared by Tanie McKinzie, TSS III FUN TECH TIPS 101 SUMMER 2016 CLOVIS UNIFIED SCHOOL DISTRICT INFORMATION TECHNOLOGY SERVICES Prepared by Tanie McKinzie, TSS III PUBLISHER BASICS... 3 Creating a text box... 3 Adding a picture... 4 Manipulating

More information

Sample Chapters. To learn more about this book, visit the detail page at: go.microsoft.com/fwlink/?linkid=192147

Sample Chapters. To learn more about this book, visit the detail page at: go.microsoft.com/fwlink/?linkid=192147 Sample Chapters Copyright 2010 by Online Training Solutions, Inc. All rights reserved. To learn more about this book, visit the detail page at: go.microsoft.com/fwlink/?linkid=192147 Chapter at a Glance

More information

Disclaimer. Trademarks. Liability

Disclaimer. Trademarks. Liability Disclaimer II Visual Basic 2010 Made Easy- A complete tutorial for beginners is an independent publication and is not affiliated with, nor has it been authorized, sponsored, or otherwise approved by Microsoft

More information

Microsoft Excel 2010 Tutorial

Microsoft Excel 2010 Tutorial 1 Microsoft Excel 2010 Tutorial Excel is a spreadsheet program in the Microsoft Office system. You can use Excel to create and format workbooks (a collection of spreadsheets) in order to analyze data and

More information

Lesson 2 Quick Tour and Features

Lesson 2 Quick Tour and Features Lesson 2 Quick Tour and Features Objectives Students will format a document page. Students will use a spell-checker. Students will copy, cut, and paste text. Students will adjust paragraph indentations.

More information

1. Creating and Editing Text

1. Creating and Editing Text 17 1. Creating and Editing Text Word is a versatile text editing program that contains many functions and options. In this chapter, we handle all of the basic tasks. It is essential to master these tasks

More information

Microsoft Expression Web Quickstart Guide

Microsoft Expression Web Quickstart Guide Microsoft Expression Web Quickstart Guide MS-Expression Web Quickstart Guide Page 1 of 24 Expression Web Quickstart Guide (20-Minute Training) Welcome to Expression Web. When you first launch the program,

More information

GIS Virtual Workshop: Creating a Final Map

GIS Virtual Workshop: Creating a Final Map To create a map that will be pleasing to an end user, in a static format requires that certain items be added to the map such as a direction arrow, scale, title and legend. Including this information on

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

MICROSOFT OFFICE. Courseware: Exam: Sample Only EXCEL 2016 CORE. Certification Guide

MICROSOFT OFFICE. Courseware: Exam: Sample Only EXCEL 2016 CORE. Certification Guide MICROSOFT OFFICE Courseware: 3263 2 Exam: 77 727 EXCEL 2016 CORE Certification Guide Microsoft Office Specialist 2016 Series Microsoft Excel 2016 Core Certification Guide Lesson 1: Introducing Excel Lesson

More information

Content provided in partnership with Que, from the book Show Me Microsoft Office Access 2003 by Steve JohnsonÃÃ

Content provided in partnership with Que, from the book Show Me Microsoft Office Access 2003 by Steve JohnsonÃÃ ,PSURYLQJWKH$SSHDUDQFHRI )RUPVDQGHSRUWV Content provided in partnership with Que, from the book Show Me Microsoft Office Access 00 by Steve JohnsonÃÃ Introduction The objects in a database most on display

More information

Excel 2010: Basics Learning Guide

Excel 2010: Basics Learning Guide Excel 2010: Basics Learning Guide Exploring Excel 2010 At first glance, Excel 2010 is largely the same as before. This guide will help clarify the new changes put into Excel 2010. The File Button The purple

More information

Using Reports. Access 2013 Unit D. Property of Cengage Learning. Unit Objectives. Files You Will Need

Using Reports. Access 2013 Unit D. Property of Cengage Learning. Unit Objectives. Files You Will Need Unit D CASE Samantha Hooper, a tour developer at Quest Specialty Travel, asks you to produce some reports to help her share and analyze data. A report is an Access object that creates a professional looking

More information

MS Word Basic Word 2007 Concepts

MS Word Basic Word 2007 Concepts MS Word Basic Word 2007 Concepts BWD 1 BASIC MS WORD CONCEPTS This section contains some very basic MS Word information that will help you complete the assignments in this book. If you forget how to save,

More information

Spreadsheet definition: Starting a New Excel Worksheet: Navigating Through an Excel Worksheet

Spreadsheet definition: Starting a New Excel Worksheet: Navigating Through an Excel Worksheet Copyright 1 99 Spreadsheet definition: A spreadsheet stores and manipulates data that lends itself to being stored in a table type format (e.g. Accounts, Science Experiments, Mathematical Trends, Statistics,

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

Chapter 2 Exploration of a Visual Basic.Net Application

Chapter 2 Exploration of a Visual Basic.Net Application Chapter 2 Exploration of a Visual Basic.Net Application We will discuss in this chapter the structure of a typical Visual Basic.Net application and provide you with a simple project that describes the

More information

Access Review. 4. Save the table by clicking the Save icon in the Quick Access Toolbar or by pulling

Access Review. 4. Save the table by clicking the Save icon in the Quick Access Toolbar or by pulling Access Review Relational Databases Different tables can have the same field in common. This feature is used to explicitly specify a relationship between two tables. Values appearing in field A in one table

More information