Field RelPerUser

Whether this relationship is defined to be per user.

Valid Values

“yes” or “no” (the default value is “no”).

Remarks

The RelPerUser field only applies to Relationships with fields because there is no physical file to be handled.

Normally, Relationships with fields belong to the database and are managed by ZimServer. However, per user Relationships have these differences:

. They are handled by the current session and their information is lost after the session finishes;

. They are located in the $WorkPath directory;

. They don’t suffer any locks because they belong to the current user and no other users can access them;

. They don’t exist at the beginning of the session and must explicitly be created (or recreated) at any time by the application via the command INITIALIZE PERUSER. There is no need to keep a “storage” full of empty copies of all per user Relationships used by the Zim  application.

In previous versions of Zim, per user Relationships were indicated with the “)” mark in the AREAS.ZIM file. This is no longer needed and any such entries will flagged with an error.

Field EntPerUser

Whether this entity set is defined to be per user.

Valid Values

“yes” or “no” (the default value is “no”).

Remarks

Normally, entity sets belong to the database and are managed by ZimServer. However, per user entity sets have these differences:

. They are handled by the current session and their information is lost after the session finishes;

. They are located in the $WorkPath directory;

. They don’t suffer any locks because they belong to the current user and no other users can access them;

. They don’t exist at the beginning of the session and must explicitly be created (or recreated) at any time by the application via the command INITIALIZE PERUSER. There is no need to keep a “storage” full of empty copies of all per user entity sets used by the Zim  application.

In previous versions of Zim, per user entity sets were indicated with the “)” mark in the AREAS.ZIM file. This is no longer needed and any such entries will flagged with an error.

Multiple Windows

Using Multiple Windows

So far we have dealt with the simple case where there is only one window. Now, let’s investigate the more usual case where many windows can be active simultaneously. Assume that the above examples have been built within a database that defines customers, products, and orders and that we have created non-modal windows and programs for viewing and browsing these objects. Assume also that these new programs have been built using the Framework (i.e. they register themselves and so on) and that they have been called ProcCustomers, ProcProducts, and ProcOrders respectively.

We would want to be able to open these windows from our main application window, so the first change we must make is to add menu items to the main application window menu. For example, we might have a menu items that says “Customers…” and assign the tag “CUSTOMERS” to it. Similarly, we could have menu items with labels “Products…” and “Orders…” and give these tags “PRODUCTS” and “ORDERS” respectively. The actual labels and tags could be different of course.

To handle these new actions, we add the following lines to the main window program, MainWindowProg, after line [73].

[73.1]when vlAction = "CUSTOMERS"
[73.2]  ProcCustomers (vlStatus, "ENTERWINDOW")
[73.3]when vlAction = "PRODUCTS"
[73.4]  ProcProducts (vlStatus, "ENTERWINDOW",
[73.5]when vlAction = "ORDERS"
[73.6]  ProcOrders (vlStatus, "ENTERWINDOW")

Since there can be several windows open at one time, we must ensure that the Framework makes the windows for processing customers, products, and orders “children” of the main application window. By doing this, we can be sure that, if the user exits from the main window, all other windows are closed properly (see the discussion on EXIT and EXITAPPLICATION below). At any given time, the Framework tracks what it thinks is the current process (the one being interacted with at that time). Every time our application window gets the focus, we want to tell the Framework that this is the current process. This is done by inserting the following lines after line [75] that are executed when an ENTERWINDOW occurs.

[75.1] %%make ourselves current
[75.2]  pSetCurrentProcess ("wMainWindow")

Handling EXIT and EXITAPPLICATION also needs some changes. For example, if we are terminating the main application window, we need to tell the other windows to EXIT as well. We don’t want to build in to each window the knowledge of all other windows, so we add a new local variable to the local procedure plExecAction

[68a]              in vlAction) \
[68a.1]       local ( vlProcessId)

and replace lines [81a] to [84a] with the following.

[81b]when vlAction in ("EXIT", "EXITAPPLICATION")
[82b]    pDispatchAction (vlStatus, "EXIT", \
[83b]           "#TOCHILDREN", \
[84b]           MainState.stProcessId, "")
[84b.1] if vlStatus <> "CANCEL"
[84b.2]   plClose (vlStatus)
[84b.3]   pUnRegisterProcess (vlStatus, \
[84b.4]           MainState.stProcessId, "")
[84b.5]endif

In this new code, we first make a call to pDispatchAction. This call uses the #TOCHILDREN parameter to indicate that the EXIT action is to be sent to all the application window’s children. In this case, that means any of the windows for editing customers, products, or orders (if they are open). Notice that the application window code does not need to know who its children are or if they are open. The Framework keeps track of that.

If all processes (except the main application window) EXIT, then vlStatus is not CANCEL, then plClose is called to close the application window and then pUnRegisterProcess is called to tell the Framework that this window is terminating.

