Links are not active on this page.
 NOTE Command

Indicates the beginning of a nonexecuting comment line in a program file.

NOTE [Comments]

Parameters

Comments

Specifies the comment.

Expand imageRemarks

Place a semicolon (;) at the end of each comment line that continues on a following line.


NoteWarning

NOTE command destroys Rich Text formatting of colored source code syntax when placing it into the Clipboard in VFP 9 SP2.
Use * Command comments instead of NOTE command when you are planning to copy and paste colored source code.

Expand imageExample

 CopyCode imageCopy Code
NOTE  Initialize the page number;
   variable.
STORE 1 to gnPageNum
* Set up the loop
DO WHILE gnPageNum <= 25  && loop 25 times
   gnPageNum = gnPageNum + 1
ENDDO  && DO WHILE gnPageNum <= 25

Expand imageSee Also