XmlForm.SetSaveAsDialogLocation Method (Microsoft.Office.InfoPath)
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
The path to save to.
Exceptions
Exception type | Condition |
---|---|
The path is invalid. |
|
The parameter passed to this method is null. |
|
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