WinStudio
IWSForm interface, forms with secondary IDO collections
Returns a Visual Basic object that references the specified secondary IDO collection.
varObject = object.GetSecondaryIDOCollection( integer )
Part |
Description |
varObject | Required. A Visual Basic variable that is defined as an object and that references the secondary IDO collection object being returned. |
object | Required. Reference to a valid form object. |
integer | Required. The index number of the secondary IDO collection. |
Sub Main() Dim oSecColCache As IWSIDOCollection oSecColCache = ThisForm.GetSecondaryIDOCollection(2) Application.ShowMessage(oSecColCache.IsEOF.ToString()) End Sub