Anyone know how to do this?

Y

You Big Dummy

I am more of an architect and just getting into the dev part. I a blank
infopath form and I want to sign it with digital signatures and not have to
go through the signing wizard. I looke at microsoft's article here
http://msdn.microsoft.com/library/d...2003_ta/html/ODC_INFDigitallySigningData2.asp

But, I don;t want a full form template. I just want to modify a blank form
so that every form I create from that blank form will be able to be signed
without going through the wizard. When you choose programming>on sign event
in infopath you see this in the window. How do I modify this so the form will
add digital signatures to the form without going thorugh the wizard. Thanks
in advance if anyone can help!

// The following function handler is created by Microsoft Office InfoPath.
// Do not modify the name of the function, or the name and number of
arguments.
//=======
function XDocument::OnSign(eventObj)
{
// The OnSign handler can be customized only in fully trusted form templates.

var Signature = eventObj.SignedDataBlock.Signatures.Create();

// You can add other pieces of information to sign by modifying the
signature template in Signature.SignatureBlockXmlNode

Signature.Sign();
eventObj.ReturnStatus = true;

}
 
D

Deborah Jean

I think, and I'm no expert that would be sym wong a ton or kalyan reddy, but
I think you can go to tools and digital signatures...it's not a wizard and it
seems like if you send it up the chain of command everyone digitally signs
it. S Y M or Kalyan will tell me if I'm right or not. And change your
screen name you are not a big dummy it's just something you haven't learned
yet. Jeez, I even sound like an instructor here.

Deborah Jean

P.s. SYM or kalyan you will let me know if I got that right won't yoU?
Teaching the teacher got to love it don't ya?
 
Y

You Big Dummy

I don't think that we are talking about the same thing here! When a user
digitally signs a form they are prompted with a wizard to sign the form. I
want to bypass that wizard.
 

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