ThisWindow

ThisWindow

A data structure that provides information about the state of the system and of the current window at the time of the last event in that window.

The ThisWindow data structure provides information about the state of the system and of the current window at the time of the last event in that window.

The ThisWindow structure contains a number of fields that are reset when the current window changes. By trapping these values, the application enables the user to change the current window and later return to pick up where things were left.

If the current window is non-modal, note that the last event in the window is not necessarily the last event in the interface overall.

The fields in the ThisWindow structure are

AltKey, CtrlKey, ShiftKey, EventName, EventTag, EventType, KeyPressed, MouseClick, ScrollingKey, WindowCol, WindowHeight, WindowName, WindowNum, WindowRow, WindowState, WindowTag, WindowWidth

Syntax #1 – AltKey, CtrlKey, ShiftKey

The state of the Alt, Ctrl or Shift key at the time of the last event in the current window.

thiswindow.altkey

thiswindow.ctrlkey

thiswindow.shiftkey

Return Value

“1” ($True), or “0” ($False), character string (binary). Can be reset by an application program.

Description

The variables indicate the state of the Alt, Ctrl and Shift keys at the time of the last event in the current window.

Each variable is set to ‘1’ ($True) if the corresponding key was down when the last event in the current window occurred. Otherwise, each is set to ‘0’ ($False).

Syntax #2 – EventName

Identifies the last event that occurred in the current window.

thiswindow.eventname

One of

Break, Canceled, Click, Closed, DoubleClick, GotFocus, HangUp, LostFocus, LostFocusModified, Modified, PanicExit, Timeout, WindowFocusSwitch, or keyname

Cannot be reset by an application program.

Return Value

Character string (alpha). Can be reset by an application program.

Description

Identifies, by name, the last event to occur in the current window.

This variable is not set in all operating environments.

ThisWindow.EventType gives additional information about the type of event, and ThisWindow.EventTag gives additional information about the type of object involved in the event.

Syntax #3 – EventTag

Identifies the tag of the object in which the last event in the current window occurred.

thiswindow.eventtag

Return Value

The identification tag of the object in which the last event in the current window occurred. Can be reset by an application program.

Description

Identifies the object in which the last event in the current window occurred.

The identification tag selected varies with the type of object involved in the event.

ThisWindow.EventName names the event, and ThisWindow.EventType gives additional information about the type of event.

Can be, depending on the type of object involved

EventType TypeSource for EventTag Value
WindowEvent.WindowTag
MenuEvent.MenuTag
MenuitemEvent.MenuItemTag
FormEvent.FormTag
FormfieldEvent.FieldTag
AcceleratorEvent.FieldTag
SystemEvent.FieldTag

Syntax #4 – EventType

Identifies the type of event that last occurred in the current window.

thiswindow.eventtype

One of

Window, Menu, MenuItem, Form, FormField, Accelerator, System

Return Value

Character string (alpha). Can be reset by an application program.

Description

Identifies the type of event that last occurred in the current window. ThisWindow.EventName names the event, and ThisWindow.EventTag identifies the object in which the event occurred.

Syntax #5 – KeyPressed

Indicates the key that, pressed, caused the event that last occurred in the current window.

thiswindow.keypressed

Return Value

Character string (alpha). Can be reset by an application program.

Description

The name of the key that, pressed by the application user, caused the last event to occur in the current window. Can be reset by an application program.

For example, if the application user presses the a key in a form field and the Modified event is intercepted by the application program, then ThisWindow.KeyPressed is set to “a”.

Note: The name of the key that caused an accelerator event is recorded in the ThisWindow.EventName variable.

Syntax #6 – MouseClick

Indicates if a mouse button accelerator caused the event that last occurred in the current window.

thiswindow.mouseclick

Return Value

“1” ($True), or “0” ($False). Can be reset by an application program.

Description

Set to “1” ($True) if the last event to occur in the current window was caused by the press of a mouse button that is defined as an accelerator for the window. Otherwise, set to “0” ($False).

If SET MOUSE is OFF, ThisWindow.MouseClick is 0.

Syntax #7 – ScrollingKey

Indicates if the accelerator that caused the event that last occurred was also a defined SCROLL key.

thiswindow.scrollingkey

Return Value

“1” ($True), or “0” ($False). Can be reset by an application program.

Description

