The following example displays the taskÆs details in a message box:
Sub Main
MsgBox CurrentTask2.Details
End Sub
This example sets the taskÆs details to ôThis task is responsible for rebooting the server at 5AM each morning.ö
Sub Main
CurrentTask2.Details = ôThis task is responsible for rebooting the server at 5AM each morning.ö
End Sub
This example sets the taskÆs details to ôYou love AutoMateÖ.ö
Sub Main
CurrentTask2.Details = ôYou love AutoMateÖ.ö
End Sub