RSS Feed

VB.NET Tutorials

vb net tutorials1 VB.NET Tutorials

A tutorial is based on HTTPModule for Digest Authentication in VB.Net. The coolest thing about using an HttpModule for either DIGEST or BASIC Authentication against one’s own Data Store is that as long as the HttpModule is configured at all the destination sites/applications and as long as each location has access to the same database information ( The “Users” table), the user can authenticate once and travel anywhere he/she wants without having to ever see a logon dialog again! Digest, as most people are aware, is much more secure than BASIC because there is no cookie and the password information is never sent “in the clear.”

Using OpenGL with VB.NET Tutorial

This is a tutorial that shows how to write applications with OpenGL API with VB.Net programming language.

First of all, the user needs a copy of the CsGL library, which the team of developers that Lloyd Dupont heads wrote. CsGL is not another OpenGL implementation, but a set of wrappers for the OpenGL DLL that glue C# or VB.NET applications to OpenGL properly.

Form Layout in VB.NET Tutorial

This is a tutorial that shows how to design fairly complicated forms that can resize with anchors, docks, and panels with a dash of code.

Start to design the new experimental application’s user interface shown below -’An expense tracker’ (The ‘Guinea pig’ for learning dot net technology).

Overloading Operators in VB.NET Tutorial

This is a tutorial that shows how to write overloaded operators in VB.Net.

A few basic guidelines to be followed for overloading operators to either get past the compiler or avoid confusing people: Do not change an operator’s semantic meaning, The result of an operator should be intuitive, Make certain overloaded operators are shared methods, Overload operators in pairs if a symmetric pair exists. These are the pairs of operators: = and <>; > and <; >= and <=; and IsTrue and IsFalse.

Delegates in VB.NET Tutorial

This is a tutorial that helps to understand the phenomenon of Delegates in VB.Net.

A delegate can be defined as a type safe function pointer. It encapsulates the function’s memory address in a code. Whenever someone creates or uses an event in code, he/she is using a delegate. When the event is thrown, the framework examines the delegate behind the event and then calls the function that the delegate points to. As will be seen later, delegates can be combined to form groups of functions that can be called together.

Programming with Partial Classes in VB.NET Tutorial

This is a tutorial that shows how to use and program Partial Classes in VB.Net.

Partial classes, like any new construct, come with rules for using them. The help function serves this purpose. Included is a summarized list of the most notable partial class rules to support Listing 1, which demonstrates two partial classes.

Creating a Windows Service in VB.NET Tutorial

This is a tutorial that shows how to create window service in VB.Net.

A Windows service’s core function is to run an application in the background. There are few things that make them different from a Windows application. A Windows service starts much before any user logs into the system (if it has been setup to start at boot up process).

Watching Folder Activity in VB.NET Tutorial

This is a tutorial that shows how to implement the FileSystemWatcher class using Microsoft Visual Basic.Net

This tutorial shows how to write an application that constantly monitors a folder and raises events when there is any activity in that folder. The Microsoft .NET Framework has introduced classes like System.IO and System.Diagnostics, which contain the FileSystemWatcher class. This class can raise events when a file is created, renamed, updated, or deleted from the specified folder.

FTP Client with VB.NET Tutorial

This is a tutorial that shows how to write an FTP client in VB.Net

The File Transfer Protocol (FTP) is a TCP protocol that RFC (Request for Comment) 959 describes. RFCs are basically white papers and almost every RFC that one may search for is posted somewhere on the Internet.

Implementing The Google Web Service In VB.NET Tutorial

This is a tutorial that shows how to implement Google Web Services in VB.Net.

A web service is one of the greatest technologies developed in the Internet world, which can be used to connect businesses and clients in a standardized method using XML (Extensible Markup Language), SOAP (Simple Object Access Protocol), WSDL (Web Services Description Language), and UDDI (Universal Description, Discovery, and Integration).

Respond to “VB.NET Tutorials”
  1. Ashok says:

    i need the window application program in vb.net

Leave a Reply

Post your comments and questions below, but please follow our commenting guidelines.


Path: Home > Tutorials > VB.NET Tutorials