How To Name Objects

Names for objects defined in the Object Dictionary must conform to the following conventions:

  • The name can be from 1 to 18 characters in length.

  • The name can contain only letters (a-z, A-Z), digits (0-9), dollar signs ($), and underscores (_).

  • The name must begin with a letter or a dollar sign.

  • Most names must be unique among objects of the same type in the same application directory. (Note that the software is case-insensitive: ABC and abc are the same name.) For more information, see the documentation for your operating system.

  • The name does not duplicate words reserved to the software’s use, such as a command or function keyword (CREATE, $isalphabetic).

Examples of Object Names

Examples of valid names are

  • myfile98

  • x99

  • a

  • ProjectControl56

  • x_7b

  • date

  • $i

Compare these to the following invalid names:

  • 98myfile

  • 99

  • a+

  • x%@

  • ProjectControl 56/8

  • $Date

 

How Macros Acquire Values

A macro acquires a value in one of two ways:

  1. implicitly when the software encounters a call to a previously unknown global macro, or when a local macro is unassigned in a macro call program
  2. explicitly in a LET or INPUT command (global or local macros), or in a call to a procedure (local macros only)

Implicit Value

If the software encounters a call to a previously unknown macro or an unassigned local macro, it substitutes the null string for the macro.

Example

Suppose the global macro #<NumToDo> has not been previously declared. The command

list #<NumToDo> WaterSamples

processes after replacing #<NumToDo> with a null string. The command executes as

list WaterSamples

Explicit Value

You can use the LET and INPUT commands to explicitly assign values to either global or local macros.

You can also explicitly assign values to local macros in a call to a procedure.

LET Command Examples

You can use the LET command to assign the character string value of an expression to a macro.

In the following example, the LET command assigns values to the global macros <mac1>, <mac2>, and <mac3>, and to the local macro <8>:

let <mac1> = 'Employees where LastName = Smith'
let <mac2> = 'abc'
let <mac3> = 'def'
let <8> = $concat('f', EntName)

You can make any number of assignments in a single LET command. The value assigned to a macro can be the result of a complex value expression.

