Initialization
This section shows example code to connect an application to the MDS repository.
'////////////////////////////////////////////////////////////////////////////
'
' Initialize Repository
'
' Sets up the connection to the repository using the global object
' Repository
'
'////////////////////////////////////////////////////////////////////////////
Function InitializeRepository () As Boolean
Set Repository = New MetaActive
Repository.Initialize userName, password
InitializeRepository = True
Exit Function
End Function