Repository.Project.SetCurrentProject: Difference between revisions

From ReliaWiki
Jump to navigation Jump to search
mNo edit summary
No edit summary
Line 2: Line 2:




<onlyinclude>Connects to a project in a Synthesis repository and sets it as the current (active) project. Returns a '''Boolean''' value; when true, indicates a successful connection to that project.</onlyinclude>
<onlyinclude>Connects to a project associated with the Repository object and sets it as the current (active) project. Returns a '''Boolean''' value; when true, indicates a successful connection to that project.</onlyinclude>


== Syntax ==
== Syntax ==
Line 16: Line 16:
  '''VBA|VB.NET'''
  '''VBA|VB.NET'''
   
   
  {{APIComment|'Add code to connect to a Synthesis repository.}}
  {{APIComment|'Declare a new Repository object and connect to a Synthesis repository.}}
   {{APIPrefix|Dim}} MyRepository {{APIPrefix|As New}} Repository
   {{APIPrefix|Dim}} MyRepository {{APIPrefix|As New}} Repository
  {{APIComment|...}}
  MyRepository.ConnectToAccessRepository({{APIString|"C:\RSRepository1.rsr10"}})
 
  {{APIComment|'Set the first available project in the repository as the current project.}}
  {{APIComment|'Set the first available project in the repository as the current project.}}
   MyRepository.Project.SetCurrentProject(1)
   MyRepository.Project.SetCurrentProject(1)

Revision as of 15:47, 8 April 2016

APIWiki.png


Member of: SynthesisAPI.Repository


Connects to a project associated with the Repository object and sets it as the current (active) project. Returns a Boolean value; when true, indicates a successful connection to that project.

Syntax

.Project.SetCurrentProject(ProjectID)

Parameters

ProjectID

Required. Integer. The ID number of the project.


Example

VBA|VB.NET

 'Declare a new Repository object and connect to a Synthesis repository. 
  Dim MyRepository As New Repository
  MyRepository.ConnectToAccessRepository("C:\RSRepository1.rsr10")
 
 'Set the first available project in the repository as the current project. 
  MyRepository.Project.SetCurrentProject(1)