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.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top