Repository.DisconnectFromRepository: Difference between revisions

From ReliaWiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 1: Line 1:
<noinclude>{{Template:API}}{{Template:APIBreadcrumb|9, 10|.[[Repository Class|Repository]]}}</noinclude>
{{Template:API}}{{Template:APIBreadcrumb|9, 10|.[[Repository Class|Repository]]}}




Disconnects from the current repository.
<onlyinclude>Disconnects from the current repository.</onlyinclude>
<noinclude>
 
== Syntax ==
== Syntax ==
  '''.DisconnectFromRepository'''
  '''.DisconnectFromRepository'''
Line 18: Line 18:
  {{APIComment|'Disconnect from the Synthesis repository.}}  
  {{APIComment|'Disconnect from the Synthesis repository.}}  
   MyRepository.DisconnectFromRepository
   MyRepository.DisconnectFromRepository
</noinclude>

Revision as of 22:05, 20 July 2015

APIWiki.png


Member of: SynthesisAPI9, 10.Repository


Disconnects from the current repository.

Syntax

.DisconnectFromRepository


Example

This example assumes that a standard repository called "RSRepository1.rsr10" exists in the C: drive. The code connects to the repository and then later disconnects from it.

VBA|VB.NET

 'Connect to a standard Synthesis repository.  
 Dim MyRepository As New Repository
 MyRepository.ConnectToRepository("C:\RSRepository1.rsr10")
...
'Disconnect from the Synthesis repository. MyRepository.DisconnectFromRepository