WinStudio

Next Method

Applies To

IWSIDOCollection interface

Definition

Goes to the next object in a specified IDO collection and returns a Boolean value indicating whether this navigation was successful.

Syntax

object.Next( )

  Part

  Description

object Required. A reference to a valid IDO collection object.

Remarks

A return value of:

Example

Sub Main()
   Dim bIsNext As String
   bIsNext = ThisForm.PrimaryIDOCollection.Next().ToString
   Application.ShowMessage(bIsNext)
End Sub