WinStudio
IWSIDOCollection interface
Indicates whether more rows are available from the IDO layer to be retrieved and appended or prepended to the collection.
object.GetMoreRowsEnabled
Part |
Description |
object | Required. A reference to a form or form component object. |
The return value is a Boolean value.
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