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 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 →