Name
Rem Statement
Syntax
Remcomment' comment
-
comment(optional) A textual comment to place within the code
Description
Use the Rem statement or an apostrophe
(') to place remarks within the code.
Rules at a Glance
Text or code commented out using either the
Remstatement or an apostrophe is not compiled into the final program and, therefore, does not add to the size of the executable.If you use the
Remstatement on the same line as program code, a colon is required after the program code and before theRemstatement. For example:Set objDoc = MyApp.MyObj : Rem Define the object Rem referenceThis is not necessary when using the much more common apostrophe:
Set objDoc = MyApp.MyObj ' Define the object reference
Apostrophes held within quotation marks are not treated as comment markers, as this code snippet shows:
myVar = "'Something'"
Programming Tips and Gotchas
The Visual Studio development environment contains block-comment and block-uncomment buttons on the Text Editor toolbar, which allow you to comment out or uncomment a selection of many rows of code at once.
You cannot use the line-continuation character (“_”) with comments.
VB.NET/VB 6 Differences
In VB 6, if a line containing a comment ends in an underscore (the
line continuation character), the following line is interpreted as a
comment as well. In VB.NET, line continuation characters are ignored
at the end of a comment line; each comment line must be prefaced with
the Rem statement or the '
symbol.
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Read now
Unlock full access