$Editor

The name of the text editor software for editing programs.

Syntax

$editor

Return Value

A character string. Can be reset by an application program.

Description

The name of a text editor.

Each time you start a new application session, $Editor is set, by default, to the name of an editor commonly used on the current operating system, or to the value of the editor in the registry. The variable is often reset by the application program to the name of the preferred text editing package.

Since Zim-X 9.50, the default editor is set to “IDE”.

The name should include the full disk path, if necessary. The special file path indicator characters can be used.

The value of this variable is used by the EDIT command.

Example

let $editor = "c:dosedit.com"

See Also

EDIT

$UserID

The current user’s operating system user ID.

Syntax

$userid

Return Value

A number, or $Null. Can be reset by an application program.

Description

The current user’s operating system user ID; otherwise, $Null.

You can use the $UserID and $GroupID system variables to build levels of security into your applications.

During any Zim session, you can LOGIN under any defined UserName (in EntitySet Users). $ZUserID and $ZGroupID are then set to the UserID and GroupID associated with UserName; $UserID and $GroupID (containing values taken from the operating system) are still available for use.

See Also

$GroupID

$ZGroupID

$ZUserID

$LastErrMessage

The error message generated by the last command that returned an error code.

Syntax

$lasterrmessage

Value

A character string. Can be reset by an application program.

Description

$Null at the beginning of each application session. The value changes only if an error occurs, or if the application program explicitly assigns a value.

When non-$Null, the variable represents, for the current session, the software message generated for the most recently executed command that returned an error code.

See Also

$ErrCode

$ErrLevel

$LastErrLevel

$MaxErrLevel

System Variables

$ErrCode

The error code generated by the last command executed.

Syntax

$errcode

Return Value

A number (0 to 9999.) Can be reset by an application program.

Description

Indicator of success (0) or a reason (1 to 9999) for the failure of the most recently executed command.

Explanations for many error codes are contained in the ErrorHelp entity set, which you can access from your database application using the DESCERR or EXPLERR utility program.

See Also

$ErrLevel

$LastErrLevel

$LastErrMessage

$MaxErrLevel

System Variables

$CursorScreenRow

The location of focus on the screen when an event occurs.

Syntax

$cursorscreenrow

Return Value

The number of the character row where focus is located on the terminal screen at the time of an event. Can be reset by an application program.

Description

The number of the character row where focus was located on the terminal screen at the time of an event.

$CursorScreenCol

The location of focus on the screen when an event occurs.

Syntax

$cursorscreencol

Return Value

The number of the character column where focus is located on the terminal screen at the time of an event. Can be reset by an application program.

Description

The number of the character column where focus was located on the terminal screen at the time of an event.

$CursorRow

The location of focus in a window when an event occurs.

Syntax

$cursorrow

Return Value

A number which is the row location for focus of the current window at the time of an event. Can be reset by an application program.

Description

The number of the character row where focus was located within the current window at the time of an event . If focus is on an entry field, $CursorRow gives the position of the text cursor.

Example

To output the row and column position of focus in window wMain when an event occurs:

window open wMain
form open Form1
form display input
output $cursorrow $cursorcol

See Also

$CursorCol

$CursorScreenCol

$CursorScreenRow

CURSOR

FORM INPUT

System Variables

$ZGroupID

The application user’s Zim group identifier.

Syntax

$zgroupid

Return Value

The group identifier of the user specified in the last successfully executed LOGIN command. Cannot be reset by an application program.

Description

Upon successful execution of a LOGIN command, $ZGroupID is set to the specified user’s group identifier.

Although you can change the value of this variable, you cannot change the effect of the LOGIN command. The current user continues to be treated according to the GroupID and UserID associated with the UserName given in the last LOGIN command.

When you call up any Zim system (full, Runtime, etc.), the software automatically attempts to log you in as a user called ZIM.

See Also

$GroupID

$UserID

$ZUserID

en_CAEnglish