Share via


XmlForm.SetSaveAsDialogLocation Method

Sets the default path for saving the form using the SaveAs dialog box.

Namespace: Microsoft.Office.InfoPath
Assembly: Microsoft.Office.InfoPath (in microsoft.office.infopath.dll)

Syntax

'Declaration
'Usage

Parameters

  • pathname
    The path to save to.

Exceptions

Exception type Condition

FileNotFoundException

The path is invalid.

ArgumentNullException

The parameter passed to this method is null.

ArgumentException

The parameter passed to this method isnot valid. For example, it is of the wrong type or format.

Remarks

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 Office InfoPath 2007.

Example

In the following example, the SetSaveAsDialogLocation method of the XmlForm class is used to set the default path for the SaveAs dialog box to "C:\SampleFiles\".

this.SetSaveAsDialogLocation("C:\\SampleFiles\\");
Me.SetSaveAsDialogLocation("C:\SampleFiles\")

See Also

Reference

XmlForm Class
XmlForm Members
Microsoft.Office.InfoPath Namespace