Training, cursus 10550: Programming in Visual Basic with Microsoft Visual Studio 2010 opleiding (MS10550) door Master it Training
Neem contact met ons op, bijvoorbeeld voor training, cursus 10550: programming in visual basic with microsoft visual studio 2010 opleiding (ms10550) door master it training
   
Volg uw (maatwerk) cursus, training of opleiding bij Master it Training en profiteer van onze unieke 100% kwaliteitsgarantie!
Master it Training: 650 IT trainingen en cursussen voor o.a. Microsoft MCTS MCITP VMware PRINCE2 en Office

Programming in Visual Basic with Microsoft Visual Studio 2010

MS10550

This .NET Framework 4 training teaches you Visual Basic language syntax, program structure, and implementation by using Microsoft Visual Studio 2010 and the Microsoft .NET Framework 4. This training provides a solid foundation in Visual Basic to the level necessary to enable students to attend other courses in the Technical Specialist tracks.

Doelgroep

This training is intended for developers who 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 training also focuses on new enhancement in the Visual Basic 2010 language using Visual Studio 2010.

Voorkennis

This training 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.

  • This course is targeted at developers who already have Visual Basic knowledge.
  • This course is not for new developers, at least 12 months experience working with an Object Oriented language is expected.
  • Experience with the Microsoft .NET Framework.
  • Knowledge of the Visual Studio integrated development environment (IDE).

Lesmethode

U volgt deze training in onze Open Master Class. Door een groepsgrootte van gemiddeld 6 en maximaal 8 cursisten, bent u verzekerd van een individuele en maatgerichte training. U werkt in uw eigen tempo en beschikt over een gecertificeerde en ervaren docent die u gedurende uw training persoonlijk begeleidt en al uw vragen omtrent de lesstof beantwoordt. Uiteraard profiteert u ook bij deze training van onze 100% Kwaliteitsgarantie.

Duur

5 dagen

Tarief excl. BTW

€ 1.975,00 per deelnemer
Het tarief voor deze training is inclusief studiemateriaal, certificaat, koffie/thee en een uitgebreide lunch.

Trainingstijden

Onze trainingen vinden plaats van 9.30 tot 12.15 en van 13.15 tot 16.30 uur.

Gerelateerde trainingen

MS2559: Introduction to Visual Basic.NET Programming

Huidige categorie

Trainingsaanbod  »  Development trainingen  »  Visual Studio 2010

Module 1: Introducing Visual Basic and the .NET Framework
This module describes the purpose of the .NET Framework 4 and how you can build applications by using Visual Studio 2010.

Lessons:

  • Introduction to the .NET Framework 4
  • Creating Projects Within Visual Studio 2010
  • Writing a Visual Basic Application
  • Building a Graphical Application
  • Documenting an Application
  • Debugging Applications by Using Visual Studio 2010

Module 2: Using Visual Basic Programming Constructs
This module introduces many of the basic Visual Basic language data types and programming constructs, and describes the syntax and semantics of these constructs.

Lessons:

  • Declaring Variables and Assigning Values
  • Using Expressions and Operators
  • Creating and Using Arrays
  • Using Decision Statements
  • Using Iteration Statements

Module 3: Declaring and Calling Methods
A 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:

  • Defining and Invoking Methods
  • Specifying Optional Parameters and ByRef Parameters

Module 4: Handling Exceptions
Exception 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:

  • Handling Exceptions
  • Raising Exceptions

Module 5: Reading and Writing Files
The 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:

  • Accessing the File System
  • Reading and Writing Files by Using Streams

Module 6: Creating New Types
The 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

  • Creating and Using Modules and Enumerations
  • Creating and Using Classes
  • Creating and Using Structures
  • Comparing References to Values

Module 7: Encapsulating Data and Methods
This 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

  • Controlling Visibility of Type Members
  • Sharing Methods and Data

Module 8: Inheriting from Classes and Implementing Interfaces
This 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:

  • Using Inheritance to Define New Reference Types
  • Defining and Implementing Interfaces
  • Defining Abstract Classes

Module 9: Managing the Lifetime of Objects and Controlling Resources
All 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:

  • Introduction to Garbage Collection
  • Managing Resources

Module 10: Encapsulating Data and Defining Overloaded Operators
Many 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:

  • Creating and Using Properties
  • Creating and Using Indexers
  • Overloading Operators

