Finding the Errors: Introduction to Visual Basic Debugging

In this lesson, you will learn about fixing program errors through debugging.

No matter how carefully you design a program or write code, errors are bound to occur. Sometimes errors keep the program from even starting, sometimes they cause the program to stop running or crash, and other times, the program may run but not give the expected results.

Of course, when errors do occur, you will want to find them and fix them. Errors in a program are typically known as bugs, and the process of finding them and fixing them is known as debugging.

The process of debugging is iterative—that is, it is a process that you will perform repeatedly. Typically you will write some code, run the program until an error occurs, find the bug, fix it, and then run the program again.

In most cases, you do not have to stop the program to fix it. You can fix the code where the error occurred and continue to run the program where you left off; this process is referred to as Edit and Continue.

Debugging is accomplished from the Visual Basic IDE (integrated development environment)—which contains several special commands and windows to help you find bugs. You will learn more about these in the following lessons.

Try It!

Note

This example involves an exception. Exceptions are objects that are created (and thrown) when the program realizes that an error has occurred. Different types of exceptions are created, depending on the type of error that has occurred. Under the default user settings, if an exception occurs when you are running your Visual Basic program, a dialog box appears to explain the error and help you fix it.

To use edit and continue

  1. On the File menu, select New Project.

  2. On the Templates pane in the New Project dialog box, click Windows Application.

  3. In the Name box, type Edit and then click OK.

    A new Windows Forms project opens.

  4. Double-click the form to open the Code Editor.

  5. In the Form_Load event handler, add the following code.

    Dim number As Integer = 1
    Dim numbers As String = ""
    MsgBox(numbers + 1)
    
  6. Press F5 to run the program. The program will stop and an exception dialog box is shown with the message "InvalidCastException was unhandled".

    The exception occurred because there is a typographical error in the code. The wrong variable was used—it should be number, the Integer variable, not numbers, which is a String variable.

    Notice that the program is still running; it is just in the debugging break mode. By using Edit and Continue, you can fix the error without having to stop the program (and re-running to check it).

  7. In the Code Editor, change numbers + 1 to number + 1.

  8. Press F5 to continue. A message box displaying the number 2 should appear.

Next Steps

In this lesson, you learned about debugging, and also how to fix a bug and continue to run your program. In the next lesson you will learn about the various types of errors.

Next Lesson: Know Your Bugs: Three Kinds of Programming Errors

See Also

Tasks

What To Do When Something Goes Wrong: Handling Errors

Other Resources

What Went Wrong? Finding and Fixing Errors Through Debugging

Creating the Visual Look of Your Program: Introduction to Windows Forms

Visual Basic Guided Tour