Crsr_Activate

SUMMARY

Crsr_Activate - Activate sort and filter setting

SYNTAX

Crsr_Activate(<CursorID>)

ARGUMENTS

CursorID
- Connects the Listbox to a resource.

DESCRIPTION

It activates all setup sort= and filter functions.

Note:
After stopping and modifying any sort= and/or filter functions in runtime they must be activated.

If in the runtime a filter- by Crsr_ResetFLtr and/or a sort- by Crsr_ResetSort parameter is deactivated it is possible to define new parameters. The new (or old) ones must be activated by the above action.

A complete sequence of actions bound to a button might look like:
Crs_ResetFltr(ALARM)
Crs_ResetSort(ALARM)
Fltr_xxxxx           (new Filter definition)
Sort_xxxxx           (new Sort definition)
Crsr_Activate(ALARM)

EXAMPLES

Crsr_Activate(Alarm)


Syntax Notation
[aaa]
aaa is optional (zero or one occurences)
(aaa|bbb)
aaa exclusive or bbb
(aaa)*
aaa may occur indefinitely often or may be omitted
(aaa)+
aaa may occur indefinitely often but at least once
(aaa)m..n
aaa may occur from m to n times