Calendar ActiveX Control ReferenceMethods SetDayCaptions Calendar ActiveX Control SetDayCaptions Set the day captions. e.g. Sunday, Monday. Public Function SetDayCaptions( ByVal iIndex As Integer, _ ByVal strCaption As String, _ ) as Boolean ParameteriIndex - the index of day you want to change the caption. Start from zero.strCaption - the string of captionReturn ValueTrue - Successful , False - Failed Example Visual Basic SyntaxCalendar1.SetDayCaptions 0, "Sunday"Calendar1.SetDayCaptions 1, "Monday"Calendar1.SetDayCaptions 2, "Tuesday"Calendar1.SetDayCaptions 3, "Wednesday"Calendar1.SetDayCaptions 4, "Thursday"Calendar1.SetDayCaptions 5, "Friday"Calendar1.SetDayCaptions 6, "Saturday"