Set to “1” ($True) if the accelerator key that caused the last event in the current window was also a defined SCROLL key. Otherwise, set to “0” ($False).

Example

window set scroll Up up Down down
window set accelerator up down escape
form open fEmployee
form set scroll fEmployee from EmpSet
form display
while
if thiswindow.scrollingkey = $true
change EmpSet from fEmployee
form scroll
continue
endif
… other commands …
endwhile

In the preceding code fragment, employee records are scrolled through a form and the application user can update the data. ThisWindow.ScrollingKey detects if a scrolling key was pressed, enabling the scrolling action to be performed under program control after any changes to the data are saved.

Syntax #8 – ScrollingKey

thiswindow.scrollingkey

Return Value

Character string (binary). Can be reset by an applicatio
n program.

Description

The variable indicates if the accelerator that cased the event that last occurred was also a defined SCROLL key.

ThisWindow.ScrollingKey is set to ‘1’ ($True) if the accelerator that caused the last event in the current window was also a defined SCROLL key. Otherwise, it is set to ‘0’ ($False).

Syntax #9 – WindowCol, WindowRow

The character column or row position of the current window.

thiswindow.windowcol

thiswindow.windowrow

Return Value

A number. Cannot be reset by an application program.

Description

The variables indicate the physical size of the current window in character rows (WindowHeight) and character columns (WindowWidth).

The physical dimensions of a window determine the visible space inside the window (i.e., the client area). This area changes in size when the dimensions of the window change. An application user can change the size of a window by using the resize feature. A program can change the size of a window using the WINDOW SIZE command.

An application program can position a window using the WINDOW MOVE command.

Syntax #10 – WindowHeight, WindowWidth

The physical height or width of the current window in character rows.

thiswindow.windowheight

thiswindow.windowwidth

Return Value

Number (INT). Cannot be reset by an application program.

Description

The variables indicate the physical size of the current window in character rows (WindowHeight) and character columns (WindowWidth).

The physical dimensions of a window determine the visible space inside the window (i.e., the client area). This area changes in size when the dimensions of the window change. An application user can change the size of a window by using the resize feature. A program can change the size of a window using the WINDOW SIZE command.

Syntax #11 – WindowName

The name of the current window.

thiswindow.windowname

Return Value

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

Description

The variable identifies, by name, the current window.

Example

You can use ThisWindow.WindowName to restore the focus to a window, making it the current window:

let SaveWin = ThisWindow.WindowName
window open Window2
… other commands …
window set current SaveWin

Syntax #12 – WindowNum

The identification number of the current window.

thiswindow.windownum

Return Value

A number. Can be reset by an application program.

Description

The variable identifies, by identification number, the current window.

Syntax #13 – WindowTag

thiswindow.windownum

Return Value

Character string (alpha). Can be reset by the application program.

Description

The variable identifies, by identification tag, the current window.

Syntax #13 – WindowState

Indicates whether the current window is maximized, minimized, or otherwise.

thiswindow.windownum

Return Value

A number. Cannot be reset by an application program.

Description

Indicates the state of the current window at the time of the last event in that window.

ValueMeaning
-1The current window is minimized.
0The current window is neither minimized nor maximized.
1The current window is maximized.

See Also

FORM INPUT

FORM SET

MENU INPUT

MENU SET

SCREEN CLEAR

SCREEN RESET

ThisForm

WINDOW SET

ThisForm

A data structure that provides information about the state of the current form at the time of the last event in the current window.

The ThisForm data structure provides information about the state of the current form at the time of the last event in the current window.

The ThisForm structure contains a number of fields that are reset when a window containing a form or display becomes the current window. An application program can use the information in the fields to determine what action, if any, to take.

The fields in the ThisForm structure are

  • DisplayTag
  • FFFieldNum
  • FieldChanged
  • FieldTag
  • FormChanged
  • FormNum
  • FormTag
  • ReqError
  • ReqFieldNum
  • ReqFormNum
  • ReqSubscript
  • ReqTag
  • Subscript
  • ValError
  • ValFieldNum
  • ValFormNum
  • ValSubscript
  • ValTag

Syntax # 1 – DisplayTag

The tag of the display that had focus at the time of the last event in the current window.

thisform.displaytag

Return Value

Character string identification tag of the current display. Can be reset by an application program.

Description

Identifies, by identification tag, the display that had focus at the time of the last event in the current window.

