Dim... As ...

  • Thread starter Thread starter scottnshelly
  • Start date Start date
S

scottnshelly

I need some help understanding exactly what this Dim thing is.
searched in the forum and in the tips, but couldn't find anything. Ca
anyone help explain what circumstances require a Dim and what it doe
and how to do it?
Thanks
 
Dim declares a variable, which you can use in your code as ways to save some
data for later use. Within the Dim statement, you can define the type of the
variables, string, long, range, etc., with the As part.

--

HTH

Bob Phillips
... looking out across Poole Harbour to the Purbecks
(remove nothere from the email address if mailing direct)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top