alt
Advertisement
Online Training
Career Series
Exforsys
Exforsys arrow Tutorials arrow VB.NET 2005 arrow VB.NET 2005 Free Training
Site Search


VB.NET 2005 Free Training

VB.NET 2005 Free Training

We are exited to let you know that we will be starting Visual Basic .NET 2005 Training. Please find the topics below which we will be covering during the course. This training is based on the latest Visual Basic .NET 2005 verion.

Visual Basic .NET 2005 Training

1. .NET Framework architecture

  • The role of the Common Language Runtime (CLR) and core .NET Framework classes
  • Microsoft Intermediate Language (MSIL)
  • Just-In-Time (JIT) compilation
  • Assemblies, native assemblies, and the Global Assembly Cache (GAC)
  • Comparison of VB.NET, C#, and J#
  • Differences between Vb 1 and VB 2.0

2. Introducing Windows Forms

  • Creating a Windows Application
  • Setting and Adding Properties to a Windows Form
  • Using Visual Inheritance
  • Event Handling
  • Building graphical interface elements by using the System.Drawing namespace
  • Working with images

3. Controls

  • Adding Controls to a Windows Form
  • Adding Controls using Windows Forms Designer
  • Important common properties of controls
  • Configuring the order of tabs
  • Handling Control Events
  • Dialog Boxes
  • Common Windows Forms Controls
  • Creating Menu and Menu Items
  • Creating Multiple-Document Interface (MDI) Applications

4. Exceptions

  • What is an exception?
  • Handling Exceptions
  • Custom Exceptions
  • Managing Unhandled Exception
  • User Input Validation

5. Creating and Managing Components and .NET Assemblies

  • Creating and Managing .NET Components
  • Creating and Managing .NET Assemblies

6. Data Binding

  • Bind Data to the UI
  • Complex Data Binding
  • One-Way and Two-Way Data Binding
  • The BindingContext and CurrencyManager Classes
  • Using the Data Form Wizard
  • Transform and Filter Data
  • Using Server Explorer
  • Filtering Data

7. Consuming and Manipulating Data

  • Access and Manipulate SQL Server data
  • Using Stored Procedures
  • Access and Manipulate Data
  • The ADO.NET Object Model
  • Using DataSets
  • Editing Data with ADO.NET
  • Using XML Data
  • Handle Data Errors

8. Web Services

  • Understanding Web services
  • SOAP
  • Disco and UDDI
  • WSDL
  • Invoking your first Web service
  • Creating Web services
  • Discovering Web services
  • Disco and UDDI

9. Testing and Debugging a Web Application

  • Testing
  • Tracing
  • Debugging

10. Working with Legacy Code

  • Using ActiveX Controls
  • Using COM Components
  • Using COM+ Components
  • Using Platform Invoke

11. Testing and Debugging a Windows Application

  • Testing
  • Creating a Test Plan
  • Executing Tests
  • Unit Testing
  • Integration Testing
  • Regression Testing
  • Testing International Applications
  • Tracing
  • Debugging

12. Deploying a Windows-based Application

  • Deployment Tools
  • Deploying a Windows application
  • Customizing a Setup Project
  • Shared Assemblies
  • Creating Installation Components
  • URL Remoting
  • Methods of Deployment
  • Windows Logo Programs