Syntax # 2 – FieldChanged

A code indicating if the form field that had focus at the time of the last event in the current window was modified by the application user.

thisform.fieldchanged

Return Value

“1” ($True), or “0” ($False). Can be reset by an application program.

Description

Set to “1” ($True) if the value of the field that had focus changed after the application user was placed in control of the interface. Otherwise, set to “0” ($False).

Syntax # 3 – FFFieldNum

The identification number of the form field that had focus at the time of the last event in the current window.

thisform.fffieldnum

Return Value

A number. Can be reset by an application program.

Description

The identification number of the form field that had focus at the time of the last event in the current window.

The combination of ThisForm.FormNum, ThisForm.Subscript, and ThisForm.FFFieldNum can uniquely identify a particular form field in a particular form.

Example

form set (cursor) (ThisForm.formnum,ThisForm.fffieldnum,ThisForm.subscript)

Syntax # 4 – FieldTag

The tag of the form field that has focus at the time of the last event in the current window.

thisform.fieldtag

Return Value

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

Description

The identification tag of the focus form field at the time of the last event in the current window.

The combination of ThisForm.FormNum, ThisForm.Subscript, and ThisForm.FFFieldNum can uniquely identify a particular form field in a particular form.

Syntax # 5 – FormChanged

A code indicating if any form field in the form or display had been modified by the application user at the time of the last event in the current window.

thisform.formchanged

Return Value

“1” ($True), or “0” ($False). Can be reset by an application program.

Description

Set to “1” ($True) if the value of any field in the current form or display changed after the application user was placed in control of the interface. Otherwise, set to “0” ($False).

Syntax # 6 – FormNum

The form number of the form that had focus at the time of the last event in the current window.

thisform.formnum

Return Value

A number. Can be reset by an application program.

Description

The identification number of the current form at the time of the last event in the current window.

The combination of ThisForm.FormNum, ThisForm.Subscript, and ThisForm.FFFieldNum can uniquely identify a particular field in a particular form.

Example

form set (cursor) (ThisForm.formnum,ThisForm.fffieldnum,ThisForm.subscript)

Syntax # 7 – FormTag

The identification tag of the form that had focus at the time of the last event in the current window.

thisform.formtag

Return Value

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

Description

The identification tag of the current form at the time of the last event in the current window.

The combination of ThisForm.FormNum, ThisForm.Subscript, and ThisForm.FFFieldNum can uniquely identify a particular field in a particular form.

Syntax # 8 – ReqError, ReqFieldNum, ReqFormNum, ReqSubscript, ReqTag

thisform.reqerror

thisform.reqfieldnum

thisform.reqformnum

thisform.reqsubscript

thisform.reqtag

Return Value

Character string (binary). Can be reset by an application program. (ReqError)

Character string (alpha). Can be reset by an application program. (ReqTag)

Number (INT). Can be reset by an application program. (ReqFieldNum, ReqFormNum, ReqSubscript)

Description

The variables indicate if all required form fields had values at the time of the last event in the current window.

ThisForm.ReqError is set to ‘1’ ($True) if any required form field in the current form or display has not been completed when an event occurs. Otherwise, it is set to ‘0’ ($False).

If ThisForm.ReqError is ‘1’, then the other variables are set to the form number (ThisForm.ReqFormNum), form field number (ThisForm.ReqFieldNum), subscript (ThisForm.ReqSubScript), and tag (ThisForm.ReqTag) of a required form field that has no value.

Example

while

 form input

  ...commands...

  if ThisForm.reqerror = $true

   form set (focus) (ThisForm.reqformnum,ThisForm.reqfieldnum,ThisForm.reqsubscript)

  continue

 endif

endwhile

If “required” fields in the current form have not been completed, focus is set to one of those fields on the next input request.

Syntax # 9 – Subscript

The instance of the form where focus was located at the time of the last event in the current window.

thisform.subscript

Value

A number. Can be reset by an application program.

Description

Identifies, by number, the instance of the form where focus was located at the time of the last event in the current window (when several instances of the form appear in a display). If the form appears only once, ThisForm.Subscript is always 1.

For example, if a form is repeated eight times in a display, ThisForm.Subscript might be set to any number from 1 to 8. The particular number indicates in which repetition of the form the focus was located.

The combination of ThisForm.FormNum, ThisForm.Subscript, and ThisForm.FFFieldNum can uniquely identify a particular field in a particular form.

