How to: Define a Namespace in VB.NET

A namespace designates a collection of programming elements, organized and classed for grouping operations and easy access. At the namespace level, the programming elements include: Classes of objects […]; Structures […]; Modules […]; Interfaces […]; Delegates […]; Enumeration […]; Other namespaces. Namespaces can be organized, aggregated into an assembly […]. An assembly can contain multiple […]

Read More →
How to: Define and Use a Structure in VB.NET

The structure is a programming entity similar to classes […]. The difference is that structures are value types while classes of objects are reference types.A value type variable is declared and the space according to said data type is allocated at the execution time. Value type variable is destroyed when leaving the block where it […]

Read More →
How to: Implement Interfaces in VB.NET

Implementing an interface in VB.NET is done by specification Implements. Interfaces can be implemented by classes […] and structures […]. A class or structure can implement one or more interfaces, separated by the operator , in VB.NET. List of interfaces implemented by class/structure is given by their associated names at defining time […]. In below […]

Read More →
How to: Define Interfaces in VB.NET

The interface is a set of definitions of properties, methods and events. Unlike classes […], interfaces do not contain the implementation. Interfaces are implemented […] by classes, but are defined as separate entities. A class that implement an interface must implement all elements defined in that interface. Defining a VB.NET interface is achieved using the […]

Read More →
How to: Define Events in Classes Built in VB.NET

Declaring events in a class built in VB.NET is done using Event specification. Defining event involves assigning the name and arguments providing.Because an event is included in a class, the objects defined on that class may send messages related to event – raise. Transmission is accomplished by specification RaiseEvent. Assigning the event to procedure for […]

Read More →
How to: Define Delegates in VB.NET

The delegate is a pointer that allows the call of a function indirectly through its memory address. The delegate is used to call methods of other objects. It is similar to the function pointer used in other programming languages. The difference is that the delegate is a reference type on System.Delegate class. Delegates are useful […]

Read More →
How to: Identify Characteristics of Events in VB.NET

The event is a message sent by an object and announces the application of production a fact.Events are implemented using delegates […].For example, clicking a command button in a graphical interface causes the appearance of the event Click. The event is treated by a procedure. Events are declared in the classes, structures, modules and interfaces […]

Read More →
How to: Define a Class in VB.NET

Class is an abstract representation of an entity. The object is a concrete manifestation of a class. The object is the structure that contains data and methods of handling data. An object contains data through fields and properties:

Read More →
How to: Define and Access a Variable in VB.NET

A variable corresponds to a location of memory, which stores values when performing calculations.Variables are used in calculations, comparisons. They have established a name in the source program, and accessing the value stored in memory location is achieved by variable name. In VB.NET, a variable has an associated data type […], without being required to […]

Read More →
How to: Create a VB.NET Solution with Visual Studio 2008

A software application developed in VB.NET language is built into a VB.NET solution.A VB.NET solution consists of one or more projects.A project VB.NET generates one or more fundamental installation units exe, dll.An installation unit is generated from one or more source files. A source file contains the definition and implementation of classes of objects, structures, […]

Read More →