Module 1: Introducing Visual Basic and the .NET FrameworkThis module describes the purpose of the .NET Framework 4 and how you can build applications by using Visual Studio 2010.Lessons
Lab : Introducing Visual Basic and the .NET Framework
After completing this module, students will be able to:
Module 2: Using Visual Basic Programming ConstructsThis module introduces many of the basic Visual Basic language data types and programming constructs, and describes the syntax and semantics of these constructs.Lessons
Lab : Using Visual Basic Programming Constructs
After completing this module, students will be able to:
Module 3: Declaring and Calling MethodsA key part of developing any application is dividing the solution into logical components. In object-oriented languages such as Microsoft Visual Basic, a method is a unit of code that is designed to perform a discrete piece of work. This module introduces methods and describes how to define and use them.Lessons
Lab : Declaring and Calling Methods
After completing this module, students will be able to:
Module 4: Handling ExceptionsException handling is an important concept and your applications should be designed with exception handling in mind. This module explains how you can implement effective exception handling in your applications, and how you can use exceptions in your methods to elegantly indicate an error condition to the code that calls your methods.Lessons
Lab : Handling Exceptions
After completing this module, students will be able to:
Module 5: Reading and Writing FilesThe ability to access and manipulate the files on the file system is a common requirement for many applications. This module shows how to read and write to files by using the classes in the Microsoft .NET Framework. This module also describes the different approaches that you can take, and how to read and write different formats of data.Lessons
Lab : Reading and Writing Files
After completing this module, students will be able to:
Module 6: Creating New TypesThe Microsoft.NET Framework base class library consists of many types that you can use in your applications. However, in all applications, you must also build your own types that implement the logic for your solution.This module explains how to create your own modules and types and describes the differences between reference types and value types.Lessons
Lab : Creating New Types
After completing this module, students will be able to:
Module 7: Encapsulating Data and MethodsThis module describes how to use some of the access modifiers that Visual Basic provides to enable you to implement encapsulation. This module also introduces the Shared modifier, which enables you to define members that can be shared over multiple instances of the same type.Lessons
Lab : Encapsulating Data and Methods
After completing this module, students will be able to:
Module 8: Inheriting from Classes and Implementing InterfacesThis module introduces inheritance and interfaces in the Microsoft .NET Framework, and how you can use them to simplify complex problems, reduce code duplication, and speed up development.Inheritance is a key concept in an object-oriented language. You can use inheritance, interfaces, and abstract classes to develop object hierarchies in your code. These object hierarchies can help reduce bugs by defining clear contracts for what a class will expose and by providing default implementations where you can sensibly abstract code into a base type.Lessons
Lab : Inheriting from Classes and Implementing Interfaces
After completing this module, students will be able to:
Module 9: Managing the Lifetime of Objects and Controlling ResourcesAll applications use resources. When you build a Microsoft Visual Basic application, resources fall into two broad categories: managed resources that are handled by the common language runtime (CLR) and unmanaged resources that are maintained by the operating system outside the scope of the CLR. A managed resource is typically an object based on a class defined by using a managed language, such as Visual Basic. Examples of unmanaged resources include items implemented outside the Microsoft .NET Framework, such as Component Object Model (COM) components, file handles, database connections, and network connections.Resource management is important in any applications that you develop. The NET Framework simplifies resource management by automatically reclaiming the resources by a managed object when it is no longer referenced by an application. Managed resources are handled by the .NET Framework garbage collector. However, unmanaged resources are not controlled by the garbage collector; you must take special steps to dispose them properly and prevent them from being held longer than necessary.Lessons
Lab : Managing the Lifetime of Objects and Controlling Resources
After completing this module, students will be able to:
Module 10: Encapsulating Data and Defining Overloaded OperatorsMany operators have well-defined behavior for the built-in Visual Basic types, but you can also define operators for your own types. This module describes how to implement operators for your types by using overloading.Lessons
Lab : Creating and Using Properties
Lab : Creating and Using Indexers
Lab : Overloading Operators
After completing this module, students will be able to:
Module 11: Decoupling Methods and Handling EventsThis module explains how to decouple an operation from the method that implements it and how to use anonymous methods to implement decoupled operations. This module also explains how to use events to inform consuming applications of a change or notable occurrence in a type.Lessons
Lab : Decoupling Methods and Handling Events
After completing this module, students will be able to:
Module 12: Using Collections and Building Generic TypesThe basic collection classes introduce a new problem. Classes that act on other types are often not type-safe. For example, many collection classes frequently use the Object type to store items, and must then be cast or converted back to their original type before they can be used. It is the programmer’s responsibility to ensure that the correct casts or conversions are performed, and it is easy to introduce errors by casting or converting an item to the wrong type. This module introduces generics and how you can use generic classes to maintain type-integrity and avoid issues that are associated with a lack of type safety.Lessons
Lab : Using Collections
Lab : Building Generic Types
After completing this module, students will be able to:
Module 13: Building and Enumerating Custom Collection ClassesWhen you develop applications, you often need to store collections of objects. In many circumstances, you can use the collection classes that the Microsoft .NET Framework includes; however, sometimes these collection classes do not provide the functionality that you require. For example, you may need to store objects in a sorted order that is based on a custom sorting algorithm.This module introduces you to custom collection classes. It also explains how you can develop collection classes that support the language constructs that Visual Basic provides, such as enumeration and collection initialization.Lessons
Lab : Building and Enumerating Custom Collection Classes
After completing this module, students will be able to:
Module 14: Using LINQ to Query DataThis module introduces you to Language-Integrated Query (LINQ) queries and explains how you can use them to process data in your Microsoft .NET Framework applications. This module also explains the difference between shared and dynamic LINQ queries, and describes how you can use dynamic LINQ to create highly flexible queries that you build at run time.Lessons
Lab : Using LINQ to Query Data
After completing this module, students will be able to:
Module 15: Integrating Visual Basic Code with Dynamic Languages and COM ComponentsIntegration with other technologies is a key feature of the Microsoft.NET Framework. Previous versions of the .NET Framework enabled you to combine components that were developed by using different languages that have compilers that the .NET Framework supports. The .NET Framework 4 now supports integration of components built by using dynamic languages. This enables you to re-use items built by using a wide range of scripting languages that are not easily accessible from Microsoft Visual Basic code.In addition, previous versions of the .NET Framework have always enabled you to integrate Component Object Model (COM) services and components into your managed applications. The integration did however, require a good understanding of the differences between the way in which the common language runtime (CLR) and the COM environment operated. The new features of Visual Basic 2010 have simplified the way in which you can invoke COM components, so it is easier for you to re-use these items in a Visual Basic application.This module describes how to integrate code written by using a dynamic language such as Ruby and Python, or technologies such as COM, into a Visual Basic application.Lessons
Lab : Integrating Visual Basic Code with Dynamic Languages and COM Components
After completing this module, students will be able to:
This course teaches you Visual Basic language syntax, program structure, and implementation by using Microsoft Visual Studio 2010 and the Microsoft .NET Framework 4.
This course provides a solid foundation in Visual Basic to the level necessary to enable students to attend other courses in the Technical Specialist tracks.
This course requires that you meet the following prerequisites:
After completing this course, students will be able to:
This course is intended for experienced developers who already have programming experience in Visual Basic, C, C++, C#, or Java, and understand the concepts of Object Oriented Programming. These developers will be likely to develop enterprise business solutions.These professional developers will be attending the course so that they can quickly ramp up on Visual Basic Programming in the .NET Framework. The course focuses on Visual Basic program structure, language syntax, and implementation details with the .NET Framework 4.0. This course also focuses on new enhancement in the Visual Basic 2010 language using Visual Studio 2010.