WinStudio
IWSIDOCollection interface
Goes to the next object in a specified IDO collection and returns a Boolean value indicating whether this navigation was successful.
object.Next( )
Part |
Description |
object | Required. A reference to a valid IDO collection object. |
A return value of:
If there was no next object and if the New operation is enabled for the form, indicates that this method created a new object and navigated to it.
If there was no next object and if the New operation is disabled for the form, indicates that this method did not create a new object.
Sub Main() Dim bIsNext As String bIsNext = ThisForm.PrimaryIDOCollection.Next().ToString Application.ShowMessage(bIsNext) End Sub