Exforsys.com
 
Home Tutorials VB.NET 2005
 

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 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
Tutorial Index

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



Read Next: The .NET Framework Architecture 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.
July 7, 2005, 2:50 pm

Logesh said:

  Can you please send me this material.

Thanks
Logesh
September 23, 2005, 7:49 pm

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
October 25, 2005, 9:28 am

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
October 25, 2005, 9:31 am

deepu_s said:

  8)I am very happy. Can u please send me this .Net material thru mail.<br />
ThanQ.
June 7, 2006, 11:51 am

dheeraj said:

  Thanx a lot
June 8, 2006, 3:57 am

ameet said:

  Its really very good to hear that you are going to give the training for .Net through mails like this...<br />
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.<br />
and Please let me know all the latest updates of this technology
June 8, 2006, 9:13 am

Phil said:

  Thanx a lot
June 11, 2006, 2:15 pm

muthukumar.k said:

  i am very excited,can u pls send me this material?
June 12, 2006, 2:42 am

naren reddy said:

  nice to c this site,plz mail me this material
June 13, 2006, 3:03 am

thirupathi rao said:

  I wants to learn .Net
June 13, 2006, 7:42 am

rajagopal reddy said:

  Can u please send me this .Net material thru mail.<br />
ThanQ.
June 16, 2006, 4:59 am

suresh alaparthi said:

  i learnt a lot through this material.plz send .net materials through e-mail. thanks a lot
June 17, 2006, 12:31 am

Kumar0408 said:

  Can u please send me this .Net material thru mail.<br />
TQ
June 23, 2006, 3:44 am

msuzzi said:

  Please, can you mail me some material ?
June 29, 2006, 4:40 am

shrykanth said:

  its gud but how to download
June 30, 2006, 8:37 am

arunas said:

  how to this materials...it is good...
July 16, 2006, 12:34 am

Donno said:

  Please Send Me The Course
July 16, 2006, 10:44 am

NidhiAsr said:

  Please send me the material of Vb.NET. Thanks
July 18, 2006, 10:47 am

mohnish dongre said:

  it is very good to hear that you send the .net material thru email. Thats great[b][/b] ;) ;)
August 2, 2006, 2:36 am

V.Sneha said:

  Good Job :)
August 16, 2006, 1:57 pm

shaima_hajira said:

  hi
can u plz send me .net material thru mail as quickly as possible
thanx
August 22, 2006, 5:11 am

Chuck Konkol said:

  Please send vb.net 2005 tutorials
August 27, 2006, 3:08 pm

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
August 30, 2006, 10:00 am

Soundararajan.O said:

  It is really good for learners ;D ;D
September 12, 2006, 1:11 am

anirva said:

  hi i am not able find the trianing link .pls mail the link
October 8, 2006, 3:02 pm

diaak said:

  i am very happy , and eager to get it

please hurry sending to me

thanks a looooooot
November 8, 2006, 6:02 am

morf2010 said:

  Please Send Me The Course
this is a very good material pls
November 11, 2006, 8:52 pm

srini_lsm said:

  Can u please send me this .Net material thru mail.
ThanQ.
November 15, 2006, 12:09 am

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
November 16, 2006, 3:29 am

abdulrmohd said:

  Please Send Me The Course
this is a very good material pls
please.
November 18, 2006, 3:52 am

balaswamy said:

  I am very happy. Can u please send me this .Net material thru mail.
ThanQ.
November 27, 2006, 5:57 am

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.
November 27, 2006, 4:27 pm

samar_singh said:

  Please send me the material of Vb.NET. Thanks
November 28, 2006, 7:07 am

OSAM3202 said:

  That's wonderfull can you please send me the training materials by mail.
Thanks & Regards
OSAM
November 29, 2006, 2:39 am

MITESHSOLANKI said:

  hi
can u plz send me .net material thru mail as quickly as possible
December 1, 2006, 8:46 pm

ggautam said:

  Please send me these materials thro mail as soon as possible
December 4, 2006, 2:40 am

tmasunda said:

  Please send me the vb.net training material through mail
December 5, 2006, 9:33 am

kashi said:

  Hi,
Its really wonderful. i shall be very thankful, if u could email this material. thanks
December 12, 2006, 2:14 am

Nisar said:

  Its good outline here.
December 14, 2006, 9:07 am

yoiyoi said:

  can you please send me the training materials to my mail..?thanks
December 14, 2006, 9:38 pm

krishnam said:

  Please send me the material through mail.
Thank you so much
December 16, 2006, 1:41 am

Muths said:

  Thanx in advance for taking class of vb.net.
December 19, 2006, 5:22 am

