Mass Rem Usage

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.
 
M

Marshall Barton

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.
 
G

Guest

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)
 
Top