Calendar ActiveX Control ReferenceMethods FindHighLightDayColor Calendar ActiveX Control FindHighLightDayColor Returns the color of hightlight that matches the given index of the collection. Public Function FindHighLightDayColor( ByVal iIndex As Integer, _ ) as Color ParameteriIndex - the index of highlight day. Start from zero.Return ValueReturn the color of highlight.Example Visual Basic Syntaxicount = Calendar1.GetHighLightDayCountFor i = 0 To icount - 1 colorHighlight = Calendar1.FindHighLightDayColor(i) strDay= Calendar1.FindHighLightDay(i)'Next