Siebel VB Language Reference > VB Language Overview > Conventions Used by Siebel VB >

Siebel VB Comments


Comments are preceded by an apostrophe and can appear on their own line in a procedure or directly after a statement or function on the same line.

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

Rem This is a comment line.

Unlike Siebel eScript, Siebel VB does not have a block comment feature.

Siebel VB Language Reference