Repository.Project.SetCurrentProject: 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: | ||
{{Template:APIBreadcrumb|10|Repository}} | <noinclude>{{Template:API}}{{Template:APIBreadcrumb|10|Repository}}</noinclude> | ||
Connects to a project that you specify and sets it as the current (active) project. Returns a '''Boolean''' value; when true, indicates a successful connection to the project. | Connects to a project that you specify and sets it as the current (active) project. Returns a '''Boolean''' value; when true, indicates a successful connection to the project. | ||
<noinclude> | |||
== Syntax == | == Syntax == | ||
''object''.'''Project.SetCurrentProject(''ProjectID'')''' | ''object''.'''Project.SetCurrentProject(''ProjectID'')''' | ||
Line 24: | Line 24: | ||
{{APIComment|'This is similar to opening the first project shown in the project list of a Synthesis application.}} | {{APIComment|'This is similar to opening the first project shown in the project list of a Synthesis application.}} | ||
MyRepository.Project.SetCurrentProject(1) | MyRepository.Project.SetCurrentProject(1) | ||
</noinclude> |
Revision as of 23:19, 16 July 2015
Member of: SynthesisAPI10Repository
Connects to a project that you specify and sets it as the current (active) project. Returns a Boolean value; when true, indicates a successful connection to the project.
Syntax
object.Project.SetCurrentProject(ProjectID)
where object is a variable that represents a Repository object.
Parameters
Name | Description | |
---|---|---|
ProjectIDborder="0" cellpadding="5" cellspacing="0" style="border-collapse: collapse; text-align: left; cellborder" | ||
Name | Status | Integer. The ID number of the project. |
Example
VBA|VB.NET
Dim MyRepository As New Repository ...'Add code to connect to a Synthesis repository. 'Set the first project in the repository as the current project. 'This is similar to opening the first project shown in the project list of a Synthesis application. MyRepository.Project.SetCurrentProject(1)