ITrkRegion.AdvanceModel (method)

method AdvanceModel
Syntax: object.AdvanceModel sDestRegion, sComment, sUserID
Parameters:
sDestRegion As String -

Destination Region
sComment As String -

Comment
sUserID As String -

User ID
Description:
The AdvanceModel method moves all items at the FIRST (EXIT) location in the source region to the LAST (ENTRY) location in the destination region.

Example:

Dim oRegionAgent As Object
Set oRegionAgent = CreateObject("Tracker.TrkRegionAgent")
Dim oRegions As Object
Dim oRegion As Object
oRegionAgent.ProjectID = "PA1"
Set oRegions = oRegionAgent.Execute
Set oRegion = oRegions.Item(1)
oRegion.AdvanceModel "DEST", "Adv. to Reg. DEST", "ADMINISTRATOR"
...
...