Sponsored Links
VB.NET 2005 Tutorials
- VB.NET 2005 Free Training
- Shared Assembly
- The .NET Framework Architecture Part 1
- Tracing VB.NET Windows Application
- The .NET Framework Architecture Part 2
- VB.NET Windows Application Testing
- Implementing Inheritance
- The File Types Editor
- Visual Studio.NET Namespaces
- Differences between VB.NET 1.0 and VB.NET 2.0
- Visual Studio Windows Forms Designer
- Introducing VB.NET Windows Forms
- Event Handling In Visual Basic .NET
- Exploring the Forms Designer generated code
- Building Graphical Interface elements
- Microsoft .NET Creating Installation Components
- Application Class and Message Class
- Visual Studio Adding Controls to Windows Form
- Common Controls and Handling Control Events
- Implementing Class Library Object
Tutorials
VB.NET 2005VB.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 version.
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
Shared Assembly
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 ...
The .NET Framework Architecture Part 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...
Tracing VB.NET Windows Application
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...
The .NET Framework Architecture Part 2
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#.
VB.NET Windows Application Testing
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...
Implementing Inheritance
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...
The File Types Editor
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...
Visual Studio.NET Namespaces
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 between...
Differences between VB.NET 1.0 and VB.NET 2.0
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...
Visual Studio Windows Forms Designer
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 functionality...
Introducing VB.NET Windows Forms
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.
Event Handling In Visual Basic .NET
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...
Exploring the Forms Designer generated code
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...
Building Graphical Interface elements
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.
Microsoft .NET Creating Installation Components
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...
Application Class and Message Class
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 ...
Visual Studio Adding Controls to Windows Form
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...
Common Controls and Handling Control Events
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...
Implementing Class Library Object
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...
Setting and Adding Properties to Windows Form
Setting and Adding Properties to a Windows Form In this tutorial we will learn about Setting and Adding Properties to a Windows Form, Using the Visual Designer to set Windows Form Properties, Setting Windows Forms Properties programmatically and Using Visual Inheritance along with the sample project ...
Dialog Boxes in Visual Basic .NET
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 classes...
.NET Common Windows Forms Controls Part 1
Comments
AnandhiKuchu said:
| This just gives the heading of the topic lessons in tutorial and not the actual traning. Will u please tell me how to go to traning course. |
Logesh said:
|
Can you please send me this material. Thanks Logesh |
bharathireddy said:
|
Its really very good to hear that you are going to give the training for .Net through mails like this... I am very happy about that and I am eager to learn the .net course through mails like this.....please send me the material of .net. and Please let me know all the latest updates of this technology |
bharathireddy said:
|
Its really very good to hear that you are going to give the training for .Net through mails like this... I am very happy about that and I am eager to learn the .net course through mails like this.....please send me the material of .net. and Please let me know all the latest updates of this technology |
deepu_s said:
|
8)I am very happy. Can u please send me this .Net material thru mail. ThanQ. |
dheeraj said:
| Thanx a lot |
ameet said:
|
Its really very good to hear that you are going to give the training for .Net through mails like this... I am very happy about that and I am eager to learn the .net course through mails like this.....please send me the material of .net. and Please let me know all the latest updates of this technology |
Phil said:
| Thanx a lot |
muthukumar.k said:
| i am very excited,can u pls send me this material? |
naren reddy said:
| nice to c this site,plz mail me this material |
thirupathi rao said:
| I wants to learn .Net |
rajagopal reddy said:
|
Can u please send me this .Net material thru mail. ThanQ. |
suresh alaparthi said:
| i learnt a lot through this material.plz send .net materials through e-mail. thanks a lot |
Kumar0408 said:
|
Can u please send me this .Net material thru mail. TQ |
msuzzi said:
| Please, can you mail me some material ? |
shrykanth said:
| its gud but how to download |
arunas said:
| how to this materials...it is good... |
Donno said:
| Please Send Me The Course |
NidhiAsr said:
| Please send me the material of Vb.NET. Thanks |
mohnish dongre said:
| it is very good to hear that you send the .net material thru email. Thats great[b][/b] ;) ;) |
V.Sneha said:
| Good Job :) |
shaima_hajira said:

|
hi can u plz send me .net material thru mail as quickly as possible thanx |
Chuck Konkol said:
| Please send vb.net 2005 tutorials |
arun.s said:
|
hi can u plz send me .net material thru mail as quickly as possible hi can u plz send me .net material thru mail as quickly as possible thanx |
Soundararajan.O said:
| It is really good for learners ;D ;D |
anirva said:

