Microsoft 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.
Create a New Form
- Start InfoPath.
- In InfoPath 2007, click Design a Form Template on the File menu.
In InfoPath 2003, click Design a Form on the File menu. - In InfoPath 2007, click Blankin the Design a Form Template task pane, and then click OK.
In InfoPath 2003, click New Blank Form in the Design a Form task pane.
Create 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.
Create 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.
Add the Script
InfoPath 2007
In InfoPath 2007, you must first set the programming language that you want to use. Then, add the script.
Note
This example uses the C# programming language. You can use Visual Basic or other available options.
Set the programming language
Before you run this sample script in InfoPath 2007, you must change the programming language to C#. To do this, follow these steps:
Warning
The Remove Code command that is mentioned in the following steps removes all existing code from the current form. Therefore, do not use this option, unless you are sure that you want to perform this action.
- On the Tools menu, click Form Options .
- In the Category list, click Programming . If the Form template code language box is disabled, click Remove Code to remove all existing code in the form. If the Form template code language box is available, go to the next step.
- In the Form template code language box, click C#, and then click OK .
Use the script
Add the script to the Loading Event. To do this, follow these steps:
- On the Tools menu, point to Programming , and then click Loading Event . Microsoft Visual Studio Tools for Applications starts.
- Add the following code example to the Age_OnValidate event.
{
//Create an XPathNavigator object for the main DOM
XPathNavigator xnDocument = this.MainDataSource.CreateNavigator();
//Create an XPathNavigator object for field1 - the check box for switching the View
XPathNavigator xnDefaultView = xnDocument.SelectSingleNode("/my:myFields/my:field1", this.NamespaceManager);
//Insure the XPathNavigator object is not null or an empty string
if ((xnDefaultView != null) && (xnDefaultView.Value != ""))
{
//Switch to the appropriate View
switch (xnDefaultView.Value)
{
case "false":
e.SetDefaultView("View 1");
break;
case "true":
e.SetDefaultView("View 2");
break;
} - Save the changes, and then close Visual Studio Tools for Applications.
- Save your form template as SwitchDefaultView.xsn, and then close the form template.
InfoPath 2003
To add the script in InfoPath 2003, follow these steps:
- 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.
Try 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 InfoPath 2007, click SwitchDefaultView under Open a Form.
In InfoPath 2003, click SwitchDefaultView in the task pane.
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.