Click or drag to resize

IProjectsEOF Property

Return true when the end of the list is reached

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

Property Value

Type: Boolean

Boolean

True when the end of the iteration is reached

False as long as there are more

Examples

EOF

This text may be copied to the notepad, and saved as a *.vbs file. Remember to change the login information.

VB
Dim Proj
Dim Projs
Set objSO = CreateObject("SuperOffice.Application")
If not (objSO is nothing) Then
    set Projs = objSO.Database.Find.ProjectsByName("CRM5 ")
    Proj = Projs.GetFirst()
    While Not Projs.EOF
        msgbox Proj.identity
        Proj = Projs.GetNext()
    wend        
        msgbox "No more project match the search criteria", vbInformation, "SuperCOM"
else
        MsgBox "Unable to connect to database"
end if

See Also