Calendar ActiveX Control ReferenceMethods FindText Calendar ActiveX Control FindText Returns the day text that matches the given index of the collection. Public Function FindText( ByVal iIndex As Integer, _ ) as String ParameteriIndex - the index of day text. Start from zero.Return ValueReturn the day text.Example Visual Basic Syntaxicount = Me.Calendar1.GetTextCountFor i = 0 To icount - 1 MsgBox Me.Calendar1.FindText(i)Next