XmlFormCollection.Open Method (String)

Opens the specified form.

Namespace:  Microsoft.Office.InfoPath
Assembly:  Microsoft.Office.InfoPath (in Microsoft.Office.InfoPath.dll)

Syntax

'Declaration
Public MustOverride Function Open ( _
    fileLocation As String _
) As XmlForm
'Usage
Dim instance As XmlFormCollection
Dim fileLocation As String
Dim returnValue As XmlForm

returnValue = instance.Open(fileLocation)
public abstract XmlForm Open(
    string fileLocation
)

Parameters

  • fileLocation
    Type: System.String

    The Uniform Resource Identifier (URI) of the form to open.

Return Value

Type: Microsoft.Office.InfoPath.XmlForm
An XmlForm object that represents the form that was opened.

Remarks

The Open method can only be used to open a form; it cannot be used to open a form template. To create a form from a form template, use the NewFromFormTemplate method. To create a form that is based on an existing form, use the New method.

When you use the Open method, the specified form opens in Microsoft InfoPath 2010 and is ready to be filled out.

This member can be accessed only by forms running in the same domain as the currently open form, or by forms that have been granted cross-domain permissions.

This type or member can be accessed only from code running in forms opened in Microsoft InfoPath Filler.

Examples

In the following code example, the Open method of the XmlFormCollection class is passed the URI of the form to open, and its associated XmlForm object is returned.

XmlForm document = this.Application.XmlForms.Open(@"C:\MyForm.xml");
Dim document As XmlForm = Me.Application.XmlForms.Open("C:\MyForm.xml")

See Also

Reference

XmlFormCollection Class

XmlFormCollection Members

Open Overload

Microsoft.Office.InfoPath Namespace