Question:
How can I reset all internal tags in a certain folder?
Solution:
One way to do so is via a script that scans all objects in the given folder while testing each object’s time. If the object is an InternalTag, then its Value property must be attributed the value 0 (zero).
Sample script:
Dim Folder
Set Folder = Application.GetObject(“Data”)
For each obj in Folder
If TypeName(obj) = “InternalTag” Then
obj.Value = 0
End If
Next