| hi i am not able find the trianing link .pls mail the link |
diaak said:

|
i am very happy , and eager to get it please hurry sending to me thanks a looooooot |
morf2010 said:

|
Please Send Me The Course this is a very good material pls |
srini_lsm said:

|
Can u please send me this .Net material thru mail. ThanQ. |
netra1978 said:

| Please tell me from where i can register myself for the Said course. Its nice and seems to be really helpful for me |
abdulrmohd said:

|
Please Send Me The Course this is a very good material pls please. |
balaswamy said:

|
I am very happy. Can u please send me this .Net material thru mail. ThanQ. |
HenryBStinson said:
|
http://www.exforsys.com/tutorials/vb.net-2005.html -- to see the list of course tutorials. The page you are on now is just the table of contents. |
samar_singh said:

| Please send me the material of Vb.NET. Thanks |
OSAM3202 said:

|
That's wonderfull can you please send me the training materials by mail. Thanks & Regards OSAM |
MITESHSOLANKI said:

|
hi can u plz send me .net material thru mail as quickly as possible |
ggautam said:

| Please send me these materials thro mail as soon as possible |
tmasunda said:

| Please send me the vb.net training material through mail |
kashi said:

|
Hi, Its really wonderful. i shall be very thankful, if u could email this material. thanks |
Nisar said:
| Its good outline here. |
yoiyoi said:

| can you please send me the training materials to my mail..?thanks |
krishnam said:

|
Please send me the material through mail. Thank you so much |
Muths said:
| Thanx in advance for taking class of vb.net. |
kimdung said:

|
Can you send me these materials through mail. Thank you so much |
Harikrishnan said:

| Its really wonderful. i shall be very thankful, if u could email this material. thanks |
noname2000 said:

|
Please send me the material through mail. Thank you so much |
vanithamanir said:

| it is very useful and send me the materials thru email.... |
shehug said:

| i like using vb its exciting |
davidct said:

| Please would you send me the materials for this tutorial. Thank you in advance |
rajesh@desire said:

| I am really thankful to u for showing the path and respective information in simple and tasteful manner. |
Davey Musslewhite said:
| Everyone's very happy on this site! |
manjushab said:

| Please send me the material |
pbids said:
| I'm really excited about this! |
alokrai said:

|
Please send me the material through mail. Thank you so much |
IrinaC said:

|
Please send me the VB.Net course material by e-mail. Thanks. |
SOLWAZI said:

|
Please send me the VB.Net course material by e-mail. Thanks. |
Esther Waheire said:

|
Hi, Kindly send me the VB.NET free training via email? I shall highly appreciate. Thanks alot. |
suharyadi said:

|
please send me VB.NET 2005 Free Training to my email or tell me how to down load this material thanks |
Marwa ElBadry said:

|
Hi, It's really wonderful,Would you please send me the VB.NET free training via email? Thanks |
Baba Kalyani said:
|
Hi The content is really worth going through. It would be very kind of you to e-mail me this material. It would be of immense help. Thank you |
kapsne_143 said:

| please let me know the online free training of the VB.Net |
ricardo said:

|
can the vb.net training be sent to me via email or how to download it,if so can some one please send it? thanking you in advance |
rattan said:
|
please can you send me the information on teh visual basic programming.how we can easily do the programming in vb so please send me some infomation on this thnks |
sarajicoh said:

| Please would you send me the materials for this tutorial. Thank you in advance |
syed Hassan said:
|
I was really in need of such tutorials atlast i found them from this website. i once again thanks for your kind services. I hope to get e-training through email and some more example websites on Dot Net . kindly send me mails on my id syedmujeebul@gmail.com Best wishes Hassan |
ravish mawal said:
|
I am really thankful to u for showing the path and respective information in simple and tasteful manner.and i require this material if it is really absolutely freee now this time i require the info about toolbox . please send this material to me by e-mail. thanks |
Jiten Keswani said:
| i think tht ur materials cn help me alt cn u plz send it me as soon as possible |
vin936 said:

| can u plz send vb.net materials on my id |
Syamkumard said:

|
hi, I am very happy when i here the news that you are sending free vb.net tutorials through mail. Please send me the material for this tutorial.Thank you |
waseemkhan_jss said:

| Can u mail the material, please. |
salemsss777 said:

