VKinfotek Inc.
  • Us
    About Us
    Contact Us
  • FAQs
  • Ready Software
    Ready ERP ASP Core Software for Azure Cloud
    Ready Web ERP Software
    Ready ASP.Net Azure Software
    Ready C# SQL Server Accounting Software
    Ready ASP.Net MVC and EF Software
First slide
Earn $100/hour in USA! Click Here

Constructors in Visual Basic.Net

Constructors are special methods that provide control over the initialization of Objects.

Any programmer who has worked on OOPs programming will know that there are many situations in which objects have to be initialized, before use.

Where do we come across the need for initialization of Objects? The common initialization tasks include opening of files, connecting to a database and reading the values of registry keys.

And to use all member variables and services of the class, we need to instantiate the Class.

A constructor is used in a database application to instantiate the class. One scenario in which we use the constructor is in the business layer.

Assume that we are developing a class (tran class) for handling the transactions in a database application. The constructor is used in the Tran Class, to instantiate the class.

The below given diagram shows where the constructor fits in a database application.

If you would like to know all the steps involved in creating such a class with multiple constructors go through the book titled : Database programming using visual basic, c# (c sharp) sql server.

A constructor is nothing more than a subroutine named 'New'. When the class is instantiated, New (constructor) is fired. We can place the startup code just like we do in Form_Load in windows applications and Page_Load in web applications.

The life of an object ends after it goes out of scope or is set to Nothing and is released by the .NET Framework. Visual Basic 2005 uses procedure called destructors to control the release of system resources. Constructors and destructors together support the creation and destruction of objects.

There are two types of constructors.
  • Shared constructors
  • Instance constructors

Implementation of Shared Constructors

Shared constructors are used to initialize the shared variables of a type.

Shared variables are created using the Shared keyword and store values that can be shared by all the instances of a class. Shared constructors have an implicit public access. A shared constructor will not run more than once during a single execution of a program.

The following example is an illustration of the shared constructor.

Public Class class1  
	Shared x As Integer
	
	Shared Sub New()
          x=0  
	End Sub
End Class

We can increment the value of a shared variable in an instance constructor to keep track of the number of instances created in a class. The following code illustrates the use of a shared variable within an instance constructor.

Sub New
x=x+1
MessageBox.Show("Number of instances are:" &i)
End Sub




how are constructors used develop azure, mvc, web, and asp core applications To test how shared constructor works, create a form and name it as Form1 and place a button Button1.

Public Class Form1 
Inherits System.windows.Forms.Form

Private Sub Button1_Click(ByVal sender As System.Object, Byval e As System.EvenArgs) Handles  Button1.Click

Dim c1 As class1 = New class1
Dim c2 As class1 = New class1
End Sub
End Class






The above code illustrates the use of a shared variable within an instance constructor to keep track of the number of instances of a class.

Instance Constructor in Visual Basic 2005

Instance constructors are used to initialize variables that are declared with Dim, Public, Private, Friend, Protected, and Protected Friend keywords. Write the following code in the class module.

Public Class ItemClass
 Private ItemCode As String
 Private ItemName As String
 Private ItemDescription As String
 Private ItemCategory As String
 Private ItemPrice As Single
 Private ItemUnit As String

 Public Sub New(ByVal Category As string)
	ItemCategory = Category
 End Sub

End Class

In the Instance Constructor, the statement, ItemCategory = Category assigns Item Category to class variable ItemCategory.

To test how Instance constructor works, create a form and name it as Form1 and place a button Button1.

Public Class Form1 
Inherits System.windows.Forms.Form

Private Sub Button1_Click(ByVal sender As System.Object, Byval e As System.EvenArgs) Handles  Button1.Click
Dim objItem As New ItemClass("I")
End Sub
End Class

This is how we can instantiate the Item class which in turn calls the instance constructor.

Summary

Note that we have to use Constructors to initialize Objects. This is the procedure provided in Visual Basic.Net to initialize Objects. This helps in having more control over initialization of Objects.

Visual Basic Articles
  • Connection string for connecting to data sources
  • Database tasks using Visual basic.net 2005 Strings
  • Constants in Visual basic 2005
  • Visual basic .net Enumerations
  • Visual basic 2005 Formatting Numbers
  • Type conversion in Visual basic .net
  • Visual basic 2005 Arrays
  • Visual basic 2005 Variables
  • classes in visual basic.net 2005
People also viewed: cover image of book develop erp software using asp core and deploy to Azure Create your own ERP Software using ASP Core>>
cover image of azure cloud book Create your own Azure SOM Software>>
cover image of asp.net book Create your own ERP Software using ASP .Net and SQL>>
cover image of foundation database programming book Create your own Accounting Software using C# >>
cover image of entity framework book Create your own SOM using Entity Framework MVC >>
Azure Q & A
Azure Platform
Grid-View
GridView CommandField example
Details-View
GridView and DetailsView Master/Detail page using SqlDataSource control
POCO
POCO overview and advantages - POCO class, Entity Framework in Enterprise Applications
Entity Framework
Query entity data model using linq to entities
Array List
Difference between arraylist and list collection
Web Services
How to create a Web service using Visual Studio.net
Form-View
FormView DataBound Event
Object Oriented Programming
Calling base class constructor in C#
Linq
Convert a sequence to a generic list using ToList()method
Project Ideas
Project ideas for students
AccountingSoftware
Accounting Software
MVC
Creating an ASP.Net MVC 3 application
.Net
Using assemblies in .net applications
ASP .Net
How to implement form validation using ASP.Net 2.0 Validation Controls
ERP .Net Books Order Page
Prices (Special Offers)



  • SITEMAP
  • Terms of use
  • Testimonials

Back to top

Copyright © 2016 - All Rights Reserved - VKInfotek.com