kimdung said:

  Can you send me these materials through mail.
Thank you so much
December 23, 2006, 9:09 pm

Harikrishnan said:

  Its really wonderful. i shall be very thankful, if u could email this material. thanks
December 24, 2006, 2:13 am

noname2000 said:

  Please send me the material through mail.
Thank you so much
December 26, 2006, 4:03 am

vanithamanir said:

  it is very useful and send me the materials thru email....
December 26, 2006, 12:38 pm

shehug said:

  i like using vb its exciting
January 1, 2007, 8:15 am

davidct said:

  Please would you send me the materials for this tutorial. Thank you in advance
January 1, 2007, 12:52 pm

rajesh@desire said:

  I am really thankful to u for showing the path and respective information in simple and tasteful manner.
January 2, 2007, 2:23 am

Davey Musslewhite said:

  Everyone's very happy on this site!
January 2, 2007, 10:44 am

manjushab said:

  Please send me the material
January 3, 2007, 2:12 am

pbids said:

  I'm really excited about this!
January 3, 2007, 2:22 am

alokrai said:

  Please send me the material through mail.
Thank you so much
January 3, 2007, 2:26 am

IrinaC said:

  Please send me the VB.Net course material by e-mail.

Thanks.
January 4, 2007, 11:21 am

SOLWAZI said:

  Please send me the VB.Net course material by e-mail.

Thanks.
January 8, 2007, 2:55 am

Esther Waheire said:

  Hi,

Kindly send me the VB.NET free training via email? I shall highly appreciate.

Thanks alot.
January 8, 2007, 10:37 am

suharyadi said:

  please send me VB.NET 2005 Free Training to my email or tell me how to down load this material

thanks
January 12, 2007, 8:31 am

Marwa ElBadry said:

  Hi,

It's really wonderful,Would you please send me the VB.NET free training via email?

Thanks
January 14, 2007, 4:11 am

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
January 14, 2007, 6:06 am

kapsne_143 said:

  please let me know the online free training of the VB.Net
January 15, 2007, 6:17 am

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
January 17, 2007, 4:21 am

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
January 18, 2007, 5:11 pm

sarajicoh said:

  Please would you send me the materials for this tutorial. Thank you in advance
January 21, 2007, 1:56 am

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
January 22, 2007, 12:57 am

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
January 25, 2007, 11:05 am

Jiten Keswani said:

  i think tht ur materials cn help me alt cn u plz send it me as soon as possible
January 26, 2007, 11:20 pm

vin936 said:

  can u plz send vb.net materials on my id
January 29, 2007, 5:18 am

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
January 31, 2007, 1:23 am

waseemkhan_jss said:

  Can u mail the material, please.
January 31, 2007, 4:28 am

salemsss777 said:

  Could you email me the VB.NET 2005 Training material
January 31, 2007, 4:43 pm

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.
February 1, 2007, 12:50 am

nadeemshaikh said:

  Can i have the copy as well


Thanks
Nadeem
February 1, 2007, 3:15 am

resham said:

  Please email me the VB.NET 2005 Training material
February 4, 2007, 6:54 am

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.
February 5, 2007, 3:04 am

diyin said:

  Can you please send me the material. thx
February 6, 2007, 3:02 am

quamrul said:

  Is there any way I can download the training materials (vb.net)?


Thanks....
February 8, 2007, 12:23 pm

vinodkona said:

  i am happy u are giving good guidence will u please send vb.net material
February 12, 2007, 10:04 pm

harshal_007 said:

  how we can download?
February 13, 2007, 3:18 am

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
February 13, 2007, 1:38 pm

ambani said:

  plz send the copy of that
February 15, 2007, 2:34 am

Sergio said:

  Is really interesting
February 16, 2007, 5:32 pm

bhawna mehta said:

  i m very excited & will be very grateful to u
February 20, 2007, 5:14 am

Sunfox said:

  Hi thanks for your help in this regard. Its really wonderful
March 28, 2007, 7:38 pm

Ibbi said:

  Thanks for this Training of Free
March 28, 2007, 10:09 pm

SENTHILVIDHUSH said:

  REALLY NICE . THANKS FOR HELPING ME WITH THIS TRAINING !
April 17, 2007, 5:59 am

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
April 29, 2007, 1:11 am

Rajan Chettri said:

  This is an opportunity for me to learn visual studio.net
April 29, 2007, 11:56 pm

Nataraj Patil said:

  Thanks for this Training of Free its Fentastic
May 2, 2007, 2:14 am

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
May 22, 2007, 2:02 am

kishor11 said:

  Thanks for this Training of Free
