
Dim multiple lines or single line
AFAIK, there's no performance difference. I tend to do it on separate lines,
strictly because I got in that habit when it was possible to "type" the
variables wien you dimmed them.
--
Doug Steele, Microsoft Access MVP
Beer, Wine and Database Programming. What could be better?
Visit "Doug Steele's Beer and Programming Emporium"
http://I.Am/DougSteele/
Quote:
> Just curious what the advantage (performance wise) is, if any, of dimming
on
> one line as opposed to many lines.
> i.e., which of these two is slower
> Dim strName, strAddress
> Or
> Dim strName
> Dim strAddress
> Preston