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 2: | Line 2: | ||
== Method Syntax == | == Method Syntax == | ||
{{APIName|ConnectToAccessRepository(}} | {{APIName|'''ConnectToAccessRepository'''(}} | ||
{{APIPrefix|ByVal}} | {{APIPrefix|ByVal}} | ||
{{APIName| | {{APIName|FileName}} | ||
{{APIPrefix|As String}} | {{APIPrefix|As String}} | ||
{{APIName|)}} | {{APIName|)}} |
Revision as of 22:44, 23 September 2013
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")