Repository.Project.GetCurrentProject: 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|10|[[Repository Class|Repository]]}}</noinclude>
<noinclude>{{Template:API}}{{Template:APIBreadcrumb|10|.[[Repository Class|Repository]]}}</noinclude>
 


Returns a '''[[NameIdPair Class|NameIDPair]]''' object that contains the name and ID number of the project you are currently connected to.
Returns a '''[[NameIdPair Class|NameIDPair]]''' object that contains the name and ID number of the project you are currently connected to.
<noinclude>
<noinclude>
== Syntax ==
== Syntax ==
''object''.'''Project.GetCurrentProject()'''
'''.Project.GetCurrentProject()'''


where ''object'' is a variable that represents a Repository object.


== Example ==
== Example ==
  '''VBA|VB.NET'''
  '''VBA|VB.NET'''
   
   
{{APIComment|'Add code to connect to a Synthesis repository.}}
   {{APIPrefix|Dim}} MyRepository {{APIPrefix|As New}} Repository
   {{APIPrefix|Dim}} MyRepository {{APIPrefix|As New}} Repository
{{APIComment|...'Add code to connect to a Synthesis repository.}}
  {{APIComment|...}}
   
   
  {{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.}}

Revision as of 17:46, 20 July 2015

APIWiki.png


Member of: SynthesisAPI10.Repository


Returns a NameIDPair object that contains the name and ID number of the project you are currently connected to.

Syntax

.Project.GetCurrentProject()


Example

VBA|VB.NET

 'Add code to connect to a Synthesis repository. 
  Dim MyRepository As New Repository
  ... 


 'Set the first available project in the repository as the current project. 
  MyRepository.Project.SetCurrentProject(1)

 'Output example: Display the name and ID of the current project. 
  Dim ProjectName As String
  Dim ProjectID As Integer
  ProjectName = MyRepository.Project.GetCurrentProject().Name
  ProjectID = MyRepository.Project.GetCurrentProject().ID
  MsgBox ("You are currently connected to: " & ProjectName & ", ID#" & ProjectID)