Flt_ArchActStsEq

SUMMARY

Flt_ArchActStsEq

SYNTAX

Flt_ArchActStsEq(<CursorID>,<Status>,<Mask>)

ARGUMENTS

CursorID
- Connects the Listbox to a resource.
Status
- Is checked for equality
Mask
- Pattern is used to mask the actual status

DESCRIPTION

For the named cursor the actual status is masked and compared for equality with that one defined as a parameter.

EXAMPLES

Flt_ArchActStsEq(Undef,16,19)

The Status is masked with 19 and compared with 16 for equality afterwards.

Actual status   0001 0001 (17)       1001 0000 (144)
Mask            0001 0011 (19)       0001 0011 (19)          
Result          0001 0001 (17)       0001 0000 (16)  
Compared with   0001 0000 (16)       0001 0000 (16)
Displayed ?         NO                  YES
		  


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