EsbSetFilterRow

Sets the next row of a filter.

Syntax

EsbSetFilterRow (hCtx, FltRow, pAccess)
ByVal hCtx    As Long
ByVal FltRow  As Any
ByVal pAccess As Integer
ParameterDescription

hCtx

VB API context handle.

FltRow

Pointer to the next row of the filter.

pAccess

Access level for the filter row.

Notes

This function should be called repeatedly after calling EsbSetFilter(), once for each row of the filter, terminating the row list with NULL.

Return Value

None.

Access

This function requires the caller to have Database Design privilege (ESB_PRIV_DBDESIGN) for the specified database.

Example

Declare Function EsbSetFilterRow Lib "ESBAPIN" (ByVal hCtx As Long, ByVal FltRow As Any, ByVal pAccess As Integer) As Long

See the example for EsbSetFilter.

See Also