vote up 4 vote down star

What does DIM stand for in Visual Basic?

flag
2  
This is a very basic question about a keyword of a programming language. Asking such questions doesn't make sense. A better question would be "where do I find a complete keyword reference for VisualBasic?" – ivan_ivanovich_ivanoff Jun 23 at 16:03
6  
It’s a good question in fact. Not "what it does" but "why is it called this way". – Maciej Łebkowski Jun 23 at 16:06
4  
Crikey, give the guy a break. There's no rule on how complex questions have to be here. – Robert S. Jun 23 at 16:08
4  
I don't agree with ivan. Knowing what Dim does is one thing, knowing what it stands for tells you a little more about where it came from. This can be a useful aid to learning. – Chris Simpson Jun 23 at 16:15
3  
Once we adjudicate whether a question is "at the right level of sophistication" in ordered to be asked, we will lose half the audience of this site! – David Robbins Jun 23 at 16:51
show 4 more comments

8 Answers

vote up 12 vote down check

Dim originally (in BASIC) stood for Dimension, as it was used to define the dimensions of an array.

(The original implementation of BASIC was Dartmouth BASIC, which descended from FORTRAN, where DIMENSION is spelled out.)

Nowadays, Dim is used to define any variable, not just arrays, so its meaning in not intuitive anymore.

link|flag
1  
a little background might help. In early releases of basic the only variables that needed to be declared were arrays. The "Dim" keyword was used to set the dimensions of this array. – Chris Simpson Jun 23 at 16:13
I heard, a long time ago, that it meant Declare IMediately. Any thoughts there. – Nick Jun 25 at 9:50
We'd have to ask the original implementors of BASIC, but DIM for dimension just makes sense – Patrick McDonald Jun 25 at 10:51
vote up 0 vote down

Back in the day DIM reserved memory for the array and when memory was limited you had to be careful how you used it. I once wrote (in 1981) a BASIC program on TRS-80 Model III with 48Kb RAM. It wouldn't run on a similar machine with 16Kb RAM until I decreased the array size by changing the DIM statement

link|flag
vote up 1 vote down

It stands for Dimension, but is generally read as "Create Variable," or "Allocate Space for This."

link|flag
vote up 4 vote down

It's short for Dimension, as it was originally used to specify the size of arrays.

Later on it came to be used to declare all kinds of variables, when the possibility to specify the type for variables was added.

link|flag
vote up -2 vote down

Dim numberOfStudents As Integer

Declare the variable named "numberOfStudents", typed "Integer"

By the way: I think answers to such basic questions are easy to find in the MSDN

link|flag
vote up 3 vote down

Variable declaration. Initially, it was short for "dimension", which is not a term that is used in programming (outside of this specific keyword) to any significant degree.

http://in.answers.yahoo.com/question/index?qid=20090310095555AANmiAZ

link|flag
Your arrays are dimensionless? How odd... – Karl E. Peterson Jun 24 at 23:30
vote up 4 vote down

Dimension a variable, basically you are telling the compiler that you are going to need a variable of this type at some point.

link|flag
vote up -1 vote down

Declares and allocates storage space for one or more variables

Dim Statement (Visual Basic)

link|flag
-1, doesn't answer the question at all – cdmckay Jul 24 at 2:26

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.