javascript
Brief description  about Online courses   join in Online courses
View Abhishek  Dwivedi 's Profile

dim

what is dim in vb
Asked by Abhishek Dwivedi | Apr 20, 2011 |  Reply now
Replies (2)
View kishan chakravarthy talasila 's Profile
Dim is mainly used to instantiate a variable
May 15, 2012
View dotnet teacher 's Profile
Hi Abhishek,

In VB .NET we use the Dim statement to create a variable. For example, we declare a integer variable with the following statement:

Dim x as Integer

The statement tells the run time to allocate the appropriate amount of memory to hold an integer variable.
Apr 22, 2011