Repository.ConnectToAccessRepository
 
Property Syntax
 ConnectToAccessRepository( 
ByVal
 FileName 
As String
 ) 
As Boolean
 Connects to an MS Access repository. 
Parameters
FileName The file path for the Synthesis Repository to connect.
Usage Example
Declare a new repository connection class.
Private WithEvents MyRepository As New Repository
Connect to the Synthesis repository.
       Dim Success As Boolean = False
       Success = MyRepository.ConnectToAccessRepository("AccessRepositoryFilePath")
