SX Options: "Assigned" to these Identifiers

When you place a token on this list, VBLM does not extract strings that are directly assigned to the token in code.

How might you use it? Let's say, for example, that you routinely store the name of each procedure -- which you don't want to translate -- in a local string variable for error handling. At the top of each procedure in your code is a line reading:

ProcName$ = "NameOfCurrentProcedure"

If you put ProcName on the identifiers list, VBLM will not extract "NameOfCurrentProcedure" (as with the SX function list, trailing type declaration characters such as $ are ignored, and as with all SX options, comparisons are not case sensitive unless activated with a leading "+").

As with the SX properties list, "Assigned" is in quotes because VBLM won't extract strings if they are simply to the right of tokens on this list with an "=" in between. Thus VBLM will not extract "Foo" from the following code, even though it isn't an assignment:

If ProcName$ = "Foo" Then Beep

The default identifiers list is empty.

See Also

String Exclusion Rules

Configuring SX Options