property Status | |
Syntax: | long*pVal =
object.Status object.Status = long*pVal |
Description: | The Status property will set/get the status of the given item. Example: Dim oTrkItemAgent As Object Dim oTrkItems As Object Dim oTrkItem As Object Set oTrkItemAgent =
CreateObject("Tracker.TrkItemAgent") oTrkItemAgent.Execute oTrkItems Set oTrkItem = oTrkItems.Item(1) MsgBox oTrkItem.Status oTrkItem.Status = 12 oTrkItem.CommitChanges |