RowCount

For a given record set, this function will get the number of rows returned in the object.

Group: DataRecord Object


Syntax: vValue = oData.RowCount

vValue     (Variant) the number of rows in the DataRecord

Example:

When using the TM.GetItems method, the number of queue entries returned would be returned.

Dim oData As New DataRecord

Dim iValue As Integer

TM.GetItems(tmCompleted, Date, App.User, oData)

iValue = oData.RowCount