I have a script which gets the list of Personal Stamps and apply the appropriate one to the image. This code works fine for two of the stamps (Laserfiche User and Salah Hassan in the screenshot below) but doesn't work for any other.
StampInfoReader ListOfStamps = Stamp.EnumPersonalStamps(mySess); foreach (StampInfo SI in ListOfStamps) { MsgBox("Name: " + SI.Name); if (SI.Name == "Khamis") { MsgBox("Stamp Found"); } }
I wrote this code a while ago, so I am just curious if 'Adding Personal Stamp' was the right way to define a stamp, which could be used/accessed using Code in workflow.
If I change the name of the Personal Stamp e.g Laserfiche User 1, I can still access the Stamp of name 'Laserfiche User', which actually means that this is not the right way/place of defining stamps (which could be accessed by WF).