property CalendarCombo.FirstDay as WeekDayEnum
Retrieves or sets a value that indicates the first day of the week.

TypeDescription
WeekDayEnum A WeekDayEnum expression that defines the first day of the week.

Use the FirstDay property to define the month for a specific language.  Use the WeekDays property to define the shortcut for each week day. Use the MonthNames to define the name for each month. For instance, in Europe,  the week starts on Monday. The following sample defines the "french" style:

Private Sub Form_Load()
    With CalendarCombo1
        .FirstDay = Monday
        .MonthNames = "Janvier Février Mars Avril Mai Juin Juillet Août Septembre Octobre Novembre Décembre"
        .WeekDays = "D L M M J V S"
    End With
End Sub