Author Topic: What does DIM mean?  (Read 5145 times)

0 Members and 1 Guest are viewing this topic.

HasanCAD

  • Swamp Rat
  • Posts: 1422
What does DIM mean?
« on: November 10, 2012, 11:10:08 PM »
What does DIM mean?
and what types of data can be declare in?
Thanks

Kerry

  • Mesozoic relic
  • Seagull
  • Posts: 11654
  • class keyThumper<T>:ILazy<T>
Re: What does DIM mean?
« Reply #1 on: November 10, 2012, 11:50:36 PM »
What does DIM mean?
and what types of data can be declare in?
Thanks


Dim is a statement that declares and allocates storage space for one or more variables.
The type of data is declared seperately.

The usual format is :
Dim variableName As DataType

for more on DataTypes refer Visual Basic references on MSDN

kdub, kdub_nz in other timelines.
Perfection is not optional.
Everything will work just as you expect it to, unless your expectations are incorrect.
Discipline: None at all.

HasanCAD

  • Swamp Rat
  • Posts: 1422
Re: What does DIM mean?
« Reply #2 on: November 11, 2012, 02:32:54 AM »
Thanks Kerry

fixo

  • Guest
Re: What does DIM mean?
« Reply #3 on: November 11, 2012, 11:15:25 AM »

Chuck Gabriel

  • Guest
Re: What does DIM mean?
« Reply #4 on: November 11, 2012, 10:20:10 PM »
Just for the sake of nostalgia, I'll add this time tidbit.  If memory serves, "dim" was originally short for "dimension," just like in autocad.

BlackBox

  • King Gator
  • Posts: 3770
Re: What does DIM mean?
« Reply #5 on: November 12, 2012, 02:39:25 AM »
Just for the sake of nostalgia, I'll add this time tidbit.  If memory serves, "dim" was originally short for "dimension," just like in autocad.

... Only unlike AutoCAD, "dimension" originates from FORTRAN, and even Dartmouth BASIC's need to dimension Arrays.

Later "declare in memory" was added as more data types were available.
"How we think determines what we do, and what we do determines what we get."

It's Alive!

  • Retired
  • Needs a day job
  • Posts: 8696
  • AKA Daniel
Re: What does DIM mean?
« Reply #6 on: November 14, 2012, 07:26:15 PM »
DIM = someone with crazy ideas that could be considered dangerous   :laugh:
Just kidding

Kerry

  • Mesozoic relic
  • Seagull
  • Posts: 11654
  • class keyThumper<T>:ILazy<T>
Re: What does DIM mean?
« Reply #7 on: November 14, 2012, 08:40:20 PM »
Quote from: Synonyms for Dim
blah, bleary, blurred, caliginous, cloudy, dark, dingy, dreary, dull, dusk, dusky, faded, faint, flat, fuzzy, gloomy, gray, ill-defined, indistinct, lackluster, lightless, mat, monotone, monotonous, murky, muted, obscured, opaque, overcast, pale, poorly lit, shadowy, sullied, tarnished, tenebrous, unclear, unilluminated, vague, weak


 :|

 :angel:
kdub, kdub_nz in other timelines.
Perfection is not optional.
Everything will work just as you expect it to, unless your expectations are incorrect.
Discipline: None at all.