Example

form set (cursor) (ThisForm.formnum,ThisForm.fffieldnum,ThisForm.subscript)
find Products where ProdCode = fProducts.ProdCode[ThisForm.subscript]

Syntax # 10 – ValError, ValFieldNum, ValFormNum, ValSubscript, ValTag

thisform.valerror

thisform.valfieldnum

thisform.valformnum

thisform.valsubscript

thisform.valtag

Value

Character string (binary). Can be reset by an application program. (ValError)

Character string (alpha). Can be reset by an application program. (ValTag)

Number (INT). Can be reset by an application program. (ValFieldNum, ValFormNum, ValSubscript)

Description

The variables indicate if all form fields had valid values at the time of the last event in the current window.

ThisForm.ValEror is set to ‘1’ ($True) if any form field in the current form or display contains an invalid value when an event occurs. Otherwise, it is set to ‘0’ ($False).

If ThisForm.ValError is ‘1’, then the other variables are set to the form number (ThisForm.ValFormNum), form field number (ThisForm.ValFieldNum), subscript (ThisForm.ValSubscript), and tag (ThisForm.ValTag) of a form field that has an invalid value.

Example

while

 form input

 ...commands...

 if ThisForm.valerror = $true

  form set (cursor) (ThisForm.valformnum,ThisForm.valfieldnum,ThisForm.valsubscript)

  continue

 endif

endwhile

If fields in the current form failed the validation check, focus is set to one of those fields on the next input request.

See Also

DISPLAY DEFINE

Event

FORM INPUT

MENU INPUT

MENU SET

SCREEN CLEAR

SCREEN RESET

ThisMenu

WINDOW CLOSE

WINDOW OPEN

WINDOW SET

WINDOW SET CURRENT

ThisMenu

ThisMenu

A data structure that provides information about the state of the system and of the current menu at the time of the last event in that menu.

The ThisMenu data structure provides information about the state of the system and of the current menu at the time of the last event in the current window.

The ThisMenu structure contains a number of fields that are reset when the current window changes. An application program can use the information in the fields to determine what action, if any, to take.

The fields in the ThisMenu structure are:

MenuChanged, MenuItemNum, MenuItemTag, MenuNum, MenuTag

Syntax #1 – MenuChanged

Indicates if any menu item in the current menu had been modified by the application user at the time of the last

thismenu.menuchanged

Return Value

“1” ($True), or “0” ($False). Can be reset by an application program.

Description

Set to “1” ($True) if the value of any menu item in the current menu changed after the application user was placed in control of the interface. Otherwise, set to “0” ($False).

Syntax #2 – MenuItemNum

The identification number of the selected menu item on the menu at the time of the last event in the current window.

thsimenu.menuitemnum

Return Value

A number. Can be reset by an application program.

Description

The identification number of the selected item on the menu at the time of the last event in the current window.

The combination of ThisMenu.MenuItemNum and ThisMenu.MenuNum can uniquely identify a particular menu selection.

Syntax #3 – MenuItemTag

The tag of the selected menu item on the menu at the time of the last event in the current window.

thismenu.menuitemtag

Return Value

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

Description

The identification tag of the selected item on the menu at the time of the last event in the current window.

Syntax #4 – MenuNum

The identification number of the current menu at the time of the last event in the current window.

thismenu.menunum

Return Value

A number. Can be reset by an application program.

Description

The identification number of the current menu at the time of the last event in the current window.

The combination of ThisMenu.MenuItemNum and ThisMenu.MenuNum uniquely identify a particular menu selection.

Syntax #5 – MenuTag

The tag of the current menu at the time of the last event in the current window.

thismenu.menutag

Return Value

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

Description

The identification tag of the current menu at the time of the last event in the current window.

See Also

FORM INPUT

FORM SET

MENU INPUT

MENU SET

SCREEN CLEAR

SCREEN RESET

ThisForm

ThisWindow

WINDOW CLOSE

WINDOW OPEN

WINDOW SET

WINDOW SET CURRENT

$InTransaction

Indicates if an explicit transaction is in progress.

Syntax

$intransaction

Return Value

“1” ($True), or “0” ($False). Can be reset by an application program.

Description

$InTransaction acts as a flag, indicating if the software is currently processing an explicit transaction.

