SX Options: Arguments to these "Subprocedures"

VBLM will not extract strings that follow any token on this list in a line of code.

How might you use it? For starters, you'll see that SendKeys is on the default list, which means that, by default, VBLM does not extract keystroke strings passed to SendKeys. Thus, by default, VBLM will not extract "%{F4}" from either of these lines of code:

SendKeys "%{F4}", True

Call SendKeys ("%{F4}", True)

If you study the default list, however, you'll notice that the tokens don't really have to be subs, which is why "subprocedures" is quoted. Most of the tokens on the list are VB data access methods that take string arguments but don't use parentheses, like FindFirst. Given its flexibility --VBLM won't extract any string that follows a token on this list -- you may find many ways to use this list to exclude unwanted strings.

See Also

String Exclusion Rules

Configuring SX Options

Pattern Matching