Preventing Removal of Digital Signatures

G

Greg

Hi,

Does anyone know if you can stop people from removing the
digital signatures on the form? Either through infopath or
through code?

Thanks,
Greg.
 
B

bhavani

hi,
write small piece of code onBeforechange handler on the groupnode of
signatures,ie
if e.operation="Delete" then
e.returnstatus=false
end if
This avoids people from removing the digital signatures on the form
 
Top