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
Public MustOverride Sub SetSaveAsDialogLocation ( _
pathname As String _
)
'Usage
Dim instance As XmlForm
Dim pathname As String
instance.SetSaveAsDialogLocation(pathname)
public abstract void SetSaveAsDialogLocation(
string pathname
)
Parameters
pathname
Type: System.StringThe path to save to.
Exceptions
Exception | Condition |
---|---|
FileNotFoundException | The path is invalid. |
ArgumentNullException | The parameter passed to this method is a null reference (Nothing in Visual Basic). |
ArgumentException | The parameter passed to this method is not 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 InfoPath Filler.
Examples
In the following code 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\")