Comments
An apostrophe precedes a comment. It can occur on a separate line in the code or immediately after a statement or function on the same line. For example:
' This comment is on its own line
Dim i as Integer ' This comment is on the code line
You can also use a Rem Statement to make a comment. For example:
Rem This is a comment line.
Siebel VB does not include a block comment feature.