Click or drag to resize

IAppointmentsEOF Property

Return true when all items are fetched Indicates the end of the appointment iteration

Namespace:  SuperOffice.COM.SuperOfficeDB
Assembly:  SuperOfficeDB.Interop (in SuperOfficeDB.Interop.dll) Version: 8.0.0.0
Syntax
bool EOF { get; }

Property Value

Type: Boolean

True when the end of the iteration is reached

False as long as there are more

Examples

Show description

VB
Dim objSO
Dim Appnt
Dim Appnts
Set objSO = CreateObject("SuperOffice.Application")
If not (objSO is nothing) Then
    set Appnts = objSO.Database.Find.Appointments("140","01.11.2000","03.11.2000")
    Appnt = Appnts.GetFirst()
    While Not Appnts.EOF
        msgbox Appnt.Description
        Appnt = Appnts.GetNext()
    wend          
    msgbox "No appointments.", vbInformation, "SuperCOM"
else
    MsgBox "Unable to connect to database"
end if
Set objSO = Nothing

See Also