Obtains information about fields in the Bindery database.
Finds a Field object in the database.
object.Element
(FieldName As String)
Field. Returns a Field object corresponding to the specified field name.
This example finds the Field object SURNAME in the database.
’Display any one property name of the object Testuser
set bindery = CreateObject ("ucx:Bindery")
entry=bindery.Element ("Testuser")
fields = entry.Fields
fields.Element ("SURNAME")
Determines whether the collection contains more Field objects.
object.HasMoreElements()
None.
Boolean. Returns TRUE if the collection contains more Field objects. Otherwise, FALSE.
This example determines whether this collection contains more Field objects.
’Display any one property name of the object Testuser
set bindery = CreateObject ("ucx:Bindery")
set entry=bindery.Element ("Testuser")
fields =entry.Fields
fields.Reset()
while (fields.HasMoreElements())
fields=Fields.Next()
Print (fields.Name)
wend
Returns the next Field object in the collection.
object.Next()
None.
Returns the next Field object in the collection, or NULL, if no more objects exist.
This example returns the next Field object in the collection.
’Display any one property name of the object TestUser
set bindery = CreateObject("ucx:Bindery")
set entry=bindery.Element("TestUser")
fields =entry.Fields
fields.Reset()
while (fields.HasMoreElements())
fields=Fields.Next()
Print (field.Name)
wend
Resets the Fields collection.
object.Reset()
.
None.
This example resets the Fields collection.
’Display any one property name of the object TestUser
set bindery = CreateObject("ucx:Bindery")
set entry=bindery.Element("TestUser")
fields =entry.Fields
fields.Reset()
while (fields.HasMoreElements())
fields=Fields.Next()
Print (field.Name)
wend