Repository.DisconnectFromRepository: Difference between revisions

From ReliaWiki
Jump to navigation Jump to search
(Created page with '{{Template:APIClass|Repository Class|Repository}} == Declaration == {{APIPrefix|Public Sub}} {{APIName|DisconnectFromRepository()}} {{APIComment|Disconnects from current repo…')
 
mNo edit summary
 
(14 intermediate revisions by 4 users not shown)
Line 1: Line 1:
{{Template:APIClass|Repository Class|Repository}}
{{Template:API}}{{Template:APIBreadcrumb|.[[Repository Class|Repository]]}}


== Declaration  ==


{{APIPrefix|Public Sub}}
<onlyinclude>Disconnects from the current repository.</onlyinclude>
{{APIName|DisconnectFromRepository()}}


{{APIComment|Disconnects from 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'''
{{APIComment|'Connect to a standard Synthesis repository.}}
  {{APIPrefix|Dim}} MyRepository {{APIPrefix|As New}} Repository
  MyRepository.ConnectToRepository({{APIString|"C:\RSRepository1.rsr10"}})<br>
{{APIComment|...}} <br>
{{APIComment|'Disconnect from the Synthesis repository.}}  
  MyRepository.DisconnectFromRepository

Latest revision as of 21:53, 13 November 2015

APIWiki.png


Member of: SynthesisAPI.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