I'm updating a CAT project from LF9x to 10.2 and I've noticed that the following line (for debugging purposes) always returns a value of False for each.
MsgBox(EI.Name.ToString & " | " & EI.Id & " " & "LockVal: " & EI.IsLocked & " PendingVal: " & EI.IsPending & " ModVal: " & EI.IsModified)
I need to establish if the document has been changed before I update the image or metadata. Currently in this version of the toolbar add-in, the if statement "If EI.IsLocked Then" is never triggered
Ideally, I'd like to save the entry without prompting the user to do so within the client.
Anyone working with CustomButtonManager in 10.2?