Module 11: Decoupling Methods and Handling Events
This 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

  • Declaring and Using Delegates
  • Using Lambda Expressions
  • Handling Events

Module 12: Using Collections and Building Generic Types
The 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:

  • Using Collections
  • Creating and Using Generic Types
  • Defining Generic Interfaces and Understanding Variance
  • Using Generic Methods and Delegates

Module 13: Building and Enumerating Custom Collection Classes
When 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

Implementing a Custom Collection Class

Adding an Enumerator to a Custom Collection Class

Module 14: Using LINQ to Query Data
This 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:

  • Using the LINQ Extension Methods and Query Operators
  • Building Dynamic LINQ Queries and Expressions

Module 15: Integrating Visual Basic Code with Dynamic Languages and COM Components
Integration 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:

  • Integrating Visual Basic Code with Ruby and Python
  • Accessing COM Components from Visual Basic

Duur

5 dagen

Tarief excl. BTW

€ 1.975,00 per deelnemer

Gerelateerde trainingen

MS2559: Introduction to Visual Basic.NET Programming

Huidige categorie

Trainingsaanbod  »  Development trainingen  »  Visual Studio 2010

Op deze pagina kunt u alle bij deze training behorende informatie eenvoudig en overzichtelijk printen. Daarnaast bieden wij u de mogelijkheid om direct een persoonlijke webofferte te genereren (optie 2). Maar natuurlijk sturen wij u ook graag een maatwerk- of persoonlijke offerte toe!

Optie 1: Trainingsinhoud printen.
Print :

Optie 2: Genereer nu direct een Webofferte (PDF document).
Organisatie :
Voorletter(s) / Naam :
Titel :   
Adres :
Postcode :
Plaats :
Telefoonnummer :
   

Optie 3: Maatwerk- / persoonlijke offerte aanvragen.
Offerte op maat :

Maak een keuze uit onderstaande opties en geef het aantal deelnemers op voor de training Programming in Visual Basic with Microsoft Visual Studio 2010 (MS10550). Op de volgende pagina kunt u vervolgens per deelnemer de naam- en contactgegevens opgeven.

Inschrijven

Duur  : 5 dagen
Tarief excl. BTW  : € 1.975,00 per deelnemer
Inclusief studiemateriaal, certificaat, koffie/thee en een uitgebreide lunch.
Kies een datum
:
Startdatum Volgdata Locatie Methode
  11 jun 12, 13, 14, 15 jun 2012 Eindhoven Open Master Class
  18 jun 19, 20, 21, 22 jun 2012 Utrecht Open Master Class
  23 jul 24, 25, 26, 27 jul 2012 Eindhoven Open Master Class
  30 jul 31 jul, 1, 2, 3 aug 2012 Eindhoven Open Master Class
  6 aug 7, 8, 9, 10 aug 2012 Utrecht Open Master Class
  13 aug 14, 15, 16, 17 aug 2012 Eindhoven Open Master Class
  20 aug 21, 22, 23, 24 aug 2012 Eindhoven Open Master Class
  27 aug 28, 29, 30, 31 aug 2012 Eindhoven Open Master Class
  3 sep 4, 5, 6, 7 sep 2012 Eindhoven Open Master Class
  10 sep 11, 12, 13, 14 sep 2012 Utrecht Open Master Class
  17 sep 18, 19, 20, 21 sep 2012 Eindhoven Open Master Class
  24 sep 25, 26, 27, 28 sep 2012 Eindhoven Open Master Class
  1 okt 2, 3, 4, 5 okt 2012 Eindhoven Open Master Class
  8 okt 9, 10, 11, 12 okt 2012 Rotterdam Open Master Class
  15 okt 16, 17, 18, 19 okt 2012 Eindhoven Open Master Class
  22 okt 23, 24, 25, 26 okt 2012 Eindhoven Open Master Class
Meer data-opties voor deze training..
Aantal deelnemers  :
   

Login op MIJN Master it met uw e-mailadres en wachtwoord.

Registreren  |  Winkelwagentje

Inhoud Mijn winkelwagentje
Inschrijvingen: 0
Totaalbedrag: € 0,00
Zoek training

English information English information
Master it Training is Microsoft GOLD Certified Partner