IsNewInProgress method (WinStudio scripts)
Applies To
IWSIDOCollection interface
Definition
Returns a Boolean value indicating whether a New operation is in progress for a specified IDO collection.
Syntax
object.IsNewInProgress( )
Part | Description |
object | Required. The name of a valid IDO collection object. |
Remarks
A return value of:
- TRUE indicates that a New operation is in progress.
- FALSE indicates that a New operation is not in progress.
Example
Dim bValue As Boolean bValue = ThisForm.PrimaryIDOCollection.IsNewInProgress() If bValue Then ' Perform some task if a New operation is in progress . . . End If