Repository.ConnectToAccessRepository: Difference between revisions
		
		
		
		Jump to navigation
		Jump to search
		
| John Leavitt (talk | contribs) No edit summary | John Leavitt (talk | contribs) No edit summary | ||
| Line 1: | Line 1: | ||
| {{Template:APIClass|Repository Class|Repository}} | {{Template:APIClass|Repository Class|Repository}} | ||
| Connects to MS Access. | Connects to a MS Access repository. | ||
| == Method Syntax == | == Method Syntax == | ||
Revision as of 22:47, 23 September 2013
 
Connects to a MS Access repository.
Method 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")
