SetDefaultWorkgroupFile Method

Microsoft Access Visual Basic

expression.SetDefaultWorkgroupFile(Path)

expression    Required. An expression that returns one of the objects in the Applies To list.

Path   Required String. The full path and file name of the workgroup file to use as the default.

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.

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