| Could you email me the VB.NET 2005 Training material |
Emmanuel Simon said:
|
I deeply appreciate your kind gesture and quest to help us in our programming carrier. For me, this is an answer to my cravings in programming; particularly as it has to do with the recent version (VB.Net 2005). You can be sure that no one appreciates this than I do. I am new in the field and without hesitation i passionately request to have the training materials sent to my mail. Thanks so much for this benevolent act. |
nadeemshaikh said:

|
Can i have the copy as well Thanks Nadeem |
resham said:

| Please email me the VB.NET 2005 Training material |
shaburuddin shaik said:
|
Dear sir/madam, This shabeeruddin shaik,i am very happy you are giving free training on .net. please let me know the online free training of the VB.Net,Please would you send me the materials by mail. Thank you in advance shaburuddin | Dynamics Ax consultant | B2B softech | hyd. |
diyin said:

| Can you please send me the material. thx |
quamrul said:

|
Is there any way I can download the training materials (vb.net)? Thanks.... |
vinodkona said:
| i am happy u are giving good guidence will u please send vb.net material |
harshal_007 said:

| how we can download? |
mahesh.GVS said:
|
I am very happy about that and I am eager to learn the .net course through mails like this.... .please send me the material of .net. and Please let me know all the latest updates of this technology send me the materials |
ambani said:

| plz send the copy of that |
Sergio said:
| Is really interesting |
bhawna mehta said:
| i m very excited & will be very grateful to u |
Sunfox said:
| Hi thanks for your help in this regard. Its really wonderful |
Ibbi said:
| Thanks for this Training of Free |
SENTHILVIDHUSH said:
|
REALLY NICE . THANKS FOR HELPING ME WITH THIS TRAINING ! |
Jyoti Supekar said:
| I just love to make new ideas and i like to impliment it in creating new software.......thanks for providing such new path to learn .NET |
Rajan Chettri said:
| This is an opportunity for me to learn visual studio.net |
Nataraj Patil said:
| Thanks for this Training of Free its Fentastic |
Aravindan_JVIT said:

| This is a wonderful materail for those who want to learn or gain konowledge abt .net so please send me VB.NET,C#,ASP.NET material by mail and thank u very much for providing free training on .Net |
kishor11 said:
|
Thanks for this Training of Free |
manjarik said:
|
its very nice as its very useful for many people. Thanks a lot for this free training. |
Cheah said:
| Hi, this is so useful to all who wants to learn programming, can you send this to me please? |
Asoka Gamini Amarasena said:
| Yes...Very Importent Your E-Book for begineear |
chandra_kanth said:
| This is an opportunity for me to learn visual studio.net |
'Denon` said:
| good place to learn |
Soumya C P said:
| Hi, I'm very new to .NET. This material guided me to learn the .NET concepts in a easy and interesting way. |
mahesh1981 said:
| Hi, I'm very new to .NET. This material guided me to learn the .NET concepts in a easy and interesting way. |
achutrao.ade@gm said:

| I'm very new to .NET This material guided me to learn the .NET concepts in a easy and interesting way. |
sachinwarke said:
| i m very new to .net but i want to cover all points in .net technology which are essential |
Hassanrazvi9@yahoo.co.in said:
| This is an opportunity for me to learn through the mail great thanks |
Hassanrazvi9@yahoo.co.in said:
|
its very nice as its very useful for many people. Thanks a lot for this free training. This is an opportunity for me to learn visual Basic .net Thanks for this Training of Free its Fentastic |
bakri said:

| How can I become more successful in VB.Net |
arya.anggara.ti.2006 said:
| i want to try this software because i think this is can make a good application for office |
Walter Arboleda said:
|
Thanks for create this important site about .NET. I am using it in a Visual Basic .NET Course in a University here in Medellin Colombia. Bye Bye |
.sneha said:
|
I was really in need of such tutorials atlast i found them from this website. I hope to get e-training through email and some more example websites on Dot Net. kuberkar.sneha@gmail.com |
emessoft said:

| good place to learn |
Amit Kalra said:
| Sir/Madam, actually i m beginner in the softtware language and i m wishing to learn atleast one software language in precise way and i did my graduation in electronics and communication. Even i selected one programming language that is online agricultural management system using Dot Net. And i request u to send me the available material on this with applications,usages,merits and more for future benefits.... I shall be great thank of you if u send this soon.in my e-mail addresses amit-mtech-cse@hotmail.com and amit_phg@yahoo.co.in .. |
Wendy Lim said:
| I am very surprise that there is such a free training material and I'm eager to learn the .net course through mails like this.....please send me the material of .net. and Please let me know all the latest updates and training of this technology in future. |
abba garba said:
| iam highly greatefull if i persue this tutorial and also i want show my intrerest about this very powerfull programing language for developing web sites. |
hendry said:

| I'm very new to .NET This material guided me to learn the .NET concepts in a easy and interesting way. thx.. |
fast Arrow said:

| Hi , who can i have this training it is seems very useful , i have problem accessing to this (free training) |
AYUSH MITTAL said:
|
I deeply appreciate your kind gesture and quest to help us in our programming carrier. For me, this is an answer to my cravings in programming; particularly as it has to do with the recent version (VB.Net 2005). You can be sure that no one appreciates this than I do. I am new in the field and without hesitation i passionately request to have the training materials sent to my mail. |
billybob said:
| i am doing a project and i am lookign for tuttorials and when i clicked on ths page for help you give me conversation |
selvalakshmi said:
|
Hi It is very very useful to my carrier thank you |
jayashree shetty said:
| Though i am new to this field it was really a great experience studying computer languages . i found it as a great opportunity to improve my knowledge through ur free tutorials as i couldn't afford to buy these books |
Bilal said:
| hi friends, Although I m trying to get the real grip on vb.net but I thought I can not do this without this online free training thanks help for me who in studing part time |
panishree said:
| its a great way to learn a language with great ease it helped me a lot to get a command over it |
Asghar Ali said:
| Its a great way and efforts to help other. Definatly you will get reards of your hardwork. |
luvkofries said:
| To all the staff of this website.. praise to all of you guys. I really appreciate this "free" on line tutorials. The best things in life are free! what goes around, comes around. im not yet a programmer in vb.net but with your help, i will be, soon. thanks for sharing your knowledge. This would be my stepping stone. good luck to us! |
Akhilesh2000 said:
|
Dear sir/madam and To all the staff of this website.. praise to all of you guys. I really appreciate this "free" on line tutorials. The best things in life are free! what goes around, comes around. im not yet a programmer in vb.net but with your help, i will be, soon. thanks for sharing your knowledge. This would be my stepping stone. good luck to us! |
Sulaiman said:
| good site for learning. |
Anup Nair said:
| One of best way to learn the leading technology |
hendrikbez said:

| I want to make pages in word to print out so that I can work from there, but is is confusing, how can I get all the pages that is in order with the Visual Basic .NET 2005 Training front page. |
v.krishna murthy said:
| one of the best way tolearn the technology |
srijanraj said:
|
Dear sir/madam and To all the staff of this website.. praise to all of you guys. I really appreciate this "free" on line tutorials. thanks you all |
djdejay said:
|
Sir/Madam, Wow.This is cool, please help me to have a copy of this vb.net tutorial i need this badly... I'm very interested with this tutorials or you can email me at corenai3@yahoo.com....thanks |
HemaChinni said:
| The Contents r xlent n wud definitely b helpful if we go thru the actual lessons but how can we read the material. I am a beginner in this field and wub b immensely pleased and that wud be of a great help for me if u kindly send the link to the lessons or provide the way to learn the subject. |
Rawan said:
|
Hi, i am so happy to find this site, and i am really interested to start learning the VB.NET. so please send me the material to my email , it is meme.amro@hotmail.com |
Samdinakar said:
| Hello ..dear management of this site ....ultimately this site very usefull for who want to improve their knowledge.....very thank full to all working with this site.........samdinakar@gmail.com |
knightking said:
|
how do i download this? |
Ankur Jariwala said:
|
Hi, I am very glad to know that this kind of free online training session is going on and i need that course material and i m glad if i got it. thanks in advance. |
1 said:
|
Hi, this is my first time to learn about vb net, |
Parimal Rathod said:
| i would also like to be a member of your team. Hence prepare me by sending the tutorial through mail. |
MANJU said:
| Very good website |
Amit Singh said:
|
This is a very good site for freshers developers. |
Vidya Prakash said:
| Thanks a lot. Can u pls mail me the tutorial? |
0 said:
| Im so glad finding this site. Thanks in advance |
uly said:
| can you please help me how to create daily time record system using vb.net 2005 or can you please send me a code.please...thanks! |
Sponsored Links