Tutorial Index
  1. VB.NET 2005 Tutorials : Shared Assembly In this tutorial you will learn about Shared Assembly, how to Assign Strong name to an assembly, Microsoft Windows Installer 2.0, Using the Global Assembly Cache tool (Gacutil.exe), Removing an Assembly from the Global Assembly Cache, Referencing an Assembly ...
  1. This is the first tutorial as part of the Visual Basic .NET 2005 Training. In this tutorials we will be learning about the basics of The .NET Framework Architecture, The .NET vision, Common Language Runtime (CLR), .NET Framework Class Library and Microsoft Intermediate Language (MSIL). It's very imp...
  1. VB.NET 2005 Tutorials : Tracing a Windows Application In this tutorial you will learn about Tracing, Using Trace and Debug to display information, Code Tracing and Debugging, Output from Tracing, The six Debug Members and Trace Methods, Trace Listeners, Types of predefined Trace Listeners, Trace Sw...
  1. VB.NET 2005 Free Training : The .NET Framework Architecture Part 2. In this tutorial of The .NET Framework Architecture Part 2 we will learn about Just-In-Time (JIT) compilation, Assemblies, native assemblies, Global Assembly Cache (GAC) and Comparison of VB.NET, C#, and J#.
  1. VB.NET 2005 Tutorials : Testing a Windows Application In this tutorial you will learn how to Test a Windows Application, Creating Unit Tests, Generating an ASP.NET Unit Test, benefits of unit testing, Integration Testing, Different approaches to Integration Testing, Regression Testing, goals of reg...
  1. Introduction and Implementing Inheritance The usefulness of inheritance is depnding on the choice of its usage. You can use inheritance if the derived class is a kind of base class but not has a relationship with the base class. Such a situation empowers you to reuse the code from the base class. I...
  1. The File Types Editor The File Types Editor can be used to create the required registry to establish a file association for the application being installed. A file association is simply a link between a particular file extension and a particular application. For example, the file extension .xls i...
  1. Visual Studio.NET Namespaces The .NET Framework class library has thousands of classes which are needed for developing and deploying solutions. In order to organize all those classes for ease of use .NET Framework uses namespaces. This Gives the Classes their own space and prevents conflicts betwee...
  1. VB.NET 2005 Free Training: Differences between VB.NET 1.0 and VB.NET 2.0: VB.NET 2005 comes with a number of enhancements. The IntelliSense Code snippets, the Windows Forms designer updates, IntelliSense filtering, debugger data tips, exception Assistant etc make the software a pleasure to work with...
  1. Using The System.Windows.Forms.Form class System.Windows .Forms.Form class is the foundation class for all forms to be created. All the forms that are created in VB .NET are also inheriting from this base class. This class provides for all the facilities needed for the form. Additional functionalit...
  1. Introducing VB.NET 2005 Windows Forms We will be learning in the next series of articles as part of VB.NET 2005 Free Training : Introducing Windows Forms in the following topics with code samples and screen shots.
  1. Introduction to Event Handling One of the most useful capabilities of the OOP Languages is their inbuilt ability to be aware of a large number of events like MouseOver, MouseClick, and so on so that we can write codes to react to any event that we are interested. This is made possible by the rich s...
  1. VB.NET 2005 Free Training Exploring the Forms Designer generated code As you create a new project in the Visual Basic, the IDE generally automatically adds lots of lines of code on its own. Visual Basic 2005 comes with an option to skip over this behavior of the Visual Basic IDE. The default optio...
  1. Building graphical interface elements by using the System.Drawing namespace In this tutorial we will learn about Graphics Object, The Windows Forms Coordinate System, Drawing Text on a Form, Drawing Shapes and Working with images.
  1. VB.NET 2005 Tutorials : Creating Installation Components In this tutorial you will learn how to Create installation components, Work with predefined Installation Components, Deploying an Assembly containing the Installation Components, Working with Installer Classes, URL Remoting, Launching a Remot...
  1. Using Application Class Visual Basic 2005 introduces a speedy way to access many important classes relating to the Computer on which the application is running, the user running it, the application itself, its forms and any associated web services. The best part of it all is that you can access it ...
  1. Visual Studio Adding Controls In this tutorial let's discuss about Adding Controls to a Windows Form, Adding Controls using Windows Forms Designer, Adding Controls Dynamically and Setting properties of Controls. Sample source codes used in this tutorial are included. Forms are containers for contr...
  1. Common Controls and Handling Control Events In this tutorial we will be learning how to use common control like Control Hierarchy, Label and LinkLabel, TextBox and RichTextBox, PictureBox, GroupBox and Panel, Button, CheckBox and RadioButton, ListBox, CheckedListBox and ComboBox, DomainUpDown and N...
  1. Implementing Class Library Object in VB.NET 2005 Class: Classical Object Oriented Concepts explain a class as a cookie cutter. A class allows you to create objects of the class. As a programmer you define a class with data fields, properties, methods and events. Then you can create objects based on...
  1. Setting and Adding Properties to a Windows Form In this tutorial we wil leran about Setting and Adding Properties to a Windows Form, Using the Visual Designer to set Windows Form Properties, Setting Windows Forms Properties programatically and Using Visual Inheritance along with the sample project ...
  1. Dialog Boxes in Visual Basic .NET Most Windows applications request for user input. Dialog boxes are one means of requesting users for specific kinds of inputs. Therefore, VB.NET allows its designers to create a number of different types of dialog boxes. Standard Dialog boxes are included in classe...
  1. .NET Common Windows Forms Controls In this tutorial we will learn about Common Windows Forms Controls in Visual Basic .NET 2005. IN this part 1 of this article, We will be learning the controls like Control Hierarchy, Label, LinkLabel, TextBox, RichTextBox, PictureBox, GroupBox, Panel, Button, Che...
  1. .NET Common Windows Form Controls part 2 In this tutorial we will learn about Common Windows Forms Controls in Visual Basic .NET 2005. In this part 2 of this article, We will be learning the controls like Control MonthCalendar and DateTimePicker, TreeView and ListView, Timer, TrackBar and ProgressB...
  1. Visual Basic.NET 2005 Training The Registry Editor The Registry Editor is used for: 1. Creating registry keys 2. Creating values for registry keys 3. Importing a registry file.
  1. VIB.NET 2005 Tutorials : Customizing a Setup Project Deployment projects in Visual Studio.NET allow the specification of where and how the application will be deployed on the user system. Each of the setup editors contain a file system configuration editor. The setup can sometimes include Registry...
  1. VB.NET 2005 Tutorials Deploying Windows Applications In this tutorial you will learn how to Deploy a Windows-based Application, Create a Setup Project, Configuring Deployment Properties, Customizing a Setup Project, File System Editor, The Registry Editor, The File Types Editor, The User Interface...
  1. VB.NET 2005 Tutorials : Debugging a Windows Application In this tutorial you will learn how to Debug a Windows Application, Step through Program Execution, Stop Debugging or Stop Execution, Stepping Through Code, Setting BreakPoints, Analyzing Program State to Resolve Errors, Debugging on Errors, E...
  1. Testing a Windows Application In this tutorial you will learn how to test a windows application, tracing, using tracing and debug to display information, code tracing and debugging, output from tracing, six debug members and trace methods, Trace Listeners, Trace Switches, Conditional Compilation an...
  1. Working with Legacy Code - COM Components In this tutorial you will learn to use COM Components, Understand Runtime Callable Wrappers, Type Library Importer (TLBIMP), Using COM Components Directly, Using COM+ Components and Creating Com+ Application.
  1. Working with Legacy Code - ActiveX Control In this tutorial you will learn how to use ActiveX Control, the windows forms ActiveX Control Importer, Importing Controls with Toolbox, Using ActiveX Controls on Windows Forms and you will also learn how to use Platform Invoke.
  1. Tracing and Debugging a Web Application In this tutorial you will learn how to trace and debug a web application. Tracing - Using the TraceContext class, Using Trace and Debug, Trace listeners, Trace Switches and Conditional Compilation. Debugging - you will learn setting breakpoin...
  1. VB.NET 2005 Turorials : Testing a Web Application In this tutorial you will learn about Testing a Web Application, Configuring ASP.NET Unit Tests Using Run Configuration, Creating and Removing Run Configurations, Subsequent run configurations, removing run configuration and editing run configuratio...
  1. In this tutorial you will learn about Using Web Reference - Adding a Web reference:, To create an ASP.NET Web application, Adding a Web Reference, Testing a Web Service, Accessing the XML Web Service and To access the XML Web service
  1. Instantiating - Invoking Web Services, Creating Proxy Classes with WSDL In this tutorial you will learn about Discovering Web Services, Instantiating and Invoking Web Services, Creating Proxy Classes with the Web Services Description Language Tool (wsdl.exe)
  1. Creating Web Service Project In this tutorial you will learn about Creating a Web Service Project.
  1. Web Services - SOAP, WSDL, Disco and UDDI In this tutorial you will learn about Web Services - Understanding Web Services, Simple Object Access Protocol (SOAP), The Web Service Discovery Tool (DISCO), Universal Description, Discovery and Integration (UDDI), Web Service Discovery Language (WSDL).
  1. Using XML Data In this tutorial you will learn about Using XML Data - XML Basics, Using XmlDocument Class, Treating XML as Relational Data, The Introduction, The database, Handle Data Errors - Handle Database Errors and Handling Multi-User Errors.
  1. Editing Data With ADO .NET In this tutorial you will learn about Editing Data With ADO .NET - Updating Data, Adding Data, Typed data set, Untyped data set, Deleting Data, Editing with a DataGrid.