Programmatically remouving signatures

C

Carlos Rodriguez

Has anyone be able to remove the signatures programmaticallly and not to
have the need on pressing the menu button Remove Signatures for the controls
signed to be editable again?

I'm able to remove the signatures :
.....
XPathNavigator sigNode = oSignature.SignatureBlockXmlNode;
if (sigNode != null)
sigNode.DeleteSelf();

but I need to close and reopen the form in order to edit the fields that
were signed
or click the remove signatures menu bar button
 
S

Shiva (GGK Tech)

Hello,

Removing the signature code where you are writing in your code? Is it onLoad
event then it will remove the signature as per your code. For every time you
want to remove the signature then you have to write this code in onLoad.
 
Top