Share via


Application.BaseCalendarCreate Method

Project Developer Reference

Creates a base calendar.

Syntax

expression.BaseCalendarCreate(Name, FromName)

expression   A variable that represents an Application object.

Parameters

Name Required/Optional Data Type Description
Name Required String The name of the base calendar to create.
FromName Optional String The name of the base calendar to copy.

Return Value
Boolean

Remarks

To create a local calendar when Project Professional is logged on to Project Server, you must check Allow projects to use local base calendars on the Additional Server Settings page in Project Web Access. Restart Project Professional after changing the setting in Project Web Access.

Example
The following example creates a new base calendar called "Base Holiday Calendar."

Visual Basic for Applications
  Sub CreateHolidayCalendar()
    BaseCalendarCreate Name:="Base Holiday Calendar"
End Sub

See Also