Predefined Color Constants

These numeric constants are in Zim’s data dictionary. They can be used instead of the number value to make your code more readable.

Color Constant NameValueColor Constant NameValue
Inherited from the parent0cInactiveCaptionTxt19
Black1cWindowText20
Blue2cWindowFrame21
Green3cScrollBarColor22
Cyan4cMenuTextColor23
Red5cMenuColor24
Magenta6cInactiveCaption25
Brown7cInactiveBorder26
LightGrey8cHighlightText27
DarkGrey9cHighlightColor28
LightBlue10cGreyText29
LightGreen11cCaptionText30
LightCyan12cButtonText31
LightRed13cButtonShadow32
LightMagenta14cButtonFace33
Yellow15cWindowBackground34
White16cAppWorkSpace35
cWindowColor17cActiveCaption36
cButtonHighlight18cActiveBorder37

Field DirName

The name of an application directory (Directories); otherwise, the one application directory in which the associated object may exist.

Valid Values

An 18-character string, containing a valid object name

Remarks

In Directories:

DirName is the name assigned to the directory.

In other Object Dictionary entity sets:

In any entity set, the principal object’s DirName must match the DirName of its owner.

If DirName is left blank, the object may exist in any number of application directories.

In DDDescriptions, DirName is where the object being described may be found.

In DisplayForms, DirName is where the owner-display of the associated form may be found.

See Also

ConstName, DDObjectName, DDOwnerName, DisplayName, DocName, EntName, FieldName, FormName, MenuName, OwnerName, RelName, RoleName, SetName, UserName, VarName

DDDescriptions

Stores additional descriptive information about any type of object.

An Object [data] Dictionary description is a programming object. The descriptions in DDDescriptions are available for use by special development tools, either those potentially available from Zim or those created by the application developer.

Establishing a Description

Call up the Development Center with the DC command, select DDDESCRIPTIONS from the OBJECTS drop-down menu, and use the tools of the Development Center to define the desired description.

Fields of the Descriptions Entity Set

Attributes

Description

DDObjectName

Name of the object being described

DDOwnerName

Name of the object that “owns” the object being described

DirName

Application directory location of the object being described

DDObjectType

The type of object being described

DDObjectDesc

The description

ObjectKey

A unique identifier assigned by the Development Center

 

Field LoadOrder

Order in which to load data into form instances in a display. Indicates how data is to be loaded into forms that are repeated in a display.

Valid Values

A 1-character code, as shown in the table below:

Code

Meaning

R

“Row major” order (left-to-right, top-to-bottom–default)

C

“Column-major” order (top-to-bottom, left-to-right)

 

Field RA (RD)

Number and direction of the instances of a form in a display.

RA is the number of repeats left-to-right across the display; RD is the number of repeats top-to-bottom down the display. The total number of instances of a particular form is the product of RA and RD (RA*RD).

For example:

Figure

Valid Values

An integer (1 to 999)

If RA or RD is not specified, 1 is used.

Remarks

When a form is repeated in a display, each instance of the form is assigned a subscript. The subscripts always begin at 1. If LoadOrder is row-major, then subscripts are assigned from left to right and top to bottom; otherwise, they are assigned from top to bottom and left to right.

See Also

LoadOrder, ThisForm (Language Reference)

Field WdgCol

The horizontal position of the left edge of the object, expressed in twips.

Required: Either Col (characters) or WdgCol (twips) must be specified

Valid Values

A number (longint)

Remarks

In DisplayForms, indicates the horizontal position of the left edge of the first occurrence of the form in relation to the display.

In FormFields, indicates the horizontal position of the left edge of the form field in relation to its parent object (form field, form, menu).

In Menus, indicates the horizontal position of the left edge of the menu in relation to the window.

In Windows, indicates the horizontal position of the left edge of the window. For a pop-up window, this position is relative to the screen; for a clipped window, this position is relative to its parent window’s client area.

See Also

Col, WdgClass, WdgRow

Field WdgRow

The vertical position of the top edge of the object, expressed in twips.

Valid Values

A non-negative number (longint)

Remarks

In DisplayForms, indicates the vertical position of the top edge of the first occurrence of a repeated form in relation to the display.

In FormFields, indicates the vertical position of the top edge of the form field in relation to the form field’s parent object (form or other form field, or menu or other menu item).

In Menus, indicates the vertical position of the top edge of the menu in relation to the screen. Applies only to menus of the Pop-up class.

In Windows, indicates the vertical position of the top edge of the window. For a pop-up window, this position is relative to the screen; for a clipped window, this position is relative to its parent window’s client area.

It is required when either Row (characters) or WdgRow (twips) must be specified

See Also

Row, WdgClass, WdgCol

en_CAEnglish