GetMoreRowsEnabled property (WinStudio scripts)
Applies To
IWSIDOCollection interface
Definition
Indicates whether more rows are available from the IDO layer to be retrieved and appended or prepended to the collection.
Syntax
object.GetMoreRowsEnabled
Part | Description |
object | Required. A reference to a form or form component object. |
Remarks
The return value is a Boolean value.
Example
Sub Main() If ThisForm.PrimaryIDOCollection.GetMoreRowsEnabled Then Application.ShowMessage("More rows are available from the server.") Else Application.ShowMessage("All rows have been retrieved.") End If End Sub
Related topics