MSCAL.Calendar.7 - Starting Day

B

Bob Barnes

Looks like the "Default" starting Day Of
the Week is Monday.

Is there a way to to Program the Calendar
Control to start on Sunday?

TIa - Bob
 
W

Wolfgang Kais

Hello Bob.

Bob said:
Looks like the "Default" starting Day Of the Week is Monday.

Is there a way to to Program the Calendar Control to start on Sunday?

Open the form in design view and right-click the calendar control. In
the context menu, click on the "Calendar-Object" submenu and then on
"properties". Change the "First Day of the Week" setting there.
Or, you can change the FirstDay property through either the properties
window or by VBA code. Use the weekday constants like vbSunday (=1).
 
B

Bob Barnes

Wolfgang - BEAUTIFUL !!! Thank you - Bob

Wolfgang Kais said:
Hello Bob.



Open the form in design view and right-click the calendar control. In
the context menu, click on the "Calendar-Object" submenu and then on
"properties". Change the "First Day of the Week" setting there.
Or, you can change the FirstDay property through either the properties
window or by VBA code. Use the weekday constants like vbSunday (=1).
 
Top