Hello,
I have written custom code to submit a form to a SHarePoint form library. I
want InfoPath to close after the user submits the form. I know that in the
submit options you can choose to close the form but I want the whole program
to close. Does anybody know the JScript code that I could add that would do
that???
Thanks,
Pam
bratt - 02 Sep 2005 18:27 GMT
in vb.net it is:
thisXDocument.Submit()
thisXDocument.View.Window.Close(True)
I'd assume JScript is similar...
> Hello,
> I have written custom code to submit a form to a SHarePoint form library. I
[quoted text clipped - 5 lines]
> Thanks,
> Pam
Weisen - 28 Sep 2005 13:40 GMT
Application.ActiveWindow.Close(false);
the above JScript works.
Weisen
> in vb.net it is:
> thisXDocument.Submit()
[quoted text clipped - 11 lines]
> > Thanks,
> > Pam