WinStudio
IWSIDOCollection interface
Returns a Boolean value indicating whether the specified IDO collection object's data has been modified.
object.IsCollectionModified( )
Part |
Description |
object | Required. The name of a valid IDO collection object. |
A return value of:
Sub Main() Dim subCol As IWSIDOCollection subCol = ThisForm.PrimaryIDOCollection() If subCol.IsCollectionModified() Then Application.ShowMessage("The primary collection has been modified without saving.") Else Application.ShowMessage("The collection has not been modified.") End If End Sub