Do not use the macro call indicator (#) when assigning a value to the macro. If you use the call indicator in an assignment statement, the macro call is replaced by the current character string value of the macro.

For example, suppose the global macro <mac> currently represents the character string <abc>. If you attempt to change the assigned value of <mac> by entering

let #<mac> = 'xyz'

the statement is interpreted as

let <abc> = 'xyz'

Instead of <mac> acquiring a new value, a new macro <abc> has been declared.

INPUT Command Examples

The INPUT command enables the application user to enter one line of data from the terminal. The software resolves the data into a series of values and assigns the values to the expressions listed in the INPUT command. The expressions in the INPUT command can be macros, variables, parameters, and so on, as shown in the following example:

input <mac1> <mac2> <mac3> <8> <mac4> <7>

The macro call indicator (#) is not used in the statement, because the INPUT command, like the LET command, is performing value assignments.

The data entered at the terminal by the user is parsed and separated into individual character strings. The strings are assigned to the specified macros, in order. If there are more strings than values, the remaining macros are assigned the null string.

For example, in response to the INPUT command above, the application user could enter

abc 4+3 '3*5' xyz !

If the current delimiter is the space, the macros are assigned values as follows:

<mac1>abc
<mac2>4+3
<mac3>‘3*5’
<8>xyz
<mac4>!
<7>” (null string)

Macro Program Call Examples

You can also assign values to local macros in the call to a macro application.

Normally, you call a macro program by issuing a command consisting of the program’s name. However, the program name can be followed by a list of character strings to assign to the local macros belonging to the main procedure in the program.

Any character string is valid, including

  • reserved words
  • object names
  • special characters
  • number literals
  • character literals

The software reads any characters following the macro program name and separates them into individual character string values, based on the current field delimiter. The first value from the program call is assigned to macro <1>, the second to macro <2>, and so on.

If there are not enough values to be assigned to all local macros, the remaining local macros are assigned the null string.

If there are more than nine values, the first nine are assigned to the local macros <1> to <9>, then all remaining characters in the statement, including the spaces between them, are assigned to local macro <0>.

If a macro program call includes no character strings, all local macros <0> through <9> are assigned the null string.

Suppose ListFields is a macro program called by the command

ListFields Employees * 2 'Salary/Age'

If the field delimiter is space, values are assigned to the local macros as follows:

<1>Employees
<2>5
<3>*
<4>2
<5>Salary/Age
<6>” (null string)
<7>” (null string)
<8>” (null string)
<9>” (null string)
<0>” (null string)

Discarding Macro Values

Once defined, a global macro persists until the end of the application session; a local macro persists until the procedure to which it belongs stops executing.

To explicitly discard a macro value, you can assign the null string to the macro as shown in the following example:

let <NumToDo> = ''

This command discards the value of the global macro <NumToDo>.

Macros and Compiled Programs

Macro substitution takes place only when the software is parsing a source (uncompiled) program.

During compilation, the software parses the source code and performs macro substitution based on current macro values. The resulting commands are then compile and stored in compiled form.

When the compiled program is executed, its source code is not parsed again. Therefore, changes to macro values in the interim are not reflected when the compiled program is executed.

For this reason, programs that use macros should not normally be compiled.

Problems that can arise

Consider a program called ExtremeCase that contains a single line of code:

#< CommandLine>

The program ExtremeCase could contain any command, depending on the character string value assigned to the macro < CommandLine>.

If ExtremeCase is not compiled, executing the commands

let = ‘list all Employees’
ExtremeCase
let = ‘form open fTotals’
ExtremeCase

is equivalent to executing

list all Employees
form open fTotals

If ExtremeCase were to be compiled at this point, the command that would be compiled is

form open fTotals

From this point forward, executing the compiled program ExtremeCase would always result in the execution of the FORM OPEN command, regardless of the current value of the macro .

If you choose to compile

IF you choose to compile programs that use macros, keep the following principles in mind:

  • Values for local macros cannot be specified in a call to a compiled macro program

  • After compilation, LET and INPUT assignments to a macro have no effect on the value of that macro in the compiled program.

  • Global macros should be declared and assigned a value before the programs that call them are completed.

  • The software issues a warning when a program that is being compiled contains global macros.

Macros vs Variables

Although macros appear to behave as variables do, they are, in fact, quite different:

  • Variables are defined in the Object Dictionary, with a given data type, length, and so on.

  • Variables are objects in the application database.

  • Variables can be unassigned ($Null).

  • The value of a variable can vary at execution time, even in fully compiled applications.

On the other hand

  • macros are not defined in the Object Dictionary.

  • macros are not objects in the application database.

  • macros always have a value; they cannot be $Null.

  • macro values are substituted for macro calls when commands are parsed. Data, object names, and entire commands can all be used as macro values.

  • macro substitutions are not re-evaluated when a compiled program is executed. Once a program is compiled, changes to the values of macros have not effect on the compiled code.  

Macro Substitution

A macro can appear anywhere and can be repeated any number of times in an application program.

Each time the software encounters a call to the macro, it substitutes the current character string value of the macro. Substitution takes place one command at a time, before each command is executed. To view these substitutions as they occur, issue a SET LEXTRACE ON command.

Consider a macroprogram called ShowSubstitution that contains the following line:

list #<1> Employees #<2> LastName = '#<3>' #<SortOrder>

If the commands shown below were used to execute the macroprogram ShowSubstitution

let <SortOrder> = 'Sorted by DeptNum'
ShowSubstitution "2" "where" "Smith"

then the LIST command shown above would be interpreted as

list 2 Employees where LastName = 'Smith' Sorted by DeptNum

Avoiding Macro Substitution

To use a character literal that could be mistaken for a macro – that is, the character literal contains the number sign and the macro name delimiters (#<1> or #) – you must employ the backslash (“\”, the escape character) to indicate that the number sign is to be taken literally.

For example, in the command

output 'The #<apples> in the box #<1> is:'

#<apples> and #<1> are recognized as macros. If they are not intended to be macros and therefore have not been previously defined, they are automatically replaced with the null string. Thus the command becomes

output 'The  in box  is:'

If the escape character precedes the number sign, the number sign is taken as a literal character as in:

output 'The \#<apples> in box \#<1> is:'

Nested Macros

The character string that a macro represents can contain references to other macros.

ZIM automatically performs multiple rounds of substitution when macros are nested outside quoted strings. If a nested macro appears inside a quoted string, macro substitution occurs only once.

Example

Consider two macros #<mac1> and #<mac2>. The following command could  be used to assign character strings to these macros:

let <mac1> = 'put' 
let <mac2> = 'out\#<mac1>'

Note the use of the backslash (“\”) to avoid macro substitution in the assignment to <mac2>

<mac1> put
<mac2> out\#<mac1>

With this arrangement, the command

#<mac2> 'Hello'

becomes

out#<mac1> 'Hello'

which in turn becomes

output 'Hello'

On the other hand, the command

output '#<mac2>'

is processed as

output 'out#<mac1>'

About Macros

A macro is a dynamically declared name that represents a character string. When a macro call is encountered in an application program the macro call is replaced by the current character string value of the macro. Macros are sometimes called replacement parameters or substitution variables.

The following topics discuss how to work with macros in applications:

  • Availability of macros
  • How macros acquire values
  • Macro Substitution
  • Macros and Compiled Programs

The Availability of Macros

You can declare two different kinds of macros during an application session:

  • global macros
  • local macros

Global Macros

The name declaration for a global macro uses the following syntax:

<name>

where

namea valid identifying name for the macro
< and >macro name delimiters make the macro easy to distinguish

After a global macro is declared, you can reuse it in any application program for the duration of the application session. When the session ends, the macro is no longer available.

Local Macros

The name declaration for a global macro uses the following syntax:

<n>

where:

na number from 0 to 9
< and >macro name delimiters make the macro easy to distinguish

Every procedure has its own set of ten local macros, <0> through <9>. You can use a local macro only while the procedure to which it belongs continues to execute. Once execution control transfers elsewhere, the local macros particular to that procedure are discarded.

Examples

Consider a global macro, . If you define to represent the character string list all, then the statement

# Documents

is interpreted as

list all Documents

# is the macro call that is replaced by the character string the represents, list all. The number sign (#) is the macro call indicator.

If you redefine to represent the character string ENT, then the statement

list #s format #Name

is interpreted as

list ENTs format ENTName

Macros and Compiled Programs

Macro substitution takes place only when the software is parsing a source (uncompiled) program.

During compilation, the software parses the source code and performs macro substitution based on current macro values. The resulting commands are then compile and stored in compiled form.

When the compiled program is executed, its source code is not parsed again. Therefore, changes to macro values in the interim are not reflected when the compiled program is executed.

For this reason, programs that use macros should not normally be compiled.

About Macros

A macro is a dynamically declared name that represents a character string. When a macro call is encountered in an application program the macro call is replaced by the current character string value of the macro. Macros are sometimes called replacement parameters or substitution variables.

The following topics discuss how to work with macros in applications:

  • Availability of macros

  • How macros acquire values

  • Macro Substitution

  • Macros and Compiled Programs

How To Construct Logic Expressions

Logic expressions represent true or false circumstances. Logic expressions typically consist of at least two arguments (usually value expressions) combined using conditional operators (conditional expressions), Boolean operators (Boolean expressions), or both. Logic expressions can be quite complex. Parentheses can be used to explicitly control the order of evaluation in complex logic expressions.

When a statement contains a logic expression, the software evaluates the expression to determine if it is logically true or logically false.

Writing Expressions

The conditional operators, Boolean operators, and parentheses can be combined to create long, complex expressions. These logic expressions are evaluated based on the standard rules of precedence. Parentheses alter the order of evaluation.

Spaces between operands and symbol operators can be used for clarity, but are not required; spaces must appear, however, between operands and word operators.

For example, Salary > 20000 and Salary>20000 are equivalent, but notSalary>45000 cannot be substituted for not Salary>45000.

Data Types

Logic expressions always yield a logical true/false result.

The operands used in any single conditional expression should preferably be of the same data type; however, non-matching types are converted, if necessary, to perform the comparison specified by the operator. The operands used in any single Boolean expression must have logic values (i.e., their values must be logical true/false).

Pattern Matching In Conditional Expressions

The conditional operators LIKE and = (equals) can be used with special wildcard characters to perform pattern matching of character strings.

The available LIKE wildcards are

_ (underscore)

The underscore matches any single character.

% (percent sign)

The percent character matches any sequence of zero or more characters.

(escape character)

The backslash indicates that the next character (usually the underscore or percent sign) is to be taken literally. However, because a backslash is also used as the software’s universal escape operator in character strings, the LIKE backslash must itself be preceded by an escape backslash as shown in the following example:

find Parts where PartNo like “_ _\_%”

Examples of Pattern Matching in = Logic Expressions

DeptNum = “D56”?

Logically true if the department number begins with the characters D56. Note that the question mark must appear outside the string.

RemarkField = “Smith?”

Shows the question mark being used literally in a string. (The characters appear inside the quotation marks.) The expression is logically true only if Remarkfield contains the exact characters Smith?.

Surname = fCustomer.LastName?

Shows how the wildcard can be attached directly to an atomic expression employing a variable, local variable, form field, or formal parameter, provided the object is of a character data type. (Trailing blanks in the specified object are trimmed for pattern-matching purposes.)

Examples of Pattern Matching in LIKE Logic Expressions

“_ob%”

Matches any character string whose second and third letters are ob, followed by zero or more characters (i.e., “Robert”, “Bob”, “Cobbler”, etc.).

Grade like “100\%”

Shows the percent sign being used literally in a string. (The first backslash “escapes” the second backslash, which, in turn, “escapes” the percent sign, turning it into a literal character.)

FirstName like $concat(“S_e%p”,SuffixVariable)

Assuming that SuffixVariable is “%”, the above expression is logically true if FirstName matches the pattern S_e%p%.

How To Construct a Validation Rule for Alphanumeric Fields

The available pattern symbols for constructing alphanumeric validation rules are

  • A stands for any letter (A-Z, a-z)

  • X stands for any letter or digit (A-Z, a-z, 0-9)

  • 9 stands for any digit (0-9)

  • Z stands for any digit or blank (0-9, the space character)

  • (all others) exact match. To obtain an exact match for A, X, 9, or Z, add the escape character (e.g., A, X, 9, Z)

The available syntax characters for constructing alphanumeric validation rules are

[ ]

Encloses a set of alternative characters. (Note: All characters inside brackets are taken literally; for example, A is the letter “A”, not the pattern symbol A.)

Used inside brackets to denote a range of characters.

|

Separates alternative validation patterns

A telephone number can consist of a three-digit area code enclosed in parentheses, as well as a seven-digit number containing a hyphen, or just the seven-digit number and hyphen. The first digit of the area code must fall in the range 2 through 9; the second digit must be 0 or 1; and the third digit is unrestricted. The first digit of the prefix must fall in the range 2 through 9. The remaining numbers are unrestricted. So the rule can be expressed as follows:

([2-9][0-1]9)[2-9]99-9999|[2-9]99-9999

Input values that are accepted as legal include 212-643-9763 and 643-9763; input values that are rejected include 222-643-9763 and 143-9763.

Examples of Alphanumeric Validation Rules

The following table contains examples of alphanumeric validation rules and the values that might be legal or illegal under those rules:

Validation Rule

Legal Value

Illegal Value

AB

qB

q”

XX-XXXX

AL-9632

$63.09

Q[L-P]A

QLA or QMA or QPA

QRA or qLa or QPB

[ACEG]

A or C or E

B or D or F

[Ax-zB]

A or y or B

a or Y or b

A|9

m or 3 or Q

? or $ or %

Y|N

Y or N

A or 5

 

How To Use Data Masks

Three types of data masks are available: output masks, display masks and input masks.

Output Masks

An output mask is used to format the data value of a field in a list, report or output command.

The output mask of a field is defined by its FieldMask attribute.

An explicit output mask can be applied to a field, and also to a form field or to any data value, using either:

  • the $mask function;
  • the MASK option in Zim Reports;

Displays Masks

A display mask is apparent only when a data value is being displayed in an entry field.

When data is being input to a display-masked entry field, the display mask will be substituted by the input mask (if defined).

Once data input is completed, the data value of the form field will be presented formatted by the display mask.

The display mask for an entry field is defined by its DataMask attribute.

Input Masks

When defined, an input mask is presented when data is being typed in an entry field (i.e., the entry field is available and has focus);

If the input mask is not defined, the display mask will act as the input mask.

In either case, the value of the input data must conform to the effective input mask , as well as to the validation rule (if defined) in effect for that entry field.

The input mask for an entry field is defined by its WdgInputMask attribute.

Masks and Data Types

For a more detailed explanation of mask patterns and their relation to data types, see Masking.

How To Use Logic Expressions

A logic expression is an expression that, when evaluated, yields either a $True or a $False result.

Logic expressions are subdivided into conditional expressions and Boolean expressions.

How To Construct Conditional Expressions

A conditional expression is a complex logic expression that consists of two value expressions and an associated conditional operator. The conditional operator performs a designated comparison of the value expressions and returns the result $True or $False. Conditional expressions can be combined into Boolean expressions.

The conditional operators are

= (equals)

<> (not equals)

< (less than)

> (greater than)

<= (less than or equals)

>= (greater than or equals)

[NOT] BETWEEN

[NOT] IN

[NOT] LIKE

Examples of Conditional Expressions

EmpNum < 1254

DeptNum >= EmpNum

First Name = “Smith”

DeptDesc <> “Sports”

EmpNum between 1000 and 2000

LastName like “%ith%”

Event.EventName in (“F1”, “F2”, “Escape”)

ProdCode not between 542 and 863

LastName not in (“Smith”, “Jones”)

FirstName not like “Sm%”

How To Use Boolean Expressions

A Boolean expression is a complex logic expression that consists of one or more conditional expressions and an associated Boolean operator. The Boolean operator performs a Boolean operation on the $True or $False values returned by the conditional expression(s) and returns the result $True or $False.

The Boolean operators are

AND

OR

XOR

NOT

Examples of Boolean Expressions

LastName = “Allan” or FirstName = “Allan”

DeptNum = “Sports” and Salary > 45000 and LastName = “Smith”

not Salary > 45000

See Also

$and

$not

$or

Truth Tables

pt_BRPortuguese