Repository.DisconnectFromRepository: Difference between revisions
Jump to navigation
Jump to search
Kate Racaza (talk | contribs) No edit summary |
Kate Racaza (talk | contribs) No edit summary |
||
Line 1: | Line 1: | ||
<noinclude>{{Template:API}}{{Template:APIBreadcrumb|9|Repository}}</noinclude> | <noinclude>{{Template:API}}{{Template:APIBreadcrumb|9, 10|.[[Repository Class|Repository]]}}</noinclude> | ||
Disconnects from the current repository. | Disconnects from the current repository. | ||
<noinclude> | <noinclude> | ||
== Syntax == | == Syntax == | ||
' | '''.DisconnectFromRepository''' | ||
== Example == | == Example == | ||
This example assumes that a | This example assumes that a standard repository called "RSRepository1.rsr10" exists in the C: drive. | ||
'''VBA|VB.NET''' | '''VBA|VB.NET''' | ||
{{APIComment|'Connect to a standard Synthesis repository.}} | {{APIComment|'Connect to a standard Synthesis repository.}} | ||
{{APIPrefix|Dim}} MyRepository {{APIPrefix|As New}} Repository | {{APIPrefix|Dim}} MyRepository {{APIPrefix|As New}} Repository |
Revision as of 17:31, 20 July 2015
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.
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