Application.SetDefaultWorkgroupFile Method

Access Developer Reference

Sets the default workgroup file to the specified file.

Syntax

expression.SetDefaultWorkgroupFile(Path)

expression   A variable that represents an Application object.

Parameters

Name Required/Optional Data Type Description
Path Required String The full path and file name of the workgroup file to use as the default.

Return Value
Nothing

Remarks

If the file specified by Path does not exist, an error occurs.

Example

The following example sets the default workgroup file to the file system.mdw in the directory C:\Documents and Settings\Wendy Vasse\Application Data\Microsoft\Access.

Visual Basic for Applications
  Application.SetDefaultWorkgroupFile _
    Path:="C:\Documents and Settings\Wendy Vasse\" _
    & "Application Data\Microsoft\Access\system.mdw"

See Also