May 22, 2007, 6:46 am

manjarik said:

  its very nice as its very useful for many people. Thanks a lot for this free training.
May 24, 2007, 3:10 am

Cheah said:

  Hi, this is so useful to all who wants to learn programming, can you send this to me please?
May 24, 2007, 11:09 am

Asoka Gamini Amarasena said:

  Yes...Very Importent Your E-Book for begineear
May 27, 2007, 8:22 am

chandra_kanth said:

  This is an opportunity for me to learn visual studio.net
June 6, 2007, 8:06 am

'Denon` said:

  good place to learn
June 15, 2007, 1:55 am

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.
June 28, 2007, 10:58 am

mahesh1981 said:

  Hi, I'm very new to .NET. This material guided me to learn the .NET concepts in a easy and interesting way.
June 30, 2007, 3:15 am

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.
June 30, 2007, 6:51 am

sachinwarke said:

  i m very new to .net but i want to cover all points in .net technology which are essential
July 5, 2007, 12:46 am

Hassanrazvi9@yahoo.co.in said:

  This is an opportunity for me to learn through the mail great thanks
July 9, 2007, 12:32 am

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


July 9, 2007, 12:35 am

bakri said:

  How can I become more successful in VB.Net
July 10, 2007, 1:43 am

arya.anggara.ti.2006 said:

  i want to try this software because i think this is can make a good application for office
July 13, 2007, 11:48 pm

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

July 20, 2007, 3:47 am

.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
July 29, 2007, 3:08 am

emessoft said:

  good place to learn
August 7, 2007, 7:32 am

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 ..
August 17, 2007, 11:47 am

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.
August 23, 2007, 8:46 pm

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.
August 25, 2007, 5:39 pm

hendry said:

  I'm very new to .NET This material guided me to learn the .NET concepts in a easy and interesting way. thx..
August 31, 2007, 3:13 am

fast Arrow said:

  Hi , who can i have this training it is seems very useful , i have problem accessing to this (free training)
September 13, 2007, 3:32 pm

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.

September 18, 2007, 1:33 am

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
September 20, 2007, 10:28 am

selvalakshmi said:

  Hi
It is very very useful to my carrier
thank you
September 21, 2007, 5:56 am

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
October 1, 2007, 3:32 am

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
October 3, 2007, 11:06 pm

panishree said:

  its a great way to learn a language with great ease it helped me a lot to get a command over it
October 4, 2007, 11:19 am

Asghar Ali said:

  Its a great way and efforts to help other. Definatly you will get reards of your hardwork.
October 5, 2007, 5:40 am

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!
October 13, 2007, 8:53 am

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!
October 18, 2007, 3:12 am

Sulaiman said:

  good site for learning.
November 8, 2007, 8:02 am

Anup Nair said:

  One of best way to learn the leading technology
November 11, 2007, 11:50 pm

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.
November 12, 2007, 12:44 am

v.krishna murthy said:

  one of the best way tolearn the technology
November 29, 2007, 6:50 am

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
December 21, 2007, 7:49 am

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
February 4, 2008, 11:57 pm

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.
February 5, 2008, 6:44 am

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
April 3, 2008, 8:21 pm

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
June 20, 2008, 11:59 pm

knightking said:

  how do i download this?
August 1, 2008, 3:00 am

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.
August 11, 2008, 9:53 am

1 said:

  Hi,

this is my first time to learn about vb net,
November 6, 2008, 12:40 am

Parimal Rathod said:

  i would also like to be a member of your team. Hence prepare me by sending the tutorial through mail.
December 9, 2008, 3:19 am

MANJU said:

  Very good website
December 9, 2008, 6:32 am

Amit Singh said:

 
This is a very good site for freshers developers.
January 2, 2009, 2:30 am

Vidya Prakash said:

  Thanks a lot. Can u pls mail me the tutorial?
January 20, 2009, 1:52 am

0 said:

  Im so glad finding this site. Thanks in advance
January 26, 2009, 2:00 am

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!
February 25, 2009, 3:40 am

Post Your Comment:

Members Please Login
Your Name:*
e-mail ID:(required for notification)*
Image Verification: 
 
 Subscribe    

Sponsored Links

 

Subscribe via RSS


Get Daily Updates via Subscribe to Exforsys Free Training via email


Get Latest Free Training Updates delivered directly to your Inbox...

Enter your email address:


 

Subscribe to Exforsys Free Training via RSS
 

 
Partners -  Privacy and Legal Policy -  Site News -  Contact   Sitemap  

Copyright © 2000 - 2010 exforsys.com. All Rights Reserved

Page copy protected against web site content infringement by Copyscape