Introduction | Getting Started | CED Features | CED Commands | Index |
Syntax: |
VSEEK "variable-name" [,LOG=printer]
(or) VSEEK variable-name [,LOG=printer] |
Discussion: |
VSEEK locates and displays source lines and usefile lines
containing the specified MTB variable name.
The internal search logic is very straightforward. The VSEEK command examines the character immediately preceding and the character immediately following the specified search string. If either of those characters contains a number, letter, single quote, or double quote, the string is skipped (i.e., it's not an MTB variable name). Likewise, if the character immediately following the search string contains a dollar sign, the string is skipped. Otherwise the search could return string variable names when you were trying to find numeric variable names (A versus A$, for example). If the LOG parameter is used, matching lines are printed to the specified printer. |
Examples: |
VSEEK "I" locates and displays the variable named I VSEEK I locates and displays the variable named I VSEEK A$ locates and displays the variable named A$ |