How to programmatically change the default view of an InfoPath 2003 form (826997)
The information in this article applies to:
- Microsoft Office InfoPath 2003
- Microsoft Office InfoPath 2003, Service Pack 1 (SP1)
SUMMARYMicrosoft Office InfoPath forms support multiple views. One view is the default view. When you open a form in InfoPath, you open
the form in the default view. This article describes how to programmatically change the default view of an InfoPath form. back to the topCreate a New Form- Start InfoPath 2003.
- On the File menu, click Design a Form.
- On the Design a Form task pane, click New Blank Form.
back to the topCreate View 1- On the blank form, type This is View 1 on the first line, and then type Check to display View 2 when the form is opened on the second line.
- On the Task Pane drop-down menu, click Controls.
- In the Controls task pane, click Check Box.
- Change the Check Box text to View 2.
back to the topCreate View 2- On the Task Pane drop-down menu, click Views.
View 1 is the default view for the form. - In Actions section of the task pane, click Add a New View.
- Type the name View 2, and then click OK.
- On the blank form, type This is View 2.
back to the topAdd the Script- On the Tools menu, point to Script, and then click Microsoft Script Editor.
- Add the following code to the Code window:
function XDocument::OnLoad(eventObj)
{
//Pick the default view based on the value of element DefaultView
var objDefaultView = XDocument.DOM.selectSingleNode("//my:field1");
if ((objDefaultView != null) && (objDefaultView.text != ""))
{
switch (objDefaultView.text)
{
case "false":
XDocument.ViewInfos("View 1").IsDefault = true;
break;
case "true":
XDocument.ViewInfos("View 2").IsDefault = true;
break;
}
}
} - Save the script, and then close the Microsoft Script Editor.
- Save your form template as SwitchDefaultView.xsn, and then close the form template.
back to the topTry It Out- On the File menu, click Fill Out a Form.
Note Make sure that you fill out the form in this step instead of previewing the form. Preview does not reflect any programmatic change of the default view in the OnLoad event. Preview mode always shows the view that is currently selected in the InfoPath Designer. - In the task pane, click SwitchDefaultView.
The form opens in View 1 (the initial default view). - Click the View 2 check box.
- Save the form as SwitchDefaultViewForm.xml, and then close the form.
- On the File menu, click Open.
- Locate SwitchDefaultViewForm.xml, and then click Open.
The form opens in View 2. back to the top
Modification Type: | Minor | Last Reviewed: | 8/30/2004 |
---|
Keywords: | kbhowto KB826997 kbAudDeveloper kbAudITPRO |
---|
|