Is it possible to invoke one from from another in SharePoint?

J

Jim SRA

I have two forms, say A and B. Both are standalone forms, however, I would
like to anyone filling out form A to be able to start filling out form B
directly, i.e., without having to navigate to the form libraries and
selecting form B.
 
A

Anuma(GGK Tech)

Hi,

Add one button in the form A and double click on the button and click on
edit form code. Copy paste the below code.

this.Application.XmlForms.Open(“URL of the Formâ€);

URL of the Form = “http://<Sharepoint folder path for form B>/
Forms/template.xsnâ€

Before passing the complete URL to above code, verify that form is opening
when you open the above link from IE page.

Second form will be opened from first form if you click on the button.
 
Top