The top-level object of the Bindery UCX component. Used for searching the Bindery database.
Finds an Entry object which represents a Bindery object.
object.Element(
ObjName As String)
Entry object which represents a Bindery object, or NULL if the specified object Name is not found in the Bindery database.
This example returns an entry object which represents a Bindery object. Returns NULL if the specified object Name is not found in the Bindery database.
’Display any one property name of the object Testuser
set bindery = CreateObject("ucx:Bindery")
set entry=bindery.Element("Testuser")
Fields =entry.Fields
Fields.Reset()
property=Fields.Next()
Print (property.Name)
Searches the database for a Bindery object collection.
object.Search
(Pattern As String,
[ObjType As Integer])
Object Type Valuesfor possible values.
Bindery objects collection.
You can use wildcard characters such as an asterisk (*) and a question mark (?) for Pattern searches.
This example returns a collection of Bindery objects.
’Display information about all the objects in Bindery
set bindery = CreateObject ("ucx:Bindery")
set entries=bindery.Search ("*.*")
entries.Reset()
while (entries.HasMoreElements())
entry=entries.Next()
Print (entry.Name)
end