|
|
(6 intermediate revisions by 2 users not shown) |
Line 1: |
Line 1: |
| Dim ''nameA''[([''subscriptA'' [,''subscriptB'' [,''subscriptC''...]]])][, ''nameB''...[, ''nameC''..., [...]]] | | Dim ''nameA''[([''subscriptA'' [,''subscriptB'' [,''subscriptC''...]]])][, ''nameB''...[, ''nameC''..., [...]]] |
| Dim nameA''Italic text'' = ''simplevariable'' | | |
| | Dim ''nameA'' = ''simplevariable'' |
|
| |
|
| == Description == | | == Description == |
|
| |
|
| Dim is used to declare variables and allocate storage space. The required component, nameA, is the name of the variable, it must follow standard variable naming conventions. The optional list of subscripts are the upper bounds of dimensions of an array variable. Up to 60 comma-separated dimensions may be declared. Script level variables are available to all procedures in the script; procedure level variables are available only in the procedure they are declared in. The lower bound of an array is always zero. | | Dim is used to declare variables and allocate storage space. The required component, nameA, is the name of the variable, it must follow standard variable naming conventions. The optional list of subscripts are the upper bounds of dimensions of an array variable. Up to 60 comma-separated dimensions may be declared. The lower bound of an array is always zero. |
|
| |
|
| An optional initial value can also be supplied. This must be a simple variable, not an expression. | | An optional initial value can also be supplied. This must be a simple variable, not an expression. |
| | |
| | Arrays must be declared in a Dim statement. Arrays should have a Dim statement in each Code Module where they are used. For multidimensional arrays, A(2,3) refers to the same element as A[2][3]. |
| | |
| | === Scope === |
| | Variables which are declared outside of any Function or Sub are global and are available everywhere in your code, even on other forms. Variables which are declared inside a Function or Sub are only available while the routine is being executed and are lost when the routine is ended. Variables which are used without being declared are global. |
|
| |
|
| == Example == | | == Example == |
|
| |
|
| <pre> | | <tabber> |
| | JavaScript= |
| | <syntaxhighlight lang="JavaScript"> |
| | // Var Example |
| | /* Var declares variables and allocates storage */ |
| | |
| | //An empty variable named "Foo" |
| | var Foo; |
| | //A variable with an initial value of 42 |
| | var Foo2 = 42; |
| | //A one-dimensional array with 10 elements |
| | var OneD = new Array(9); |
| | //A two-dimensional array with 600 elements |
| | //20 x 30 |
| | var TwoD = new Array(19, 29); |
| | </syntaxhighlight> |
| | |-| |
| | BASIC= |
| | <syntaxhighlight lang="vb.net"> |
| Rem Dim Example | | Rem Dim Example |
| 'Dim declares variables and allocatesstorage | | 'Dim declares variables and allocates storage |
| 'An empty variable named "Foo" | | 'An empty variable named "Foo" |
| Dim Foo | | Dim Foo |
Line 22: |
Line 46: |
| '20 x 30 | | '20 x 30 |
| Dim TwoD(19, 29) | | Dim TwoD(19, 29) |
| </pre> | | </syntaxhighlight> |
| | </tabber> |
|
| |
|
| == Related Items == | | == Related Items == |
Dim nameA[([subscriptA [,subscriptB [,subscriptC...]]])][, nameB...[, nameC..., [...]]]
Dim nameA = simplevariable
Description
Dim is used to declare variables and allocate storage space. The required component, nameA, is the name of the variable, it must follow standard variable naming conventions. The optional list of subscripts are the upper bounds of dimensions of an array variable. Up to 60 comma-separated dimensions may be declared. The lower bound of an array is always zero.
An optional initial value can also be supplied. This must be a simple variable, not an expression.
Arrays must be declared in a Dim statement. Arrays should have a Dim statement in each Code Module where they are used. For multidimensional arrays, A(2,3) refers to the same element as A[2][3].
Scope
Variables which are declared outside of any Function or Sub are global and are available everywhere in your code, even on other forms. Variables which are declared inside a Function or Sub are only available while the routine is being executed and are lost when the routine is ended. Variables which are used without being declared are global.
Example
// Var Example
/* Var declares variables and allocates storage */
//An empty variable named "Foo"
var Foo;
//A variable with an initial value of 42
var Foo2 = 42;
//A one-dimensional array with 10 elements
var OneD = new Array(9);
//A two-dimensional array with 600 elements
//20 x 30
var TwoD = new Array(19, 29);
Rem Dim Example
'Dim declares variables and allocates storage
'An empty variable named "Foo"
Dim Foo
'A variable with an initial value of 42
Dim Foo2 = 42
'A one-dimensional array with 10 elements
Dim OneD(9)
'A two-dimensional array with 600 elements
'20 x 30
Dim TwoD(19, 29)
Related Items
Array, ReDim, Set