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

 

Parameter
iIndex - the index of day text. Start from zero.

Return Value
Return the day text.

Example

   

Visual Basic Syntax
icount = Me.Calendar1.GetTextCount
For i = 0 To icount - 1
   MsgBox Me.Calendar1.FindText(i)
Next