Archive for category VB.NET

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 the rest of this entry »

, , , , , ,

1 Comment

How to: Use Data Types to Define Variables in VB.NET

Data types associated to the variables establish the content of data and size of areas used to store data. In VB.NET, the following data types are available for software developer:
Read the rest of this entry »

, , , ,

1 Comment

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.
Read the rest of this entry »

, , , , , , , , ,

No Comments

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.

Read the rest of this entry »

, , , , , ,

No Comments