P
Paul S
I want to have a second tab which stores who changed
certain fields and when. This works perfectly with the
attached stript PROVIDED the first thing the receipiant
does is look at the second tab. If the user does not
look at the second tab the data doesn't get stored.
Any ideas on why this is happening or another way around
the problem.
Thanks
Set WshShell = CreateObject("WScript.Shell")
Sub Item_CustomPropertyChange(ByVal Name)
Select Case Name
Case "ACCEPTREJECT"
Item.UserProperties("TECHAPPROVALBY")
=WshShell.ExpandEnvironmentStrings("%USERNAME%")
&"("&Time&" "&Date&")"
End Select
End Sub
certain fields and when. This works perfectly with the
attached stript PROVIDED the first thing the receipiant
does is look at the second tab. If the user does not
look at the second tab the data doesn't get stored.
Any ideas on why this is happening or another way around
the problem.
Thanks
Set WshShell = CreateObject("WScript.Shell")
Sub Item_CustomPropertyChange(ByVal Name)
Select Case Name
Case "ACCEPTREJECT"
Item.UserProperties("TECHAPPROVALBY")
=WshShell.ExpandEnvironmentStrings("%USERNAME%")
&"("&Time&" "&Date&")"
End Select
End Sub