Mass Rem Usage

  • Thread starter Thread starter tig
  • Start date Start date
T

tig

Does VBA have syntax to rem (comment) out many lines of code? Many
other languages have characters or codes to designate the beginning and
end of commented code.
 
tig said:
Does VBA have syntax to rem (comment) out many lines of code? Many
other languages have characters or codes to designate the beginning and
end of commented code.


No markers as such, but A2002 has Toolbar buttons to
comment/uncomment a block of selected lines.
 
use this pair:

#If false then

#End If

I had problem a couple of years ago, but it seems to be working
again now.

(david)
 
Back
Top