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.
 
That may be helpful. Thanks.

Marshall said:
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)
 

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