TrackStatus Property [Excel 2003 VBA Language Reference]
True if status tracking is enabled for the routing slip. Read/write Boolean.
Remarks
You cannot set this property if routing is in progress
Example
This example sends Book1.xls to three recipients, with status tracking enabled.
Workbooks("BOOK1.XLS").HasRoutingSlip = True
With Workbooks("BOOK1.XLS").RoutingSlip
.Delivery = xlOneAfterAnother
.Recipients = Array("Adam Bendel", _
"Jean Selva", "Bernard Gabor")
.Subject = "Here is BOOK1.XLS"
.Message = "Here is the workbook. What do you think?"
.ReturnWhenDone = True
.TrackStatus = True
End With
Workbooks("BOOK1.XLS").Route
Applies to | RoutingSlip Object