$InTransaction is set to “1” ($True) if a TRANSACTION (or BEGIN WORK) command has started an explicit transaction. It is set to “0” ($False) when an ENDTRANSACTION or QUITTRANSACTION (or COMMIT WORK or ROLLBACK WORK) command has closed the explicit transaction in progress.

The variable is unaffected by deadlock or implicit transactions.

Example

on deadlock
   if $intransaction = $true
      goto RetryAdd
   else
      goto previous
   endif
endon
   ... other commands ...
RetryAdd:
   transaction
   ... commands in the transaction ...
   endtransaction

In the above example, when a deadlock occurs, $InTransaction determines the course of action that the exception handler takes: restart the explicit transaction (when true) or retry the command that caused the deadlock (when false).

procedure UpdateCode (NewCode) local (DoEndTrans)
   if $intransaction = $false
      transaction
      let DoEndTrans = $true
   endif
   ... other commands ...
   if DoEndTrans = $true
      endtransaction
   endif
endprocedure

In the above example, $InTransaction starts an explicit transaction if one is not already in progress.

See Also

BEGIN WORK

COMMIT WORK

GOTO

GOTO NEXT

GOTO PREVIOUS

ON

QUITTRANSACTION

ROLLBACK WORK

System Variables

$Null

A “null” value for comparison.

Syntax

$null

Value

“Null” (a state of valuelessness). Cannot be reset by an application program.

Description

The “null” property. $Null can be written without the dollar sign.

When certain atomic expressions (variable name, field name, form field name, or formal parameter name) are used before being assigned values, or if the values are unknown, those expressions are considered to be $Null.

$Null is a property indicating a state of valuelessness; $Null is not itself a value. The null string is a value and is therefore not the same as the $Null property.

An arithmetic or functional expression that includes a $Null argument or operand always evaluates to $Null.

A logic expression that includes a $Null operand always evaluates to $False.

Because $Null is not a value, you cannot use the conditional operators = (Equals) and <> (Not Equals) to determine if an expression is $Null. Instead, the operator IS [NOT] [$]NULL is used as shown in the following example:

Salary is $null
Salary is null
Salary is not $null
Salary is not null

Note: You can write $Null without the dollar sign.

Example

if Salary is $null
 let Salary = StartingSalary
 ... commands ...
endif

See Also

$False

$True

$DeadlockReason

Indicates the reason that a deadlock condition occurred.

Syntax

$deadlockreason

Return Value

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

Description

$DeadlockReason contains one of the following reason codes for the current deadlock condition:

CodeReason
0transaction completed normally
1transaction terminated due to time out
2transaction terminated due to transaction recovery
3not in use
4attempt to do an update in a read transaction
5transaction terminated as a result of deadlock
6lock request outside a transaction (warning only)
7problem converting operating system lock (transaction terminated)
8no free file table entry (transaction terminated)

See Also

SET DOCUMENT FORMAT

System Variables

$LastErrCode

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

Syntax

$lasterrcode

Return Value

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

Description

The reason for the failure of the most recently executed command that returned an error code other than 0 (success)

At the beginning of each application session, $LastErrCode is set to $Null. Its value then changes only if a command returns an error code, or the application program explicitly assigns it a new value.

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

$ErrCode

$ErrLevel

$LastErrLevel

$LastErrMessage

$MaxErrLevel

System Variables

$WorkPath

File system path to the application user’s work directory (specified in a Zim configuration file).

Return Value

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

Description

The current work path as specified in the configuration file.

To indicate the current WorkPath directory in a file name, start the name with a close parenthesis ( ) ) character.

See Also

$ClipPath

$DBPath

$ImagePath

$ZimPath

$ZUserID

$ZUserID

The application user’s Zim user identifier.

Syntax

$zuserid

Return Value

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

Description

Upon successful execution of a LOGIN command, $ZUserID is set to the specified user’s ID.

Although you can change the value of this variable, you cannot change the effect of the LOGIN command. The software continues to treat the current user 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

About Character Literals

LOGIN

System Variables

$GroupID

The current user’s operating system group ID.

Syntax

$groupid

Return Value

A character string, or $Null. Cannot be reset by an application program.

Description

The current user’s operating system group ID (if the operating system supports group IDs); otherwise, $Null.

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

During a Zim session, you also can LOGIN to the software 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

$UserID

$ZGroupID

$ZUserID

System Variables

en_CAEnglish